:root {
    --bg-dark: #050505;
    --bg-darker: #000;
    --primary: #d60017;
    /* Hellfest Red */
    --accent: #ffae00;
    /* Gold */
    --copenhell: #3498db;
    --resurrection: #ff6b00;

    --text-main: #fff;
    --text-muted: #888;

    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --nav-height: 80px;
}

/* ... existing body/a/ul ... */

/* COUNTDOWN TIMER */
.countdown-wrapper {
    margin-top: 30px;
    display: inline-block;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.time-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
}

.time-box .num {
    display: block;
    font-size: 2rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.time-box .lbl {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

@media(max-width: 768px) {
    .countdown-timer {
        gap: 10px;
    }

    .time-box {
        padding: 10px 15px;
        min-width: 70px;
    }

    .time-box .num {
        font-size: 1.5rem;
    }
}

/* PREMIUM UTILS */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
    padding: 30px;
}

.text-gradient {
    background: linear-gradient(135deg, white 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TIMELINE */
.timeline-section {
    padding: 80px 20px;
    background: #080808;
}

.timeline-track {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding-left: 50px;
    border-left: 2px solid #222;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -59px;
    top: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid #080808;
    box-shadow: 0 0 10px var(--primary);
}

.timeline-date {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.timeline-item h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.timeline-item p {
    color: #888;
    line-height: 1.5;
}

/* PRICING PACKAGES */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto;
}

.price-card {
    position: relative;
    transition: transform 0.3s;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.price-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.price-title {
    font-size: 1.8rem;
    font-family: var(--font-head);
    color: white;
    display: block;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 15px 0;
    display: block;
}

.price-desc {
    font-size: 0.9rem;
    color: #aaa;
}

.price-features li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-features i {
    color: var(--primary);
    margin-top: 5px;
}

/* BADGES */
.badge-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* MOBILE */
@media(max-width: 768px) {
    .timeline-track {
        border-left: none;
        padding-left: 0;
    }

    .timeline-item::before {
        display: none;
    }

    .nav-links {
        display: none;
    }

    #navbar {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* UTILS */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* ANIMATIONS */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    /* Changed from height to min-height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    /* Only hide X overflow, allow vertical scroll if needed */
    padding-top: 0;
    /* Let flexbox center it properly */
    padding-bottom: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with actual video/image */
    background: url('../images/crowd_bg.jpg') no-repeat center center/cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deeper cinematic gradient */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, var(--bg-dark) 90%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Removed height 100% to let content flow */
}

.hero-content img {
    max-width: 400px !important;
    /* Force smaller size overrides inline styles if needed */
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}


.hero-content h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    /* Reduced from 5rem */
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-content h2 {
    font-size: 2rem;
    /* Reduced from 3rem */
    font-weight: 300;
    color: var(--text-muted);
}

.hero-content h2 span {
    color: var(--primary);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.counter,
.stat .num {
    font-size: 3.5rem;
    /* Standardized Number Size */
    font-weight: 800;
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 5px;
    color: white;
}

.stat p,
.stat .lbl {
    font-size: 1rem;
    /* Standardized Label Size */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}

/* NAVBAR */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    /* More transparent/glassy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: var(--nav-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    /* Above mobile menu */
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: var(--font-head);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

/* Hover Underline Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Nav Actions (Buttons) */
.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-sm {
    background: var(--primary);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    /* Slightly softer */
    color: white;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    font-family: var(--font-head);
}

.btn-sm:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(214, 0, 23, 0.3);
}

.btn-back {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.btn-back:hover {
    color: white;
    border-color: white;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hamburger Animation State */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

/* MOBILE RESPONSIVE */
@media(max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        backdrop-filter: blur(20px);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    #navbar {
        padding: 0 20px;
    }
}

/* FESTIVALS */
.festivals-section {
    padding: 100px 20px;
    min-height: 100vh;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 4rem;
    font-family: var(--font-head);
}

/* TABS */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #111;
    border: 1px solid #333;
    color: #888;
    padding: 15px 40px;
    font-size: 1.5rem;
    /* Increased for better visibility */
    font-family: var(--font-head);
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 700;
}

.tab-btn:hover {
    background: #222;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-btn[data-target="copenhell"].active {
    background: var(--copenhell);
    border-color: var(--copenhell);
}

.tab-btn[data-target="resurrection"].active {
    background: var(--resurrection);
    border-color: var(--resurrection);
}

/* TAB CONTENT */
.tab-pane {
    display: none;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fest-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.fest-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.fest-info {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.fest-info h4 {
    font-size: 2rem;
    font-family: var(--font-head);
    color: white;
    margin-bottom: 5px;
}

.fest-info p {
    font-size: 1.1rem;
    color: #ddd;
}


/* LINEUP GRID */
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}



.day-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.day-header {
    background: #1a1a1a;
    padding: 15px 20px;
    border-bottom: 2px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
    /* Remove pointer */
    pointer-events: none;
    /* Disable all interaction to be sure */
}

/* AUDIENCE SECTION IMPROVEMENTS */
.audience-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #080808, #111);
    border-top: 1px solid #222;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.impact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.impact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.impact-data h4 {
    font-size: 2rem;
    font-family: var(--font-head);
    color: white;
    margin-bottom: 5px;
}

.impact-data p {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.demographics-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 80px auto 0;
}

.demo-col h4 {
    font-family: var(--font-head);
    color: white;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

/* DETAILED DEMOGRAPHICS */
.demo-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Gender Visual */
.gender-bar-visual {
    display: flex;
    height: 35px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 5px;
}

.g-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.g-segment.male {
    background: #333;
}

.g-segment.female {
    background: var(--primary);
}

/* Age Visual */
.age-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ccc;
}

.age-row span {
    width: 50px;
}

.age-row span.highlight {
    color: white;
    font-weight: 700;
}

.age-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.age-bar-fill {
    height: 100%;
    background: #555;
    border-radius: 4px;
}

.age-bar-fill.highlight {
    background: var(--primary);
}

.age-row .perc {
    width: 40px;
    text-align: right;
    font-size: 0.85rem;
}

.age-row .perc.highlight {
    color: var(--primary);
}

.day-header h5 {
    margin: 0;
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: white;
}

.day-header span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hellfest Specifics */
#hellfest .day-header {
    border-bottom-color: var(--primary);
}

/* MARKETS VISUAL */
.markets-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.market-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.market-flag {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.market-info {
    flex: 1;
}

.market-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 600;
}

.market-bar-bg {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.market-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
}

#resurrection .day-header {
    border-bottom-color: var(--resurrection);
}

.stage-block {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
}

.stage-block:last-child {
    border-bottom: none;
}

.stage-title {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#resurrection .stage-title {
    color: var(--resurrection);
}

/* BAND LISTS */
.band-list {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

.band-list strong {
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.day-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
}

.day-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

/* COPENHELL SPECIAL */
.copenhell-poster {
    text-align: center;
    border: 4px solid var(--copenhell);
    padding: 60px;
    background: #080808;
}

.top-bill {
    font-size: 3rem;
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.top-bill span {
    display: block;
}

.mid-bill {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 600;
}

.low-bill {
    font-size: 1rem;
    color: #888;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}


/* STATS SECTION */
.audience-section {
    padding: 100px 40px;
    background: #111;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-col h2 {
    font-size: 3.5rem;
    font-family: var(--font-head);
    margin-bottom: 20px;
}

.text-col h3 {
    color: var(--primary);
    letter-spacing: 2px;
}

.stats-list {
    margin-top: 40px;
}

.stats-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.stats-list li i {
    font-size: 2rem;
    color: var(--accent);
    width: 40px;
}

.stats-list li div strong {
    font-size: 2.5rem;
    display: block;
    font-family: var(--font-head);
    line-height: 1;
}

.visual-col {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
    border-radius: 12px;
    border: 1px solid #222;
}

.map-visual img {
    opacity: 0.6;
    width: 100%;
    filter: invert(1) hue-rotate(180deg);
}

.pin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
    border: 2px solid white;
    box-shadow: 0 0 15px var(--primary);
    transform: translate(-50%, -50%);
    z-index: 10;
}


/* CONTACT */
.contact-section {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle, #222 0%, #000 100%);
}

.contact-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.contact-section p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

footer {
    border-top: 1px solid #222;
    padding-top: 40px;
    color: #555;
    font-size: 0.9rem;
}

/* IMPACT GRID */
.impact-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.impact-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.impact-card i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.impact-card strong {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-head);
    color: white;
}

.impact-card span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

/* DEMOGRAPHICS */
.demographics-box h4,
.geo-box h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.demo-bar {
    margin-bottom: 15px;
}

.demo-bar .label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.bar-container {
    background: #222;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: var(--primary);
    text-align: right;
    color: white;
    font-size: 0.7rem;
    line-height: 20px;
    padding-right: 10px;
    font-weight: bold;
}

/* GEO LIST */
.geo-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.geo-list .flag {
    font-size: 1.5rem;
}

.geo-list .country {
    color: #ccc;
    font-weight: 500;
    flex-grow: 1;
    margin-left: 15px;
}

.geo-list .val {
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font-head);
}


/* MOBILE */
/* GALLERY SECTION */
.gallery-section {
    padding: 100px 20px;
    background: #000;
    border-top: 1px solid #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
    max-width: 1400px;
    margin: 40px auto;
}

.gallery-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.g-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .g-overlay {
    opacity: 1;
}

.g-overlay span {
    color: white;
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 2px;
}


/* MOBILE FIXES & IMPROVEMENTS */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    /* SCROLLABLE TABS */
    .tabs-nav {
        flex-direction: row;
        /* Keep row for scroll */
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .tabs-nav::-webkit-scrollbar {
        height: 6px;
    }

    .tabs-nav::-webkit-scrollbar-track {
        background: #111;
    }

    .tabs-nav::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 1rem;
        flex-shrink: 0;
        /* Prevent shrinking */
    }

    .stats-list li {
        border: none;
    }

    .impact-grid {
        flex-direction: column;
    }

    /* MOBILE BAND GRID (2 Columns) */
    .band-grid {
        display: grid !important;
        /* Force grid over flex */
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-content: stretch;
    }

    .band-item {
        width: 100%;
        /* Fill grid cell */
        padding: 10px 5px;
        border-radius: 4px;
        min-height: 60px;
        /* Ensure touch target size */
    }

    .band-name {
        font-size: 0.8rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ACCORDION & BAND GRID ADDITIONS */
/* ACCORDION (Mobile Only) & CARD DEFAULTS */
.day-card {
    cursor: default;
    transition: all 0.3s ease;
}

.day-header {
    position: relative;
    /* Default: No interaction for desktop */
}

.day-content {
    display: block;
    /* Desktop: Always visible */
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

/* Mobile Accordion Overrides */
@media(max-width: 768px) {
    .day-header {
        cursor: pointer;
        padding-right: 40px;
        pointer-events: auto;
    }

    .day-header::after {
        content: '\f078';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s;
        color: var(--primary);
    }

    .day-card.active .day-header::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .day-content {
        display: none;
        /* Mobile: Hidden by default */
    }

    .day-card.active .day-content {
        display: block;
        animation: fadeIn 0.4s;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* BAND UI STANDARDIZATION */
.band-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.band-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(5px);
}

.band-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.band-img {
    display: none;
    /* Hide images globally just in case */
}

.band-name {
    font-size: 0.9rem;
    /* Smaller, sharper */
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f0f0f0;
    line-height: 1;
}