/* =====================================================
   XIAOYAO ESPORTS - CYBERPUNK LANDING PAGE STYLES
   ===================================================== */

:root {
    /* Core Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;

    /* Neon Accents */
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff00aa;
    --neon-purple: #8b5cf6;
    --neon-blue: #3b82f6;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 240, 255, 0.3) 0%, rgba(255, 0, 170, 0.3) 100%);

    /* Shadows */
    --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.4);
    --glow-magenta: 0 0 30px rgba(255, 0, 170, 0.4);
    --glow-mixed: 0 0 40px rgba(0, 240, 255, 0.2), 0 0 80px rgba(255, 0, 170, 0.1);

    /* Typography */
    --font-display: ui-monospace, 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.features,
.pricing,
.layout-section,
.esports-hotel,
.gallery,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

/* Esports hotel */
.esports-hotel {
    position: relative;
    padding: 110px 6%;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 0, 170, 0.1), transparent 30%),
        radial-gradient(circle at 90% 72%, rgba(0, 240, 255, 0.09), transparent 34%);
}

.hotel-hero-card {
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(0, 240, 255, 0.22);
    border-radius: 24px;
    background: linear-gradient(125deg, rgba(8, 17, 34, 0.96), rgba(34, 12, 44, 0.92));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.hotel-eyebrow, .room-capacity { color: var(--neon-cyan); font-family: var(--font-display); font-size: .7rem; letter-spacing: .16em; }
.hotel-hero-copy h3 { margin: 10px 0 12px; color: #fff; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.hotel-hero-copy p { max-width: 760px; margin: 0; color: var(--text-secondary); line-height: 1.85; }
.hotel-scene-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.hotel-scene-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #d8d8e5; background: rgba(255,255,255,.045); font-size: .78rem; }
.hotel-hero-badge { flex: 0 0 112px; width: 112px; height: 112px; display: grid; place-content: center; text-align: center; border-radius: 50%; border: 1px solid rgba(255,0,170,.38); background: radial-gradient(circle, rgba(255,0,170,.2), rgba(0,240,255,.04)); box-shadow: 0 0 42px rgba(255,0,170,.14); }
.hotel-hero-badge strong { color: #fff; font-family: var(--font-display); font-size: 2.35rem; line-height: 1; }
.hotel-hero-badge span { margin-top: 6px; color: var(--text-muted); font-size: .75rem; }

.hotel-room-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hotel-room-card { position: relative; overflow: hidden; min-height: 150px; padding: 25px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: linear-gradient(145deg, rgba(22,24,38,.92), rgba(10,11,20,.96)); transition: transform .25s ease, border-color .25s ease; }
.hotel-room-card:hover { transform: translateY(-4px); border-color: rgba(0,240,255,.34); }
.hotel-room-card::after { content: ''; position: absolute; right: -35px; bottom: -45px; width: 120px; height: 120px; border-radius: 50%; background: rgba(0,240,255,.055); }
.hotel-room-card.squad::after { background: rgba(255,0,170,.075); }
.hotel-room-card h3 { margin: 11px 0 8px; color: #fff; font-size: 1.18rem; }
.hotel-room-card p { margin: 0; color: var(--text-muted); font-size: .86rem; line-height: 1.7; }
.hotel-room-card.featured, .hotel-room-card.ultimate { border-color: rgba(255,0,170,.24); }

.hotel-cta-row { max-width: 1200px; margin: 20px auto 0; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 16px; background: rgba(255,255,255,.035); }
.hotel-cta-row p { margin: 0; }
.hotel-cta-row strong, .hotel-cta-row span { display: block; }
.hotel-cta-row strong { color: #fff; margin-bottom: 5px; }
.hotel-cta-row span { color: var(--text-muted); font-size: .82rem; }
.hotel-cta-row a { flex: 0 0 auto; padding: 12px 18px; border-radius: 10px; color: #081018; background: var(--gradient-primary); text-decoration: none; font-weight: 800; }

@media (max-width: 900px) {
    .hotel-room-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-hero-card { align-items: flex-start; }
}

@media (max-width: 600px) {
    .esports-hotel { padding: 78px 20px; }
    .hotel-hero-card { padding: 26px 22px; }
    .hotel-hero-badge { display: none; }
    .hotel-room-grid { grid-template-columns: 1fr; }
    .hotel-cta-row { align-items: flex-start; flex-direction: column; }
}

/* Live occupancy */
.home-live-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.home-live-toolbar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto 24px;
}

.home-live-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    flex: 1;
    gap: 14px;
}

.home-live-summary-item {
    padding: 20px;
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 14px;
    background: rgba(18, 18, 26, 0.82);
}

.home-live-summary-item.featured {
    border-color: rgba(0, 240, 255, 0.45);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.14), rgba(139, 92, 246, 0.08));
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
}

.home-live-summary-item span,
.home-live-meta,
.home-live-category small,
.home-live-note {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.home-live-summary-item strong {
    display: block;
    margin-top: 7px;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

.home-live-meta {
    min-width: 190px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: rgba(18, 18, 26, 0.55);
    text-align: right;
}

.home-live-meta span,
.home-live-meta small {
    display: block;
}

.home-live-meta small {
    margin-top: 8px;
    color: var(--neon-cyan);
}

.home-live-meta small.error {
    color: #ff6b8a;
}

.home-live-categories {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    max-width: var(--container-width);
    margin: 0 auto 24px;
}

.home-live-category {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(18, 18, 26, 0.62);
}

.home-live-category > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
}

.home-live-category span {
    color: var(--text-secondary);
}

.home-live-bar {
    height: 5px;
    overflow: hidden;
    margin-bottom: 7px;
    border-radius: 99px;
    background: #242431;
}

.home-live-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient-primary);
}

.home-live-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.home-live-content > *,
.home-live-groups,
.home-floor {
    min-width: 0;
}

.home-live-subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.home-live-subtitle h3 {
    font-family: var(--font-display);
    font-size: 1rem;
}

.home-live-subtitle > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.home-live-subtitle > div span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-live-subtitle i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.home-live-subtitle i.free {
    background: #343442;
}

.home-live-subtitle i.busy {
    background: var(--neon-cyan);
}

.home-live-subtitle i.soon {
    background: #ff9f43;
}

.home-live-groups {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-live-upcoming {
    padding: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 14px;
    background: rgba(18, 18, 26, 0.72);
}

.home-floor {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(0, 240, 255, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px),
        linear-gradient(145deg, rgba(20, 24, 39, 0.96), rgba(9, 12, 24, 0.96));
    background-size: 24px 24px, 24px 24px, auto;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.35);
}

.home-floor::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.09);
    filter: blur(35px);
    content: '';
    pointer-events: none;
}

