:root {
    --bg-dark: #050508;
    --bg-mid: #0a0a0f;
    --bg-card: #121216;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent-purple: #9d4edd;
    --accent-blue: #4361ee;
    --accent-pink: #f72585;
    --accent-cyan: #00ffff;
    --glass-bg: rgba(18, 18, 22, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, .hero-title {
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.w-100 { width: 100%; display: block; text-align: center; }

/* Utils */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    text-shadow: 0 0 15px rgba(247, 37, 133, 0.6), 0 0 30px rgba(247, 37, 133, 0.3);
}

.text-shadow-glow {
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glow-border {
    position: relative;
}
.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.shadow-heavy {
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(157, 78, 221, 0.15);
    border-color: rgba(157, 78, 221, 0.4);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #101015 25%, #1c1c25 50%, #101015 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: inherit;
}
.skeleton img {
    opacity: 0;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.btn-primary:hover::after {
    left: 150%;
}

.glow-effect:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 15px rgba(67, 97, 238, 0.5);
}

.logo .dot { color: var(--accent-purple); }

.nav-links { display: flex; gap: 2.5rem; }

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

#app {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
}

/* Animations */
.view-animate {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-animate-1 { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; }
.delay-animate-2 { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }
.delay-animate-3 { opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; }

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

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Grid Categories */
.grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
}
.category-box img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-box:hover img {
    transform: scale(1.1);
}
.cat-overlay {
    position: absolute; inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.cat-label {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    transition: transform 0.3s;
}
.category-box:hover .cat-label {
    transform: translateY(-5px);
    color: var(--accent-pink);
}

/* Event Cards */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.h-scroll-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 1rem 0;
}
.h-scroll {
    display: flex; gap: 2rem; overflow-x: auto;
    padding: 0 50vw 2.5rem calc(50vw - 650px + 2rem);
    scrollbar-width: none;
}
@media (max-width: 1300px) { .h-scroll { padding: 0 2rem 2.5rem 2rem; } }
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll .event-card { min-width: 360px; max-width: 360px; }

.event-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.event-card-img-wrapper {
    position: relative;
    padding-top: 60%; 
    background: #000;
    overflow: hidden;
}

.event-card-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.img-gradient-overlay {
    position: absolute; inset:0;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.event-card:hover .event-card-img { transform: scale(1.08) rotate(1deg); }

.category-badge {
    position: absolute; top: 15px; right: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem; font-weight: 800; color: white;
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.status-badge {
    position: absolute; top: 15px; left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem; font-weight: 800; color: white;
    display: flex; align-items: center; gap: 8px;
    text-transform: uppercase; letter-spacing: 0.1em;
    z-index: 2;
}
.badge-live { background: rgba(247, 37, 133, 0.95); box-shadow: 0 0 20px rgba(247, 37, 133, 0.6); }
.badge-upcoming { background: rgba(67, 97, 238, 0.95); box-shadow: 0 0 15px rgba(67, 97, 238, 0.4); }
.badge-completed { background: rgba(255, 255, 255, 0.2); backdrop-filter:blur(5px); color: #fff; border:1px solid rgba(255,255,255,0.2)}

.pulse-dot {
    width: 8px; height: 8px; background: #fff; border-radius: 50%;
    animation: pulse 1s infinite;
    box-shadow: 0 0 8px #fff;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.event-card-content {
    padding: 1.8rem;
    display: flex; flex-direction: column; flex: 1;
    position: relative;
    z-index: 2;
}

.event-title {
    font-size: 1.4rem; margin-bottom: 0.4rem;
}

.event-artist {
    color: var(--text-muted); font-size: 1rem; margin-bottom: 1.2rem;
}

.event-countdown {
    color: var(--accent-pink); font-weight: 800; font-size: 0.9rem; margin-bottom: 1.2rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.event-footer {
    margin-top: auto; display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
}

.event-date { font-size: 0.95rem; color: var(--text-muted); font-weight: 600; }
.event-price { font-weight: 800; color: var(--text-main); font-size: 1.2rem; }

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    margin-top: -75px; /* Pull under nav */
    padding-top: 75px;
}

.hero-stage-lights {
    position: absolute; inset:0;
    background: radial-gradient(ellipse at 50% -20%, rgba(157, 78, 221, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 0%, rgba(247, 37, 133, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 0%, rgba(67, 97, 238, 0.3) 0%, transparent 50%);
    z-index: 1;
    animation: lightsDrift 15s infinite alternate ease-in-out;
    pointer-events: none;
}
@keyframes lightsDrift {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(-20px); }
}

.hero-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.45;
    z-index: 0;
}

.hero-overlay-grad {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(5,5,8,0.2) 0%, var(--bg-dark) 100%);
}

.hero-content {
    max-width: 900px; padding: 0 2rem; z-index: 10;
}

.hero-title {
    font-size: 5.5rem; margin-bottom: 1.5rem; line-height: 1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem; color: #ddd; margin-bottom: 3.5rem; font-weight: 500;
}

.hero-cta { display: flex; gap: 1.5rem; justify-content: center; }

/* Detail Page */
.detail-hero {
    height: 65vh; position: relative;
    background-size: cover; background-position: center;
    margin-top: -75px;
    background-color: var(--bg-card); /* Fallback base */
}

.detail-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; padding-bottom: 4rem; z-index: 2;
}
.detail-overlay-grad {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, var(--bg-dark) 100%);
}

.detail-content {
    display: grid; grid-template-columns: 2fr 1fr; gap: 4rem;
}

.detail-desc {
    color: #ccc; margin-bottom: 3rem; font-size: 1.2rem; line-height: 1.8;
}

.artist-section {
    display: flex; align-items: center; gap: 1.8rem;
    margin-bottom: 3rem; padding: 2rem; cursor: default;
}

.artist-avatar {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; font-weight: 800;
    box-shadow: 0 10px 30px rgba(247,37,133,0.4);
    border: 3px solid rgba(255,255,255,0.2);
}

.info-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.info-block { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; border-radius: 12px; }
.info-icon { font-size: 2.2rem; filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); }

.booking-card { padding: 3rem; text-align: center; }
.sticky-card { position: sticky; top: 110px; }
.price-tag { font-size: 4rem; font-weight: 800; color: var(--text-main); margin-bottom: 1rem; line-height: 1; text-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.seats-left { font-weight: 700; margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 0.8rem; font-size:1.1rem; text-transform:uppercase; letter-spacing:0.05em}

/* Confirmation */
.success-icon {
    width: 100px; height: 100px; background: rgba(0, 255, 255, 0.1);
    color: var(--accent-cyan); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; margin: 0 auto 2rem;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}
@keyframes popIn { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.pulse-animation { animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }

.ticket-stub {
    border: 1px dashed rgba(255,255,255,0.3); margin: 2.5rem 0; padding: 2.5rem;
    display: flex; gap: 2.5rem; align-items: center; text-align: left; border-radius:16px;
}
.qr-code {
    width: 130px; height: 130px; background: white; border-radius: 12px;
    background: url('https://placehold.co/130x130/ffffff/000000?text=QR') center/cover;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.ticket-info h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }

/* Dashboard Grids */
.dashboard-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem;
}
.stat-card { padding: 2rem; display: flex; flex-direction: column; }
.stat-title { color: var(--text-muted); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-value { font-weight: 800; margin-top: 0.8rem; color: var(--text-main); line-height: 1.1; }

.artist-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }

.form-group { margin-bottom: 1.8rem; text-align: left; }
.form-row { display: flex; gap: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform:uppercase; font-size:0.9rem; letter-spacing:0.05em; }
.form-control {
    width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem 1.5rem; border-radius: 12px; color: white; font-family: inherit; font-size: 1.05rem; transition: all 0.3s;
}
.form-control:focus { outline: none; border-color: var(--accent-pink); box-shadow: 0 0 15px rgba(247,37,133,0.3); }

/* Chart */
.mock-chart { display: flex; flex-direction: column; }
.chart-bars { flex: 1; display: flex; align-items: flex-end; gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--glass-border); }
.chart-bar { flex: 1; height: 100%; display: flex; align-items: flex-end; background: rgba(255,255,255,0.03); border-radius: 8px; position:relative; overflow:hidden;}
.bar-fill { width: 100%; background: linear-gradient(to top, var(--accent-purple), var(--accent-pink)); border-radius: 8px; transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.chart-labels { display: flex; margin-top: 1.5rem; justify-content: space-between; color: var(--text-muted); font-weight: 700; text-transform:uppercase; }

/* Player Page Overlay */
.player-page-bg {
    position: fixed; top:0; left:0; width:100vw; height:100vh;
    background-size: cover; background-position: center;
    filter: blur(40px); opacity: 0.3; z-index: -2; transform: scale(1.1);
}
.player-overlay {
    position: fixed; inset:0; background: rgba(5,5,8,0.8); z-index: -1;
}

.player-container {
    display: grid; grid-template-columns: 3fr 1fr; gap: 2.5rem; height: auto; min-height: calc(100vh - 75px); align-items: start;
}

.video-section { display: flex; flex-direction: column; }

.video-wrapper {
    position: relative; padding-bottom: 56.25%; background: #000; overflow: hidden;
}

.video-placeholder {
    position: absolute; inset:0; display: flex; align-items: center; justify-content: center; background-size:cover; background-position:center;
}

.play-button {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s;
}
.play-button::after {
    content: ''; width: 0; height: 0; border-top: 22px solid transparent; border-left: 36px solid white; border-bottom: 22px solid transparent; margin-left: 10px; filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.chat-section { display: flex; flex-direction: column; height: 600px; }
.chat-header { padding: 1.5rem; border-bottom: 1px solid var(--glass-border); font-weight: 800; font-size: 1.2rem; text-transform:uppercase; letter-spacing:0.05em; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.chat-msg { display: flex; gap: 1rem; align-items: flex-start; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color:white; border:2px solid rgba(255,255,255,0.2)}
.chat-body { background: rgba(0,0,0,0.4); padding: 0.8rem 1.2rem; border-radius: 14px; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.05); }
.chat-body span.user { font-weight: 800; color: #fff; margin-right: 0.5rem; opacity:0.8}

.chat-input { display: flex; padding: 1.5rem; border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.4); }
.chat-input input {
    flex: 1; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 1rem 1.5rem; border-radius: 30px 0 0 30px; outline: none; font-size: 1rem;
}
.chat-input button {
    background: var(--accent-blue); color: white; border: none; padding: 0 2rem; border-radius: 0 30px 30px 0; cursor: pointer; font-weight: 800; transition: background 0.3s; text-transform:uppercase; letter-spacing:0.05em;
}

/* Toast */
.toast {
    position: fixed; top: 90px; left: 50%; transform: translateX(-50%) translateY(-20px); background: #121216; border: 1px solid rgba(255,255,255,0.1); color: white; padding: 1.2rem 2.5rem; border-radius: 50px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); z-index: 2000; opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); font-weight: 700; display: flex; align-items: center; letter-spacing:0.02em; font-size:1.1rem;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-success { border-color: #00e676; box-shadow: 0 15px 40px rgba(0, 230, 118, 0.2); }
.toast i { font-style:normal; font-size:1.5rem; margin-right:1rem; color:#00e676; }

/* Responsive Grid & Containers */
@media (max-width: 1000px) {
    .detail-content, .player-container, .artist-content-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 4rem; }
    .chat-section { height: 500px; }
    .ticket-stub { flex-direction: column; text-align: center; }
    .info-blocks { grid-template-columns: 1fr; }
    .event-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    /* Center details on medium screens */
    .artist-section { flex-direction: column; text-align: center; justify-content: center; }
    .booking-card { margin-top: 2rem; }
    .dashboard-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
    .form-group { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
    /* Navigation / Hamburger Menu */
    .hamburger { display: block !important; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 75px; 
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        align-items: center;
        overflow-y: auto;
    }
    .nav-links.nav-active { left: 0; }
    .nav-link { font-size: 1.4rem; padding: 1rem; width: 100%; text-align: center; }

    /* Typography & Spacing */
    .hero { min-height: 500px; height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 2.5rem; }
    .section-title { font-size: 2rem; margin-bottom: 1.8rem; text-align: center; }
    .text-shadow-glow { font-size: inherit; }

    /* Touch targets & UI elements */
    .btn { padding: 1.2rem 2rem; width: 100%; } /* larger touch target on mobile */
    .hero-cta { flex-direction: column; gap: 1rem; padding: 0 1rem; }
    .filters-bar { flex-direction: column; gap: 1rem; align-items: stretch !important; padding: 1.5rem; }
    .search-input { width: 100% !important; }
    .category-filter { width: 100%; padding: 1rem; }
    
    /* Layout Adjustments */
    .event-grid { grid-template-columns: 1fr; gap: 2rem; }
    .grid-categories { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .category-box { aspect-ratio: 1; }
    .dashboard-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    /* Horizontal Scrolling */
    .h-scroll {
        padding: 0 1rem 2.5rem 1rem;
        scroll-snap-type: x mandatory;
        gap: 1.2rem;
    }
    .h-scroll .event-card {
        scroll-snap-align: start;
        min-width: 85vw;
        max-width: 85vw;
    }
    .h-scroll-container { width: 100%; margin-left: 0; } /* Reset full bleed to container bleed */

    /* Detail / Booking */
    .detail-hero { height: auto; padding: 3rem 1rem; min-height: 40vh; text-align: center; }
    .detail-overlay { position: relative; padding-bottom: 2rem; align-items: center; }
    .detail-overlay .category-badge, .detail-overlay .status-badge { display: inline-flex; margin: 0 auto; margin-bottom: 1rem; }
    .detail-overlay > .container > div:first-child { justify-content: center !important; }
    .price-tag { font-size: 3rem; }
    .stat-value { font-size: 2.5rem !important; }

    /* Video Player */
    .video-wrapper { padding-bottom: 56.25%; /* Keeps 16:9 ratio */ border-radius: 8px; }
    .player-header { flex-direction: column; text-align: center; gap: 1.5rem; padding: 1.5rem !important; }
    .player-header > div:last-child { text-align: center !important; }
    .chat-section { height: 450px; }
    
    /* Form modifications */
    .glass-panel { padding: 1.5rem !important; border-radius: 12px; }
    .confirmation-card { padding: 2.5rem 1.5rem !important; }
    .qr-code { width: 100px; height: 100px; margin: 0 auto; }
}
