html {
    scroll-behavior: smooth;
}

/* ══ Pseudo-elements & effects ══ */
.bg-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 0%, rgba(200,0,50,0.2) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(8,3,12,0.52) 0%, rgba(8,3,12,0.70) 55%, rgba(8,3,12,0.90) 100%);
}

.time-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #e8184a;
}

.icon-list li::before {
    content: '▸';
    color: #ff2d5e;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: #ff2d5e;
    transform: scaleX(0);
    transition: transform 0.22s;
}
.nav-link:hover::after { transform: scaleX(1); }

.full-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232,24,74,0.18), transparent);
    margin: 0 32px;
}

.footer-map iframe {
    filter: grayscale(70%) contrast(1.1) brightness(0.65) hue-rotate(300deg);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.8s ease both; }

/* ══ Component classes ══ */
.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 32px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.04em;
}
.section-title em { color: #ff2d5e; font-style: normal; }

.section-divider {
    width: 48px;
    height: 3px;
    background: #e8184a;
    margin: 16px 0 40px;
}

.nav-link {
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240,232,240,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

.glass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-top: 3px solid #e8184a;
    border-radius: 6px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
}

.panel-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ff2d5e;
    margin-bottom: 14px;
}

.body-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(240,232,240,0.68);
    margin-bottom: 14px;
}

.icon-list {
    list-style: none;
    margin-top: 6px;
}
.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(240,232,240,0.7);
    margin-bottom: 10px;
    line-height: 1.5;
}

.game-tag {
    background: rgba(232,24,74,0.12);
    border: 1px solid rgba(232,24,74,0.28);
    color: rgba(240,232,240,0.85);
    padding: 7px 14px;
    border-radius: 3px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 38px;
    border-radius: 4px;
    transition: all 0.22s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #e8184a;
    color: #fff;
    box-shadow: 0 4px 28px rgba(232,24,74,0.45);
}
.btn-primary:hover {
    background: #ff2d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(232,24,74,0.6);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.28);
}
.btn-outline:hover {
    border-color: #ff2d5e;
    color: #ff2d5e;
    transform: translateY(-2px);
}

.time-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 5px;
    padding: 16px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.time-card .label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ff2d5e;
    margin-bottom: 6px;
}
.time-card .value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.card-text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(240,232,240,0.75);
}
.card-text strong { color: #fff; font-weight: 600; }

.info-note {
    font-size: 13px;
    color: rgba(240,232,240,0.38);
    letter-spacing: 0.06em;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.2s;
}
.faq-q:hover { color: #ff2d5e; }

.faq-arrow {
    color: #e8184a;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.25s;
    display: inline-block;
}

.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(240,232,240,0.62);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
}
.faq-a.open { display: block; }

.partner-card {
    position: relative;
    flex: 1 1 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 24px;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    transition: all 0.3s;
}
.partner-card:hover {
    border-color: rgba(232,24,74,0.5);
    background: rgba(232,24,74,0.07);
}

.partner-logo {
    max-height: 5rem;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.75);
    transition: all 0.3s;
}
.partner-card:hover .partner-logo {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.1);
}

.footer-link {
    display: block;
    font-size: 15px;
    color: rgba(240,232,240,0.5);
    line-height: 1.85;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover { color: #ff2d5e; }

.footer-sub-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,232,240,0.22);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-sub-link:hover { color: #ff2d5e; }

/* ══ Mobile nav ══ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ Responsive ══ */
.nav-menu { display: flex; gap: 32px; list-style: none; }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10,4,16,0.97);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 0;
        z-index: 99;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        display: flex !important;
    }
    .nav-menu.open { max-height: 400px; padding: 24px 20px; gap: 6px; }
    .nav-menu .nav-link { font-size: 16px; letter-spacing: 0.18em; }
    .section-wrap { padding: 60px 20px; text-align: center; }
    .section-divider { margin-left: auto; margin-right: auto; }
    .icon-list { display: inline-block; text-align: left; }
    .glass-card { text-align: center; }
    .game-tag { width: 100%; }
    .btn { display: inline-block; }
    .full-divider { margin: 0 16px; }
    footer { padding-left: 20px !important; padding-right: 20px !important; }
}

@media (max-width: 500px) {
    .info-grid { grid-template-columns: 1fr; }
    .section-wrap { padding: 48px 16px; }
}
