/* =====================================================
   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: 'Orbitron', monospace;
    --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 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;
}

/* 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;
}

.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 {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-cyan);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 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: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    min-height: 460px;
}

.baidu-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    filter: saturate(0.85) contrast(1.05);
}

.map-action-bar {
    position: absolute;
    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;
    }

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

    .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,
    .baidu-map-frame {
        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;
    }

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

    .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;
    }
}