.home-floor-label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.home-floor-label strong {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.home-floor-label span {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.home-floor-plan {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.home-floor-plan-2 {
    grid-template-columns: 1.35fr repeat(4, minmax(110px, 0.75fr)) 1.35fr;
    grid-template-areas:
        "office five five double85 triple82 brand"
        "office five five double72 triple74 brand"
        "office five five double80 triple77 brand";
}

.home-map-office,
.home-map-brand,
.home-map-service {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
    border: 1px dashed rgba(160, 160, 176, 0.22);
    border-radius: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.018);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.home-map-office {
    grid-area: office;
}

.home-map-brand {
    grid-area: brand;
    flex-direction: column;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.09), rgba(255, 0, 170, 0.08));
}

.home-map-brand span {
    margin-top: 4px;
    color: var(--neon-cyan);
    font-size: 0.62rem;
    letter-spacing: 0.35em;
}

.room-five-2f {
    grid-area: five;
}

.room-double-85 {
    grid-area: double85;
}

.room-triple-82 {
    grid-area: triple82;
}

.room-double-80 {
    grid-area: double80;
}

.room-triple-74 {
    grid-area: triple74;
}

.room-triple-77 {
    grid-area: triple77;
}

.room-double-72 {
    grid-area: double72;
}

.home-floor-plan-1 {
    grid-template-columns: 0.95fr 2.4fr 0.85fr;
    grid-template-areas:
        "left hall service"
        "bottom bottom service"
        "single single service";
}

.home-map-left-rooms {
    grid-area: left;
    display: grid;
    gap: 7px;
}

.home-map-hall {
    grid-area: hall;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.home-map-service {
    grid-area: service;
    flex-direction: column;
    min-height: 100%;
    border-style: solid;
    border-color: rgba(0, 240, 255, 0.14);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.06), rgba(139, 92, 246, 0.05));
}

.home-map-service strong {
    color: #fff;
    font-size: 0.9rem;
}

.home-map-service span {
    margin-top: 8px;
    text-align: center;
    line-height: 1.8;
}

.home-map-bottom-rooms {
    grid-area: bottom;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.home-map-single-rooms {
    grid-area: single;
}

.home-map-room {
    min-width: 0;
    padding: 9px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 11px;
    background: rgba(18, 18, 26, 0.82);
}

.home-map-room header {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 7px;
    color: var(--text-secondary);
    font-size: 0.64rem;
}

.home-map-room header strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-map-room header span {
    color: var(--neon-cyan);
}

.home-map-seat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
    gap: 4px;
}

.home-map-room.layout-hall .home-map-seat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-map-room.layout-five .home-map-seat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-map-room.layout-double .home-map-seat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-map-room.layout-triple .home-map-seat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-map-room.layout-single .home-map-seat-grid {
    grid-template-columns: repeat(11, minmax(42px, 1fr));
}

.home-map-seat {
    min-width: 0;
    padding: 6px 2px;
    border: 1px solid rgba(160, 160, 176, 0.2);
    border-radius: 6px;
    text-align: center;
    background: rgba(52, 52, 66, 0.28);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-map-seat:hover {
    transform: translateY(-2px);
}

.home-map-seat b,
.home-map-seat span {
    display: block;
}

.home-map-seat b {
    color: #e8e8ef;
    font-family: var(--font-display);
    font-size: 0.61rem;
}

.home-map-seat span {
    overflow: hidden;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.51rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-map-seat.busy {
    border-color: rgba(0, 240, 255, 0.58);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.16), rgba(59, 130, 246, 0.08));
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.06);
}

.home-map-seat.busy b {
    color: var(--neon-cyan);
}

.home-map-seat.soon {
    border-color: rgba(255, 159, 67, 0.85);
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.18), rgba(255, 0, 170, 0.06));
}

.home-map-seat.soon b {
    color: #ffb86b;
}

.home-live-upcoming {
    align-self: start;
    position: sticky;
    top: 100px;
}

.home-live-upcoming-item {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    gap: 4px 8px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
}

.home-live-upcoming-item span {
    overflow: hidden;
    color: var(--text-secondary);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-live-upcoming-item strong {
    color: var(--neon-cyan);
}

.home-live-upcoming-item small {
    grid-column: 2 / 4;
    color: var(--text-muted);
}

.home-live-note,
.home-live-empty {
    margin-top: 14px;
}

/* Animated Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .orb {
        animation: none;
    }
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-magenta);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 40px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--bg-dark);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-admin {
    padding: 10px 20px !important;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
}

.nav-admin:hover {
    background: rgba(0, 240, 255, 0.2) !important;
    box-shadow: var(--glow-cyan);
}

.nav-admin::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-mixed);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 240, 255, 0.5);
    color: var(--neon-cyan);
    padding: 14px 30px;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.3), transparent);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-card {
    position: relative;
    width: 280px;
    height: 320px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-cyan), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    background: var(--bg-card);
    margin: 2px;
    border-radius: 18px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--neon-cyan);
}

.card-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.card-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Sections Common */
section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    padding-left: 60px;
    padding-right: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 85%, rgba(255, 0, 153, 0.3), transparent 34%),
        radial-gradient(circle at 55% 35%, rgba(105, 75, 255, 0.28), transparent 40%),
        radial-gradient(circle at 94% 4%, rgba(0, 238, 255, 0.34), transparent 34%),
        var(--bg-dark);
}

.events-first-screen {
    min-height: 100vh;
    padding-top: 112px;
    padding-bottom: 48px;
}

.events-first-screen .events-copy,
.events-first-screen .exam-ticket {
    min-height: 400px;
}

