    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;700;900&display=swap');

    /* 전체 컨테이너 - 완전 중앙 정렬 및 좌우 대칭 */
    .hoons_main-wrapper {
        width: 100%;
        min-height: 640px; /* 더 작게 조정 */
        max-height: 1000px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        background: linear-gradient(135deg, #f5f7fa 0%, #f1f0f5 100%);
        overflow: hidden;
        padding: 0px 0; /* 충분한 상하 패딩 */
    }

    .hoons_container {
        width: 1400px;
        display: flex;
        align-items: center;
        gap: 80px; /* 간격 조금 줄임 */
        padding: 0 60px;
        position: relative;
        z-index: 2;
    }

    /* PC용 배경 이미지 - 컨테이너 기준 오른쪽 정렬 */
    .hoons_background-image {
        position: absolute;
        top: 43%;
        transform: translateY(-50%);
        right: calc((100vw - 1400px) / 2);
        width: 500px; /* 크기 조금 줄임 */
        height: 400px; /* 크기 조금 줄임 */
        z-index: 1;
        pointer-events: none;
        object-fit: contain;
    }

    /* 왼쪽 콘텐츠 영역 */
    .hoons_left-content {
        flex: 1;
        z-index: 2;
        font-family: 'Noto Sans KR', sans-serif;
        text-align: left; /* PC에서 왼쪽 정렬 강제 */
    }

    /* 제목 스타일 */
    .hoons_title-section h1 {
        font-size: 2.9rem; /* 조금 작게 */
        color: #333;
		margin-top: 60px;
        margin-bottom: -5px;
        font-weight: 300;
        letter-spacing: -1px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .hoons_main-title {
        font-size: 3.0rem; /* 조금 작게 */
        font-weight: 900;
        color: #000000;
        margin: 0px 0 0px 0;
        letter-spacing: -2px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .hoons_subtitle {
        color: #666;
        font-size: 0.95rem; /* 조금 작게 */
        line-height: 1.6;
        margin-bottom: 40px; /* 간격 줄임 */
        font-weight: 300;
    }

    /* 태그 스타일 */
    .hoons_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 30px; /* 간격 줄임 */
    }

    .hoons_tag {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #d1d1d1;
        color: #ff4757;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 400;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .hoons_tag:hover {
        background: #ff4757;
        color: white;
        transform: translateY(-2px);
    }

    /* 버튼 컨테이너 */
    .hoons_button-container {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .hoons_cta-button {
        /*background: linear-gradient(135deg, #ff4757, #ff3742);*/
		background: linear-gradient(135deg, #e01c44, #ff3742) !important;
        color: white;
        padding: 0;
        border: none;
        border-radius: 50px;
        font-size: 1.6rem; /* 조금 작게 */
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
        width: 380px; /* 조금 작게 */
        height: 80px; /* 조금 작게 */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hoons_cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
    }

    /* 오른쪽 콘텐츠 영역 (애니메이션) */
    .hoons_right-content {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
    }

    .hoons_floating-coins {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .hoons_floating-coin {
        position: absolute;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        border-radius: 50%;
        animation: hoons_floatAround 6s linear infinite;
        z-index: 5;
    }

    .hoons_floating-coin:nth-child(1) {
        top: 10%;
        left: 80%;
        animation-delay: 0s;
    }

    .hoons_floating-coin:nth-child(2) {
        top: 60%;
        left: 90%;
        animation-delay: 2s;
    }

    .hoons_floating-coin:nth-child(3) {
        top: 80%;
        left: 10%;
        animation-delay: 4s;
    }

    .hoons_card-mockup {
        position: absolute;
        bottom: -50px;
        right: -30px;
        width: 200px;
        height: 120px;
        background: linear-gradient(135deg, #ff4757, #ff6b7a);
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(255, 71, 87, 0.3);
        transform: rotate(15deg);
        animation: hoons_cardFloat 5s ease-in-out infinite;
        z-index: 5;
    }

    .hoons_card-mockup::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        width: 40px;
        height: 25px;
        background: #ffd700;
        border-radius: 5px;
    }

    .hoons_card-mockup::after {
        content: '****';
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white;
        font-family: monospace;
        font-size: 1.2rem;
        letter-spacing: 5px;
    }

    /* 모바일 이미지 - PC에서는 숨김 */
    .hoons_mobile-image-placeholder {
        display: none;
    }

    /* 애니메이션 */
    @keyframes hoons_floatAround {
        0% { transform: translateY(0px) rotate(0deg); opacity: 1; }
        50% { transform: translateY(-100px) rotate(180deg); opacity: 0.7; }
        100% { transform: translateY(0px) rotate(360deg); opacity: 1; }
    }

    @keyframes hoons_cardFloat {
        0%, 100% { transform: rotate(15deg) translateY(0px); }
        50% { transform: rotate(10deg) translateY(-10px); }
    }

    /* 모바일 반응형 */
    @media (max-width: 768px) {
        /* PC 요소들 숨김 */
        .hoons_background-image {
            display: none;
        }
        
        .hoons_right-content {
            display: none;
        }

        .hoons_main-wrapper {
            height: auto;
            min-height: 500px; /* 610px에서 500px로 변경 */
        }
        
        /* 모바일 이미지 표시 */
        .hoons_mobile-image-placeholder {
            display: block;
            width: 100%;
            max-width: 400px;
            height: auto;
            margin: 20px auto;
        }
        
        /* 모바일 레이아웃 */
        .hoons_container {
            width: 100%;
            flex-direction: column;
            text-align: center;
            gap: 20px;
            padding: 20px;
            height: auto;
        }
        
        .hoons_left-content {
            order: 1;
            width: 100%;
        }
        
        /* 모바일 타이포그래피 */
        .hoons_title-section h1 {
			margin-top: 20px;
            font-size: 1.5rem;
			text-align:center;
        }
        
        .hoons_main-title {
            font-size: 2rem;
			text-align:center;
        }
				
		.hoons_subtitle {
		text-align:center;
		 font-size: 0.8rem;
		  margin-bottom: 5px; /* 간격 줄임 */
				}
        
        /* 모바일 버튼 */
        .hoons_button-container {
            justify-content: center;
            order: 2;
            width: 100%;
        }
        
        .hoons_cta-button {
            width: 90%;
            max-width: 420px;
        }
				/* 태그 스타일 */
				.hoons_tags {
						display: flex;
						flex-wrap: wrap;
						gap: 5px;
						margin-bottom: 30px; /* 간격 줄임 */
				}

				.hoons_tag {
						background: rgba(255, 255, 255, 0.9);
						border: 1px solid #d1d1d1;
						color: #ff4757;
						padding: 8px 10px;
						border-radius: 25px;
						font-size: 0.8rem;
						font-weight: 400;
						transition: all 0.3s ease;
						cursor: pointer;
				}

				.hoons_tag:hover {
						background: #ff4757;
						color: white;
						transform: translateY(-2px);
				}				
    }
	
	
/*메인글자*/
	
	        .hoons_card_payment_section {
            font-family: 'Noto Sans KR', sans-serif;
            padding: 60px 20px;
            text-align: center;
        }

        .hoons_card_payment_container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hoons_main_title {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .hoons_sub_description {
            font-size: 1.1rem;
            font-weight: 400;
            color: #666;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 모바일 반응형 */
        @media (max-width: 768px) {
            .hoons_card_payment_section {
                padding: 60px 20px;
            }

            .hoons_main_title {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }

            .hoons_sub_description {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hoons_card_payment_section {
                padding: 50px 15px;
            }

            .hoons_main_title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .hoons_sub_description {
                font-size: 0.9rem;
            }
        }
		/*모바일 따라다니는 버튼*/
		@media (max-width: 768px) {
			.mobile-only-button {
				display: block !important;
			}
			
			.hoons_mobile_fixed_btn {
				/* 기존 디자인 유지하면서 위치만 고정 */
				position: fixed !important;
				bottom: 20px !important;
				left: 50% !important;
				transform: translateX(-50%) !important;
				width: calc(100% - 40px) !important;
				max-width: 400px !important;
				z-index: 99999 !important;
				box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2) !important;
				background: linear-gradient(135deg, #e01c44, #ff6b9d) !important;
				/* 기존 스타일을 덮어쓰지 않고 추가만 */
				margin: 0 !important; /* 기존 margin 제거 */
			}
			
			/* 원본 버튼은 모바일에서 숨김 */
			.hoons_button-container .hoons_cta-button {
				display: none !important;
			}
		}

		@media (min-width: 769px) {
			.mobile-only-button {
				display: none !important;
			}
		}		