/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    font-family: 'Nanum Gothic', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.min-h-screen {
    min-height: 100vh;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 10;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('main.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0rem 1rem 5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-main {
    margin-bottom: 4rem;
}

/* Hero Section 로고 스타일 추가 */
.hero-logo {
    display: block;
    margin: 2rem auto;
    width: 240px;
    max-width: 80%;
    height: auto;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .hero-logo { 
        width: 400px;
        margin: 2.5rem auto; 
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    background-color: #f4df11;
    color: #1a1a1a;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(244, 223, 17, 0.3);
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta:hover {
    background-color: #fff04d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 223, 17, 0.4);
}

.hero-stats {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 2.5rem 1rem;
    border-radius: 1rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
}

.hero-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    position: relative;
}

.hero-stat-icon {
    color: white;
    margin-bottom: 1rem;
    opacity: 0.9;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1;
    display: inline-block;
    min-width: 5em;
    text-align: center;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-width: 4em;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-cta { font-size: 1.25rem; }
    .hero-stats { padding: 3rem 2rem; }
    .hero-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
    .hero-stat-item { padding: 0 1rem; }
    .hero-stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: rgba(255, 255, 255, 0.2);
    }
    .hero-stat-number { font-size: 2.75rem; }
    .hero-stat-label { font-size: 1rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.75rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .hero-stats { padding: 3.5rem 3rem; }
    .hero-stat-number { font-size: 3.25rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.75rem; }
    .section-description { font-size: 1.2rem; }
}

/* NEW CONSULT SECTION */
.new-consult-section {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
}

.new-consult-wrapper {
    display: flex;
    flex-direction: column;
}

.consult-worry-area,
.consult-solution-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.consult-worry-area {
    background-image: url(main1_back.png);
}
.consult-solution-area {
    background-image: url(main2_back.png);
    padding:2rem 0;
}

.consult-worry-area img,
.consult-solution-area img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .consult-worry-area img,
    .consult-solution-area img {
        width: auto;
        max-height: 900px;
        object-fit: cover;
    }
    
    .consult-worry-area,
    .consult-solution-area {
        min-height: 700px;
    }
    .consult-solution-area {
        padding:3rem 0;
    }
}

/* NEW WHY SECTION */
.new-why-section {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
}

.new-why-wrapper {
    display: flex;
    flex-direction: column;
}

.why-process-area,
.why-compare-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.why-process-area{
    background-image: url(main1_back.png);
}
.why-compare-area {
    background-image: url(main2_back.png);
}

.why-process-area img,
.why-compare-area img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .why-process-area img,
    .why-compare-area img {
        width: auto;
        max-height: 900px;
        object-fit: cover;
    }
    
    .why-process-area,
    .why-compare-area {
        min-height: 800px;
    }
}