.events-first-screen .event-card {
    min-height: 245px;
    opacity: 1;
    transform: none;
}

.events-wrap {
    position: relative;
    max-width: 1460px;
    margin: 0 auto;
}

.events-wrap::before {
    content: "";
    position: absolute;
    inset: -28px;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(0, 238, 255, 0.12);
    background-image:
        linear-gradient(rgba(0, 238, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 238, 255, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000 70%, transparent);
}

.events-hero,
.events-grid {
    position: relative;
    z-index: 1;
}

.events-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.75fr);
    gap: 22px;
    margin-bottom: 22px;
}

.events-coming {
    min-height: calc(100vh - 185px);
    align-items: stretch;
    margin-bottom: 0;
}

.events-coming .events-copy,
.events-coming .exam-ticket {
    min-height: 560px;
}

.events-copy,
.exam-ticket,
.event-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(10, 12, 23, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.events-copy {
    min-height: 440px;
    padding: 54px 58px;
    border-radius: 32px;
    background: linear-gradient(115deg, rgba(8, 12, 24, 0.98) 10%, rgba(31, 22, 67, 0.9) 60%, rgba(5, 54, 68, 0.78));
}

.events-copy::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 238, 255, 0.3), transparent 62%);
}

.events-kicker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
}

.events-kicker i {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    box-shadow: 0 0 14px var(--neon-cyan);
}

.events-store {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.events-copy h1,
.events-copy h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: clamp(3.1rem, 5.5vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.events-copy h1 span,
.events-copy h2 span {
    color: var(--neon-cyan);
    text-shadow:
        0 0 22px rgba(0, 238, 255, 0.28),
        3px 3px 0 rgba(122, 91, 255, 0.35);
}

.events-copy > p {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
}

.events-chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.events-chips span {
    padding: 8px 13px;
    border: 1px solid rgba(0, 238, 255, 0.24);
    border-radius: 999px;
    color: #d8fbff;
    background: rgba(0, 238, 255, 0.07);
    font-size: 0.84rem;
}

.events-copy .events-slogan {
    margin: 17px 0 0;
    color: #fff;
    font-weight: 800;
}

.events-cta {
    position: absolute;
    right: 42px;
    bottom: 38px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
}

.events-cta b {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: #071017;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    box-shadow: 0 0 24px rgba(0, 238, 255, 0.3);
}

.exam-ticket {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    border-color: rgba(255, 181, 42, 0.42);
    border-radius: 32px;
    background: linear-gradient(155deg, rgba(255, 98, 0, 0.16), transparent 48%), rgba(14, 14, 24, 0.96);
    text-align: center;
}

.ticket-label {
    color: #ffbd52;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
}

.ticket-date {
    margin: 24px 0 12px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.ticket-date i {
    color: #ffb52a;
    font-style: normal;
}

.exam-ticket > strong {
    font-size: 1.45rem;
}

.exam-ticket > p {
    margin: 10px 0 18px;
    color: #ffca6d;
    font-weight: 800;
}

.ticket-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ticket-hours b {
    color: #fff;
    font-family: var(--font-display);
    font-size: 6.2rem;
    line-height: 0.9;
}

.ticket-hours span {
    color: #ffb52a;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
    text-align: left;
}

.exam-ticket small {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px dashed rgba(255, 181, 42, 0.38);
    color: rgba(255, 255, 255, 0.58);
}

.coming-ticket {
    border-color: rgba(0, 240, 255, 0.34);
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 240, 255, 0.16), transparent 36%),
        linear-gradient(155deg, rgba(139, 92, 246, 0.14), transparent 52%),
        rgba(14, 14, 24, 0.96);
}

.coming-ticket .ticket-label {
    color: var(--neon-cyan);
}

.coming-ticket > p {
    color: var(--neon-cyan);
}

.events-recharge-alert .events-copy {
    border-color: rgba(255, 181, 42, 0.44);
    background:
        radial-gradient(circle at 18% 88%, rgba(255, 0, 170, 0.28), transparent 36%),
        radial-gradient(circle at 92% 10%, rgba(255, 181, 42, 0.22), transparent 30%),
        linear-gradient(115deg, rgba(12, 8, 22, 0.98) 8%, rgba(55, 18, 53, 0.92) 58%, rgba(76, 37, 5, 0.82));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 52px rgba(255, 0, 170, 0.16);
}

.events-recharge-alert .events-copy h1 span {
    color: #ffb52a;
    text-shadow:
        0 0 24px rgba(255, 181, 42, 0.34),
        3px 3px 0 rgba(255, 0, 170, 0.28);
}

.events-recharge-alert .events-kicker {
    color: #ffb52a;
}

.events-recharge-alert .events-kicker i {
    background: linear-gradient(90deg, #ffb52a, var(--neon-pink));
    box-shadow: 0 0 14px rgba(255, 181, 42, 0.55);
}

.events-recharge-alert .events-chips span {
    border-color: rgba(255, 181, 42, 0.34);
    color: #fff2c7;
    background: rgba(255, 181, 42, 0.1);
}

.events-recharge-alert .events-slogan {
    display: inline-flex;
    padding: 12px 16px;
    border: 1px solid rgba(255, 81, 137, 0.42);
    border-radius: 14px;
    color: #ffe4ef;
    background: rgba(255, 0, 85, 0.1);
}

.recharge-ticket {
    border-color: rgba(255, 181, 42, 0.56);
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 181, 42, 0.24), transparent 34%),
        linear-gradient(155deg, rgba(255, 0, 170, 0.14), transparent 48%),
        rgba(14, 14, 24, 0.96);
}

.recharge-ticket .ticket-label {
    color: #ffb52a;
}

.recharge-amount,
.recharge-total {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.recharge-amount small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
    font-weight: 800;
}

.recharge-amount strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 5.4rem;
    line-height: 1;
}

.recharge-amount em,
.recharge-total em {
    color: #ffca6d;
    font-style: normal;
    font-weight: 900;
}

