:root {
    --bg-dark: #12021a;
    --bg-section: #1F0022;
    --purple-primary: #a855f7;
    --purple-bright: #c026d3;
    --purple-glow: #d946ef;
    --text-white: #ffffff;
    --text-gray: #c4b5fd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ===== Navbar ===== */
.event-navbar {
    background-color: rgba(18, 2, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding: 12px 0;
    position: relative;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    height: 36px;
    width: auto;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: linear-gradient(135deg, #0f0518 0%, #1a0a2e 40%, #2d1b4e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 80%, rgba(192, 38, 211, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-spotlight {
    position: absolute;
    top: -10%;
    left: 30%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-date {
    position: absolute;
    top: 30px;
    right: 40px;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.6;
    z-index: 3;
}

.hero-title-group {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--purple-bright);
}

.hero-title-en {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    margin-top: 20px;
}

.hero-product-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    width: 45%;
    z-index: 2;
}

.hero-product-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* ===== Info Section ===== */
.info-section {
    /*background-color: var(--bg-section);*/
    padding: 150px 0;
    text-align: center;
}
.info-section  .container{
    background-color: var(--bg-section);
    padding: 50px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
}

.info-text {
    font-size: 1.25rem;
    line-height: 2.2;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.info-text .purple {
    color: var(--purple-bright);
    font-weight: 500;
}

.info-text strong {
    color: var(--text-white);
    font-weight: 500;
}

/* ===== Products Section ===== */
.products-section {
    background-color: var(--bg-dark);
    padding: 150px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.heading-line {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-bright));
    margin: 0 auto;
    border-radius: 2px;
}

.product-card {
    background: linear-gradient(180deg, #8c1495 0%, #5f0166 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.product-card .card-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 8px;
}

.product-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    margin: 0;
}

.products-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.8;
}

.products-note a {
    color: var(--purple-bright);
    text-decoration: underline;
    cursor: pointer;
}

.products-note a:hover {
    color: var(--purple-glow);
}

/* ===== Steps Section ===== */
.steps-section {
    /*background-color: var(--bg-section);*/
    padding: 150px 0;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #81038a, #5a0160);
    border: 2px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.step-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

.step-circle img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.step-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple-bright);
    margin-bottom: 8px;
    font-style: italic;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple-bright);
    margin-bottom: 10px;
    font-style: italic;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-white);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

.btn-apply {
    display: inline-block;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-bright));
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 60px;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    margin-top: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(192, 38, 211, 0.3);
    cursor: pointer;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 38, 211, 0.5);
    color: white;
}

.btn-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 12px;
}

.btn-note a {
    color: var(--text-gray);
    text-decoration: underline;
    cursor: pointer;
}

.btn-note a:hover {
    color: var(--purple-bright);
}

/* ===== Footer ===== */
.event-footer {
    background: linear-gradient(90deg, #7c3aed, #c026d3);
    padding: 16px 0;
    text-align: center;
}

.event-footer a {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.event-footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===== Modal Styles ===== */
.modal-content {
    background: linear-gradient(180deg, #1a0a2e 0%, #12021a 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    color: var(--text-white);
}

.modal-header {
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding: 20px 24px;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    padding: 16px 24px;
}

.btn-close-custom {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-close-custom:hover {
    color: var(--text-white);
}

/* Model List Modal */
.model-list-header {
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-bright));
    color: white;
    text-align: center;
    padding: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 24px;
}

.model-category {
    color: var(--purple-bright);
    font-weight: 700;
    font-size: 1rem;
    margin: 20px 0 10px;
    padding-left: 8px;
    border-left: 3px solid var(--purple-bright);
}

.model-category:first-child {
    margin-top: 0;
}

.model-item {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 6px 0 6px 12px;
    line-height: 1.5;
}

/* Form Modal */
.form-label {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--purple-bright);
}

.form-control, .form-select {
    background-color: rgba(45, 27, 78, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--text-white);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(45, 27, 78, 0.7);
    border-color: var(--purple-primary);
    color: var(--text-white);
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
}

.form-control::placeholder {
    color: rgba(196, 181, 253, 0.5);
}

.form-control:disabled {
    background-color: rgba(45, 27, 78, 0.3);
    color: var(--text-gray);
}

.form-text {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 6px;
}

.form-check-input {
    background-color: rgba(45, 27, 78, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.4);
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

.form-check-input:checked {
    background-color: var(--purple-primary);
    border-color: var(--purple-primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
}

.form-check-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-left: 4px;
}

.form-check-label .required {
    color: var(--purple-bright);
}

.btn-submit {
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-bright));
    color: white;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 38, 211, 0.5);
    color: white;
}

.btn-cancel {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(168, 85, 247, 0.3);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: var(--purple-primary);
    color: var(--text-white);
}

/* Terms Modal */
.terms-content {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.9rem;
}

.terms-content h4 {
    color: var(--purple-bright);
    font-size: 1rem;
    font-weight: 700;
    margin: 24px 0 12px;
}

.terms-content h4:first-child {
    margin-top: 0;
}

.terms-content p, .terms-content li {
    margin-bottom: 8px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.terms-content li {
    list-style-type: disc;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-product-img {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        max-width: 400px;
        margin: 30px auto 0;
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-date {
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .step-item {
        margin-bottom: 30px;
    }

    .modal-body {
        padding: 16px;
    }
}
.products-section a:hover{
    color:  var(--purple-bright);
}