/* REVIEWS SECTION */
.reviews-section {
    position: relative;
    padding: 3rem 0;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('main_.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.reviews-section > .container {
    position: relative;
    z-index: 2;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 2;
}

.reviews-slider { overflow: hidden; }

.reviews-track {
    display: flex;
    transition: transform 0.4s ease;
}

.review-card {
    flex-shrink: 0;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.review-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.review-body {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

.review-course {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.review-list li:first-child { margin-bottom: 0.25rem; }
.review-list li:first-child .review-label { color: #f4df11; font-weight: 700; font-size: 0.875rem; }
.review-label { color: rgba(255, 255, 255, 0.6); flex-shrink: 0; }
.review-list li:not(:first-child) .review-label::before { content: '▸ '; color: #f4df11; }
.review-value { color: rgba(255, 255, 255, 0.9); font-weight: 500; }
.review-list li:not(:first-child) .review-label::after { content: ' : '; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: #f4df11;
    color: #1a1a1a;
    border-color: #f4df11;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

@media (max-width: 767px) {
    .review-card { width: 100%; }
    .reviews-slider-wrapper { padding: 0 2.5rem; }
    .slider-btn { width: 2.5rem; height: 2.5rem; }
}

@media (min-width: 768px) {
    .reviews-section { padding: 5rem 0; }
    .reviews-track { flex-wrap: wrap; width: 100%; }
    .review-card { width: calc(100% / 3); padding: 0.75rem; }
    .reviews-slider-wrapper { padding: 0 4rem; }
    .review-body { padding: 1rem; }
    .review-course { font-size: 1.0625rem; }
}

/* CONTACT FORM SECTION */
.contact-form-section {
    position: relative;
    padding: 5rem 0;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 0;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.contact-form-section > .container {
    position: relative;
    z-index: 2;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,0.8);
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-section-label {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.required { color: #f4df11; margin-left: 0.25rem; }

.checkbox-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.form-checkbox-item:hover { background: rgba(255, 255, 255, 0.08); }
.form-checkbox-item input[type="checkbox"]:checked + span { font-weight: 600; color: #f4df11; }
.form-checkbox-item:has(input:checked) { background: rgba(244, 223, 17, 0.1); border-color: rgba(244, 223, 17, 0.5); }
.form-checkbox-item input[type="checkbox"] { width: 0.75rem; height: 0.75rem; cursor: pointer; accent-color: #f4df11; flex-shrink: 0; }
.form-checkbox-item span { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.form-input:focus { outline: none; border-color: #f4df11; background: rgba(255, 255, 255, 0.08); }
.form-input::placeholder { color: rgba(255, 255, 255, 0.4); }

.radio-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.form-radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 140px;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .form-checkbox-item {
        padding: 0.75rem 1rem;
    }
    .form-checkbox-item input[type="checkbox"] {
         width: 1rem;
         height: 1rem;
    }
    .form-checkbox-item {
        gap: 0.75rem;
    }
    .form-input {
        padding: 1rem 1.25rem;
    }
    .form-radio-item {
        padding: 0.75rem 1.25rem;
        gap:0.75rem;
        justify-content: center;
    }
}

.form-radio-item:hover { background: rgba(255, 255, 255, 0.08); }
.form-radio-item:has(input:checked) { background: rgba(244, 223, 17, 0.1); border-color: rgba(244, 223, 17, 0.5); }
.form-radio-item input[type="radio"] { width: 1.25rem; height: 1.25rem; cursor: pointer; accent-color: #f4df11; }
.form-radio-item input[type="radio"]:checked + span { font-weight: 600; color: #f4df11; }
.form-radio-item span { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; }

.privacy-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    max-height: 100px;
    overflow-y: auto;
}

.privacy-text { color: rgba(255, 255, 255, 0.5); font-size: 0.8125rem; line-height: 1.6; margin: 0; }

.agreement-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.agreement-checkbox:has(input:checked) { background: rgba(244, 223, 17, 0.1); border-color: rgba(244, 223, 17, 0.5); }
.agreement-checkbox input[type="checkbox"] { width: 1.25rem; height: 1.25rem; cursor: pointer; accent-color: #f4df11; }
.agreement-checkbox span { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; font-weight: 500; }

.submit-button {
    width: 100%;
    background: #f4df11;
    color: #1a1a1a;
    padding: 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.submit-button:hover { background: #fff04d; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(244, 223, 17, 0.3); }
.submit-button:active { transform: translateY(-1px); }
.submit-button:disabled {
    background: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (min-width: 640px) {
    .checkbox-grid-2col { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .contact-form-section { padding: 5rem 0; }
    .form-wrapper { padding: 3rem; }
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content { display: flex; flex-direction: column; gap: 2rem; }
.footer-links { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-link { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.3s; font-size: 0.9375rem; }
.footer-link:hover { color: #f4df11; }
.footer-link-bold { font-weight: bold; color: rgba(255, 255, 255, 0.8); }
.footer-info { display: flex; flex-direction: column; gap: 0.5rem; color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.footer-company { font-weight: bold; color: white; font-size: 1rem; margin-bottom: 0.25rem; }
.footer-copyright { color: rgba(255, 255, 255, 0.3); font-size: 0.875rem; }

@media (min-width: 768px) {
    .footer-content { flex-direction: row; justify-content: space-between; }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-inquiry {
    background: #f4df11;
    color: #1a1a1a;
    padding: 0.875rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 8px 25px rgba(244, 223, 17, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.floating-inquiry:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 35px rgba(244, 223, 17, 0.4); }

@media (min-width: 768px) {
    .floating-buttons { right: 2rem; bottom: 2rem; }
}

/* 애니메이션 효과 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.review-card.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.review-card.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.review-card.animate-on-scroll:nth-child(4) { transition-delay: 0.1s; }
.review-card.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
.review-card.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

.hero-stat-number {
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    .review-card.clone-card {
        display: none !important;
    }
}

/* 실시간 상담 현황 */
.hero-live-status {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.live-status-header {
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4d4d;
    animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.scroller-window {
    height: 150px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    animation: scrollUp 20s linear infinite;
}

.scroller-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    height: 50px;
    box-sizing: border-box;
}

.scroller-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.scroller-name {
    font-weight: bold;
    color: #f4df11;
    min-width: 45px;
}

.scroller-detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.scroller-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    margin-left: 5px;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@media (max-width: 480px) {
    .scroller-detail {
        font-size: 0.8rem;
        max-width: 140px; 
    }
    .scroller-info {
        gap: 0.5rem;
    }
}

@media (min-width:768px) {
    .hero-live-status {
        padding: 1.5rem;
    }
}

/* =========================================
   모달 스타일 (신규 추가)
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #f4df11;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: bold;
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.modal-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-button {
    background: #f4df11;
    color: #1a1a1a;
    padding: 1rem 3rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-button:hover {
    background: #fff04d;
    transform: translateY(-2px);
}