.recharge-arrow {
    width: fit-content;
    margin: 10px auto;
    padding: 7px 18px;
    border-radius: 999px;
    color: #071017;
    background: linear-gradient(135deg, var(--neon-cyan), #ffb52a);
    font-weight: 950;
    box-shadow: 0 0 22px rgba(255, 181, 42, 0.28);
}

.recharge-total strong {
    color: #ffb52a;
    font-family: var(--font-display);
    font-size: 6.8rem;
    line-height: 0.95;
    text-shadow: 0 0 30px rgba(255, 181, 42, 0.32);
}

.recharge-ticket > p {
    color: #ffe7b0;
    line-height: 1.65;
}

.events-dumpling-alert .events-copy {
    border-color: rgba(74, 222, 128, 0.42);
    background:
        radial-gradient(circle at 13% 86%, rgba(34, 197, 94, 0.28), transparent 34%),
        radial-gradient(circle at 94% 10%, rgba(250, 204, 21, 0.2), transparent 30%),
        linear-gradient(115deg, rgba(6, 22, 17, 0.98) 8%, rgba(13, 74, 50, 0.9) 58%, rgba(27, 43, 23, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 52px rgba(34, 197, 94, 0.16);
}

.events-dumpling-alert .events-copy h1 span {
    color: #bbf7d0;
    text-shadow:
        0 0 24px rgba(34, 197, 94, 0.34),
        3px 3px 0 rgba(250, 204, 21, 0.24);
}

.events-dumpling-alert .events-kicker {
    color: #86efac;
}

.events-dumpling-alert .events-kicker i {
    background: linear-gradient(90deg, #86efac, #facc15);
    box-shadow: 0 0 14px rgba(134, 239, 172, 0.52);
}

.events-dumpling-alert .events-chips span {
    border-color: rgba(134, 239, 172, 0.34);
    color: #ecfccb;
    background: rgba(34, 197, 94, 0.1);
}

.event-detail-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.event-detail-item {
    padding: 13px 14px;
    border: 1px solid rgba(134, 239, 172, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.event-detail-item span,
.event-detail-item em {
    display: block;
    color: rgba(220, 252, 231, 0.68);
    font-size: 0.78rem;
    font-style: normal;
}

.event-detail-item strong {
    display: block;
    margin: 5px 0 3px;
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
}

.event-detail-item.highlight {
    border-color: rgba(250, 204, 21, 0.42);
    background: rgba(250, 204, 21, 0.1);
}

.event-detail-item.highlight strong {
    color: #facc15;
    font-family: var(--font-display);
    font-size: 1.24rem;
    letter-spacing: 0.04em;
}

.events-dumpling-alert .events-slogan {
    display: inline-flex;
    padding: 12px 16px;
    border: 1px solid rgba(250, 204, 21, 0.36);
    border-radius: 14px;
    color: #fff7cd;
    background: rgba(250, 204, 21, 0.09);
}

.dumpling-ticket {
    border-color: rgba(134, 239, 172, 0.5);
    background:
        radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.24), transparent 34%),
        linear-gradient(155deg, rgba(250, 204, 21, 0.12), transparent 48%),
        rgba(9, 20, 18, 0.96);
}

.dumpling-ticket .ticket-label {
    color: #86efac;
}

.dumpling-ticket > strong {
    color: #fff;
    font-size: 1.65rem;
}

.dumpling-ticket > p {
    color: #dcfce7;
    line-height: 1.65;
}

.event-mini-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 18px;
}

.event-mini-list span {
    padding: 9px 12px;
    border: 1px solid rgba(250, 204, 21, 0.26);
    border-radius: 12px;
    color: #fff7cd;
    background: rgba(250, 204, 21, 0.08);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: left;
}

.dumpling-food-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 22px 0 8px;
}

.dumpling-food-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    border: 1px solid rgba(134, 239, 172, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
}

.dumpling-food-card img {
    display: block;
    width: 100%;
    height: 132px;
    object-fit: cover;
}

.dumpling-food-card span {
    position: absolute;
    left: 14px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #102015;
    background: rgba(236, 252, 203, 0.92);
    font-weight: 950;
}

.events-money-alert .events-copy {
    border-color: rgba(255, 211, 0, 0.52);
    background:
        radial-gradient(circle at 14% 86%, rgba(255, 0, 170, 0.32), transparent 34%),
        radial-gradient(circle at 90% 12%, rgba(0, 238, 255, 0.22), transparent 32%),
        linear-gradient(115deg, rgba(9, 8, 22, 0.98) 8%, rgba(48, 14, 74, 0.94) 54%, rgba(71, 38, 0, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 58px rgba(255, 0, 170, 0.18);
}

.events-money-alert .events-copy::before {
    content: "BONUS";
    position: absolute;
    right: -8px;
    top: 14px;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: 1;
    pointer-events: none;
}

.events-money-alert .events-copy h1 span {
    color: #ffd300;
    text-shadow:
        0 0 28px rgba(255, 211, 0, 0.42),
        4px 4px 0 rgba(255, 0, 170, 0.32);
}

.events-money-alert .events-kicker,
.events-money-alert .events-store {
    color: #fff1a8;
}

.events-money-alert .events-kicker i {
    background: linear-gradient(90deg, #ffd300, var(--neon-pink), var(--neon-cyan));
    box-shadow: 0 0 16px rgba(255, 211, 0, 0.55);
}

.events-money-alert .events-chips span {
    border-color: rgba(255, 211, 0, 0.38);
    color: #fff7c9;
    background: rgba(255, 211, 0, 0.11);
}

.events-money-alert .events-slogan {
    display: inline-flex;
    max-width: 760px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 211, 0, 0.42);
    border-radius: 14px;
    color: #fff6bf;
    background: rgba(255, 211, 0, 0.09);
}

.money-detail-panel .event-detail-item {
    border-color: rgba(255, 211, 0, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.money-detail-panel .event-detail-item span,
.money-detail-panel .event-detail-item em {
    color: rgba(255, 246, 191, 0.74);
}

.money-detail-panel .event-detail-item.highlight {
    border-color: rgba(255, 76, 76, 0.62);
    background:
        linear-gradient(135deg, rgba(255, 76, 76, 0.18), rgba(255, 211, 0, 0.12));
}

.money-detail-panel .event-detail-item.highlight strong {
    color: #ffd300;
    text-shadow: 0 0 18px rgba(255, 211, 0, 0.24);
}

.money-ticket {
    overflow: hidden;
    border-color: rgba(255, 211, 0, 0.58);
    background:
        radial-gradient(circle at 46% 28%, rgba(255, 211, 0, 0.28), transparent 34%),
        radial-gradient(circle at 76% 88%, rgba(255, 0, 170, 0.18), transparent 36%),
        linear-gradient(155deg, rgba(0, 238, 255, 0.12), transparent 48%),
        rgba(14, 14, 24, 0.96);
}

.money-ticket::before,
.money-ticket::after {
    content: "￥";
    position: absolute;
    z-index: 0;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 2px solid rgba(255, 211, 0, 0.42);
    border-radius: 50%;
    color: rgba(255, 211, 0, 0.7);
    background: rgba(255, 211, 0, 0.08);
    font-family: var(--font-display);
    font-size: 1.45rem;
    transform: rotate(-14deg);
}

.money-ticket::before {
    left: 30px;
    top: 72px;
}

.money-ticket::after {
    right: 28px;
    bottom: 92px;
    transform: rotate(16deg);
}

.money-ticket > * {
    position: relative;
    z-index: 1;
}

.money-ticket .ticket-label {
    color: #ffd300;
}

.money-burst {
    margin: 22px 0 18px;
    padding: 22px 18px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 211, 0, 0.18), rgba(255, 0, 170, 0.08)),
        rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 34px rgba(255, 211, 0, 0.08);
}

.money-burst span,
.money-burst em {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
    font-weight: 900;
}

.money-burst strong {
    display: block;
    margin: 8px 0;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1;
    text-shadow:
        3px 3px 0 #ff2d55,
        0 0 30px rgba(255, 211, 0, 0.28);
}

.money-reward-card {
    margin: 0 auto 18px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(255, 211, 0, 0.42);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 211, 0, 0.25), transparent 42%),
        rgba(255, 211, 0, 0.08);
}

.money-reward-card span {
    display: block;
    color: #fff1a8;
    font-weight: 950;
}

.money-reward-card strong {
    display: inline-block;
    color: #ffd300;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 9vw, 7rem);
    line-height: 0.9;
    text-shadow:
        0 0 34px rgba(255, 211, 0, 0.36),
        4px 4px 0 rgba(255, 0, 170, 0.26);
}

.money-reward-card em {
    color: #fff;
    font-style: normal;
    font-weight: 950;
}

.money-offer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin: 14px 0 0;
}

.money-offer-grid div {
    padding: 14px 10px;
    border: 1px solid rgba(0, 238, 255, 0.24);
    border-radius: 16px;
    background: rgba(0, 238, 255, 0.07);
}

.money-offer-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 900;
}

.money-offer-grid strong {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 2rem;
}

.money-offer-grid b {
    color: #ffd300;
    font-size: 1.8rem;
}

.coming-radar {
    position: relative;
    display: grid;
    width: 180px;
    height: 180px;
    margin: 34px auto;
    place-items: center;
    border: 1px solid rgba(0, 240, 255, 0.42);
    border-radius: 50%;
    background:
        linear-gradient(rgba(0, 240, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.18) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 240, 255, 0.16), transparent 64%);
    background-size: 50% 50%, 50% 50%, auto;
    box-shadow: inset 0 0 35px rgba(0, 240, 255, 0.08), 0 0 35px rgba(0, 240, 255, 0.12);
}

.coming-radar::before,
.coming-radar::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
}

.coming-radar::before {
    inset: 28px;
}

.coming-radar::after {
    inset: 56px;
}

.coming-radar i {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 20deg, transparent 0 72%, rgba(0, 240, 255, 0.5) 92%, transparent);
    animation: comingRadar 3.2s linear infinite;
}

.coming-radar b {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    text-shadow: 0 0 18px var(--neon-cyan);
}

@keyframes comingRadar {
    to {
        transform: rotate(360deg);
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.event-card {
    min-height: 290px;
    padding: 30px 27px;
    border-radius: 25px;
    opacity: 0;
    transform: translateY(36px);
    transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.3s ease;
}

.event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 238, 255, 0.52);
}

.event-number {
    position: absolute;
    right: 22px;
    top: 16px;
    color: rgba(255, 255, 255, 0.06);
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
}

.event-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 45px;
    color: var(--neon-cyan);
    font-size: 0.78rem;
    font-weight: 800;
}

.event-card-top i {
    padding: 5px 8px;
    border: 1px solid rgba(0, 238, 255, 0.28);
    border-radius: 999px;
    font-style: normal;
}

.event-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 1.36rem;
    line-height: 1.4;
}

.event-card h3 em {
    color: var(--neon-cyan);
    font-style: normal;
}

.event-card p {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    line-height: 1.7;
}

.event-emphasis {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 16px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.event-card-hot {
    background: radial-gradient(circle at 15% 100%, rgba(255, 0, 153, 0.26), transparent 48%), rgba(12, 13, 24, 0.95);
}

.event-card-member {
    background: radial-gradient(circle at 90% 10%, rgba(101, 84, 255, 0.24), transparent 44%), rgba(12, 13, 24, 0.95);
}

.event-card-billiards {
    background: radial-gradient(circle at 100% 100%, rgba(0, 238, 255, 0.18), transparent 46%), rgba(12, 13, 24, 0.95);
}

.dice-row {
    display: flex;
    gap: 7px;
    margin-top: 18px;
}

.dice-row b {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--font-display);
    font-size: 0.72rem;
}

.dice-row b:last-child {
    color: #071017;
    border-color: var(--neon-cyan);
    background: var(--neon-cyan);
    box-shadow: 0 0 18px rgba(0, 238, 255, 0.42);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 170, 0.02) 50%, transparent 100%);
    text-align: center;
}

/* Pricing Table */
.pricing-table-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: var(--bg-card);
}

.pricing-table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table thead {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(255, 0, 170, 0.1) 100%);
}

.pricing-table th {
    padding: 18px 16px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.pricing-table th.price-col {
    text-align: center;
    min-width: 112px;
}

.pricing-table th.highlight {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
}

.pricing-table td {
    padding: 17px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(0, 240, 255, 0.05);
}

.pricing-table tbody tr.featured-row {
    background: linear-gradient(90deg, rgba(255, 0, 170, 0.08) 0%, rgba(0, 240, 255, 0.08) 100%);
}

.pricing-table tbody tr.featured-row:hover {
    background: linear-gradient(90deg, rgba(255, 0, 170, 0.12) 0%, rgba(0, 240, 255, 0.12) 100%);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.zone-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.zone-config {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-cell {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.price-cell span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-cell.highlight {
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
}

.package-cell {
    font-size: 1.15rem;
}

/* Recharge Section */
.recharge-section {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.recharge-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.recharge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.recharge-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.recharge-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.recharge-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.recharge-item {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.recharge-item strong {
    color: var(--neon-magenta);
    font-weight: 700;
    font-size: 1.1rem;
}

.recharge-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    padding: 14px 20px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--neon-cyan);
    text-align: left;
}

/* Layout Map Section */
.layout-section {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.02) 50%, transparent 100%);
}

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

.seat-distribution-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.showcase-map-shell {
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(7, 12, 28, 0.96), rgba(11, 9, 26, 0.96)),
        var(--bg-card);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.showcase-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.13);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.08), rgba(139, 92, 246, 0.05));
}

.showcase-map-heading span,
.showcase-map-heading strong {
    display: block;
}

.showcase-map-heading span {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
}

.showcase-map-heading strong {
    margin-top: 3px;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.showcase-map-heading p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.76rem;
}

.showcase-map-heading i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan);
}

.showcase-map-scroll {
    padding: 16px;
    overflow-x: auto;
}

.showcase-floor-plan {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 920px;
}

.showcase-floor {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 14px;
    background: rgba(3, 8, 22, 0.7);
}

.showcase-floor-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(74, 158, 255, 0.18);
    background: linear-gradient(90deg, rgba(74, 158, 255, 0.14), transparent);
}

.showcase-floor-title strong {
    color: #4a9eff;
    font-family: var(--font-display);
    letter-spacing: 0.12em;
}

.showcase-floor-title span {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.showcase-room-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    gap: 10px;
    padding: 12px;
    align-items: start;
}

.showcase-room {
    min-width: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.showcase-room.is-hall {
    grid-row: span 2;
}

.showcase-room.is-single {
    grid-column: span 2;
}

.showcase-room header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 9px;
}

.showcase-room header strong {
    color: #e8efff;
    font-size: 0.72rem;
}

.showcase-room header span {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.62rem;
}

.showcase-seat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(34px, 1fr));
    gap: 5px;
}

.showcase-room.is-hall .showcase-seat-grid {
    grid-template-columns: repeat(2, minmax(34px, 1fr));
}

.showcase-room.is-single .showcase-seat-grid {
    grid-template-columns: repeat(6, minmax(34px, 1fr));
}

.showcase-seat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 32px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 7px;
    background: rgba(0, 240, 255, 0.055);
    color: rgba(226, 235, 255, 0.74);
    font-family: var(--font-display);
    font-size: 0.62rem;
    transition: transform 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.tone-single .showcase-seat {
    border-color: rgba(255, 0, 170, 0.25);
    background: rgba(255, 0, 170, 0.07);
}

.tone-ant .showcase-seat,
.tone-hall-ant .showcase-seat {
    border-color: rgba(72, 187, 120, 0.25);
    background: rgba(72, 187, 120, 0.07);
}

.tone-double .showcase-seat,
.tone-triple .showcase-seat {
    border-color: rgba(56, 178, 172, 0.25);
    background: rgba(56, 178, 172, 0.07);
}

.tone-double-540 .showcase-seat {
    border-color: rgba(159, 122, 234, 0.28);
    background: rgba(159, 122, 234, 0.08);
}

.tone-five .showcase-seat {
    border-color: rgba(237, 137, 54, 0.28);
    background: rgba(237, 137, 54, 0.08);
}

.tone-hall-zowie .showcase-seat {
    border-color: rgba(102, 126, 234, 0.28);
    background: rgba(102, 126, 234, 0.08);
}

.showcase-seat.is-trail-two {
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.24);
}

.showcase-seat.is-trail-one {
    color: #fff;
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.45);
}

.showcase-seat.is-head {
    z-index: 2;
    color: #06101b;
    border-color: var(--neon-cyan);
    background: linear-gradient(135deg, var(--neon-cyan), #7c6cff);
    box-shadow:
        0 0 10px rgba(0, 240, 255, 0.95),
        0 0 28px rgba(0, 240, 255, 0.58),
        0 0 44px rgba(255, 0, 170, 0.3);
    transform: scale(1.1);
}

.showcase-seat:hover {
    z-index: 3;
    color: #fff;
    transform: scale(1.12);
}

.distribution-stat {
    padding: 22px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(0, 240, 255, 0.08), rgba(139, 92, 246, 0.05));
}

.distribution-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-cyan);
}

.distribution-stat span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.seat-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.seat-zone-card {
    position: relative;
    min-height: 172px;
    padding: 24px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: var(--bg-card);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.seat-zone-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -55px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.09);
    filter: blur(4px);
}

.seat-zone-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 240, 255, 0.35);
}

.seat-zone-card.hall {
    border-color: rgba(0, 240, 255, 0.22);
}

.seat-zone-card.premium {
    border-color: rgba(255, 0, 170, 0.28);
}

.seat-zone-card.wide {
    grid-column: span 2;
}

.seat-zone-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.seat-zone-heading h3,
.map-link-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--text-primary);
}

.seat-zone-heading span {
    flex: 0 0 auto;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.seat-zone-card p {
    margin: 0 0 20px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.seat-range {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 9px;
    background: rgba(0, 240, 255, 0.07);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.5;
}

.map-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 170, 0.08));
}

.map-link-card .btn {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 12px 18px;
}

.map-link-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--neon-magenta);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 1.6px;
}

.distribution-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.distribution-note span {
    padding: 5px 9px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 7px;
    color: var(--neon-cyan);
    font-family: var(--font-display);
}

.layout-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Floor plan structure - 严格按照图片布局 */
.floor-plan {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 30px;
}

.floor-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.floor-row.top-row {
    gap: 18px;
    margin-bottom: 10px;
    margin-left: 50px;
}

.floor-row.bottom-row {
    margin-top: 15px;
    gap: 30px;
}

.seat-block {
    display: flex;
    gap: 18px;
}

.floor-main {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
}

.floor-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.floor-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 大厅区域分组 */
.hall-area {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-left: 40px;
}

.hall-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.hall-group.single-col {
    grid-template-columns: 1fr;
}

/* 游戏区域：电竞桌 + 57-61列并排 */
.gaming-area {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

/* 57-61列 */
.col-57-61 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
}

/* 52,53: 水平排列，在01-04右侧 */
.seat-row-52-53 {
    display: flex;
    gap: 5px;
    margin-top: 124px;
    align-self: flex-start;
}

/* 中间电竞区 */
.gaming-grid {
    display: flex;
    gap: 3px;
    margin-top: 35px;
}

.gaming-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gaming-col.center-col {
    margin: 0 12px;
}

.gaming-row {
    display: flex;
    gap: 3px;
}

/* Base seat styling */
.seat {
    width: 32px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.seat:hover,
.seat.marquee-active {
    transform: scale(1.25);
    color: var(--text-primary);
    z-index: 10;
    animation: pulse-glow 0.5s ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1.25); }
    50% { transform: scale(1.35); }
}

/* 跑马灯暂停状态 */
.floor-plan.marquee-paused .seat.marquee-active {
    transform: scale(1);
    color: var(--text-secondary);
    animation: none;
}

.seat.empty {
    visibility: hidden;
}

/* 大厅 (1-20) - 青色 */
.seat.dating {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.4);
}
.seat.dating:hover,
.seat.dating.marquee-active {
    background: rgba(0, 240, 255, 0.4);
    border-color: rgba(0, 240, 255, 1);
    box-shadow:
        0 0 10px rgba(0, 240, 255, 0.8),
        0 0 20px rgba(0, 240, 255, 0.6),
        0 0 40px rgba(0, 240, 255, 0.4),
        0 0 60px rgba(0, 240, 255, 0.2),
        inset 0 0 10px rgba(0, 240, 255, 0.3);
}
.floor-plan.marquee-paused .seat.dating.marquee-active {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: none;
}
.legend-color.dating {
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.5);
}

/* 单人包 (21-33) - 粉色 */
.seat.danren {
    background: rgba(255, 0, 170, 0.12);
    border: 1px solid rgba(255, 0, 170, 0.4);
}
.seat.danren:hover,
.seat.danren.marquee-active {
    background: rgba(255, 0, 170, 0.4);
    border-color: rgba(255, 0, 170, 1);
    box-shadow:
        0 0 10px rgba(255, 0, 170, 0.8),
        0 0 20px rgba(255, 0, 170, 0.6),
        0 0 40px rgba(255, 0, 170, 0.4),
        0 0 60px rgba(255, 0, 170, 0.2),
        inset 0 0 10px rgba(255, 0, 170, 0.3);
}
.floor-plan.marquee-paused .seat.danren.marquee-active {
    background: rgba(255, 0, 170, 0.12);
    border-color: rgba(255, 0, 170, 0.4);
    box-shadow: none;
}
.legend-color.danren {
    background: rgba(255, 0, 170, 0.2);
    border: 1px solid rgba(255, 0, 170, 0.5);
}

/* 蚂蚁双人包 (34-41) - 紫色 */
.seat.mayi {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.4);
}
.seat.mayi:hover,
.seat.mayi.marquee-active {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 1);
    box-shadow:
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 0 10px rgba(139, 92, 246, 0.3);
}
.floor-plan.marquee-paused .seat.mayi.marquee-active {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: none;
}
.legend-color.mayi {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.5);
}

/* 卓威双人包 (42-53) - 橙色 */
.seat.zhuwei2 {
    background: rgba(255, 165, 0, 0.12);
    border: 1px solid rgba(255, 165, 0, 0.4);
}
.seat.zhuwei2:hover,
.seat.zhuwei2.marquee-active {
    background: rgba(255, 165, 0, 0.4);
    border-color: rgba(255, 165, 0, 1);
    box-shadow:
        0 0 10px rgba(255, 165, 0, 0.8),
        0 0 20px rgba(255, 165, 0, 0.6),
        0 0 40px rgba(255, 165, 0, 0.4),
        0 0 60px rgba(255, 165, 0, 0.2),
        inset 0 0 10px rgba(255, 165, 0, 0.3);
}
.floor-plan.marquee-paused .seat.zhuwei2.marquee-active {
    background: rgba(255, 165, 0, 0.12);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: none;
}
.legend-color.zhuwei2 {
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid rgba(255, 165, 0, 0.5);
}

/* 卓威三人包 (54-56) - 绿色 */
.seat.zhuwei3 {
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.4);
}
.seat.zhuwei3:hover,
.seat.zhuwei3.marquee-active {
    background: rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 1);
    box-shadow:
        0 0 10px rgba(0, 255, 136, 0.8),
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 40px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.2),
        inset 0 0 10px rgba(0, 255, 136, 0.3);
}
.floor-plan.marquee-paused .seat.zhuwei3.marquee-active {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: none;
}
.legend-color.zhuwei3 {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.5);
}

/* 卓威五人包 (57-61) - 金色 */
.seat.zhuwei5 {
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.4);
}
.seat.zhuwei5:hover,
.seat.zhuwei5.marquee-active {
    background: rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 1);
    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 0 10px rgba(255, 215, 0, 0.3);
}
.floor-plan.marquee-paused .seat.zhuwei5.marquee-active {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: none;
}
.legend-color.zhuwei5 {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

/* Layout legend */
.layout-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

/* Entrance marker */
.entrance-marker {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.entrance-marker svg {
    width: 14px;
    height: 14px;
    stroke: var(--neon-cyan);
}

/* Restroom marker */
.restroom-marker {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* Responsive layout map */
@media (max-width: 768px) {
    .layout-container {
        padding: 20px 10px;
        margin: 0 -10px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .floor-plan {
        transform: scale(0.85);
        transform-origin: top center;
    }

    .seat {
        width: 26px;
        height: 22px;
        font-size: 0.5rem;
    }

    .layout-legend {
        gap: 8px;
        margin-top: 10px;
    }

    .legend-item {
        font-size: 0.6rem;
    }

    .legend-color {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .floor-plan {
        transform: scale(0.7);
    }

    .layout-legend {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: scale(1.02);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(255, 0, 170, 0.05) 100%);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.placeholder-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.placeholder-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.03) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-20px);
}

.info-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-cyan);
}

.info-text h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.info-text p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.info-text a {
    color: inherit;
    text-decoration: none;
}

.info-text a:hover {
    color: var(--neon-cyan);
}

.contact-map {
    position: relative;
    background: #10131d;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.map-preview {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background:
        radial-gradient(circle at 68% 43%, rgba(0, 240, 255, 0.22), transparent 18%),
        radial-gradient(circle at 30% 70%, rgba(255, 0, 170, 0.18), transparent 22%),
        linear-gradient(135deg, #162033 0%, #111624 48%, #172b31 100%);
}

.map-preview::before,
.map-preview::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.map-preview::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 74px 74px;
    opacity: 0.55;
}

.map-preview::after {
    inset: auto -8% 0 -8%;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.62) 72%);
}

.map-grid {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(0, 240, 255, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(90deg, transparent 49%, rgba(0, 240, 255, 0.16) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255, 0, 170, 0.12) 50%, transparent 51%);
    background-size: 180px 180px;
    opacity: 0.7;
}

.map-road {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(232, 236, 244, 0.9);
    color: #344054;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 0 0 7px rgba(232, 236, 244, 0.12), 0 10px 30px rgba(0, 0, 0, 0.18);
}

.map-road b {
    position: relative;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.road-main {
    left: -5%;
    right: -5%;
    top: 47%;
    height: 42px;
    transform: rotate(-7deg);
}

.road-cross {
    top: -8%;
    bottom: -8%;
    left: 41%;
    width: 34px;
    writing-mode: vertical-rl;
    transform: rotate(9deg);
}

.road-diagonal {
    left: 20%;
    right: 6%;
    top: 26%;
    height: 26px;
    transform: rotate(25deg);
    opacity: 0.72;
}

.map-zone {
    position: absolute;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(12, 16, 25, 0.56);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
}

.zone-campus {
    top: 18%;
    left: 12%;
}

.zone-nearby {
    right: 13%;
    bottom: 31%;
}

.map-pin {
    position: absolute;
    left: 52%;
    top: 48%;
    z-index: 2;
    display: grid;
    gap: 2px;
    min-width: 168px;
    padding: 13px 15px 13px 45px;
    border: 1px solid rgba(0, 240, 255, 0.42);
    border-radius: 14px;
    background: rgba(10, 10, 18, 0.92);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.36), 0 0 30px rgba(0, 240, 255, 0.18);
    transform: translate(-50%, -100%);
}

.map-pin i {
    position: absolute;
    left: 14px;
    top: 15px;
    width: 20px;
    height: 20px;
    border: 5px solid var(--neon-cyan);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.45);
}

.map-pin i::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--neon-magenta);
}

.map-pin strong {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.map-pin small {
    color: var(--text-secondary);
    font-size: 0.76rem;
}

.map-action-bar {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 240, 255, 0.24);
    border-radius: 14px;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.map-action-bar strong,
.map-action-bar span {
    display: block;
}

.map-action-bar strong {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.map-action-bar span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.map-action-bar a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 9px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(255, 0, 170, 0.05) 100%);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 240, 255, 0.1);
}

.social-link:hover svg {
    fill: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .home-live-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-live-content {
        grid-template-columns: 1fr;
    }

    .home-live-upcoming {
        position: static;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .events-hero {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exam-ticket {
        min-height: 360px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .price-cell {
        font-size: 1.1rem;
    }

    .zone-config {
        font-size: 0.8rem;
    }

    .recharge-grid {
        grid-template-columns: 1fr;
    }

    .seat-zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seat-zone-card.wide {
        grid-column: span 1;
    }

    .map-link-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        height: 300px;
    }

    .gallery-item:not(.large) {
        height: 200px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-map,
    .map-preview {
        min-height: 400px;
    }

    section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .home-live-toolbar {
        flex-direction: column;
    }

    .home-live-summary {
        grid-template-columns: 1fr;
    }

    .home-live-meta {
        text-align: left;
    }

    .home-live-categories {
        grid-template-columns: 1fr;
    }

    .home-live-subtitle {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-floor {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .home-floor-plan {
        min-width: 880px;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .events-copy {
        min-height: auto;
        padding: 34px 24px 110px;
        border-radius: 24px;
    }

    .events-copy h1,
    .events-copy h2 {
        font-size: 2.75rem;
    }

    .events-copy > p {
        font-size: 0.94rem;
    }

    .event-detail-panel {
        grid-template-columns: 1fr;
    }

    .events-cta {
        right: auto;
        bottom: 34px;
        left: 24px;
    }

    .exam-ticket {
        min-height: 340px;
        padding: 30px 24px;
        border-radius: 24px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: 245px;
    }

    .events-wrap::before {
        inset: -10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Mobile pricing table */
    .pricing-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }

    .pricing-table th:nth-child(2),
    .pricing-table td.zone-config {
        display: none;
    }

    .price-cell {
        font-size: 1rem;
    }

    .price-cell span {
        display: none;
    }

    .zone-name {
        font-size: 0.85rem;
    }

    .recharge-items {
        grid-template-columns: 1fr;
    }

    .recharge-card {
        padding: 20px;
    }

    .seat-distribution-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .seat-zone-grid {
        grid-template-columns: 1fr;
    }

    .showcase-map-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .seat-zone-card {
        min-height: 0;
        padding: 20px;
    }

    .map-link-card .btn {
        width: 100%;
        justify-content: center;
    }

    .distribution-note {
        justify-content: flex-start;
    }

    .map-action-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-action-bar a {
        width: 100%;
        text-align: center;
    }
}
