        :root {
            --dark-gray: #121212;
            --white: #EAEAEA;
            --smoky-red: #D32F2F;
            --glass-bg: rgba(22, 22, 22, 0.5);
            --glass-border: rgba(255, 255, 255, 0.1);
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--dark-gray);
            color: var(--white);
            font-family: var(--font-body);
            overflow-x: hidden;
        }
        
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            z-index: 1000;
            transition: background-color 0.3s ease, padding 0.3s ease;
        }

        #navbar.scrolled {
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            padding: 0.5rem 0;
        }

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

        .nav-logo img {
            height: 30px;
            transition: height 0.3s ease;
        }

        #navbar.scrolled .nav-logo img {
            height: 40px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--smoky-red);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s ease;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--white);
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
        }

        #flux-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: var(--white);
            border-radius: 50%;
            opacity: 0;
            animation: rise 10s infinite linear;
        }

        .particle.red {
            background: var(--smoky-red);
            box-shadow: 0 0 10px var(--smoky-red);
        }

        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 1;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-10vh) scale(1);
                opacity: 0;
            }
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .hero-logo {
            width: 140px;
            height: 140px;
            margin-bottom: 2rem;
            animation: fadeInLogo 2s ease-out, pulseLogo 5s ease-in-out infinite 2s;
        }
        
        @keyframes fadeInLogo {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @keyframes pulseLogo {
            0%, 100% {
                filter: drop-shadow(0 0 15px var(--white));
            }
            50% {
                filter: drop-shadow(0 0 45px var(--white));
            }
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 3rem;
            letter-spacing: 2px;
            animation: fadeInText 1.5s ease-out 0.5s both;
        }

        .hero h6 {
            font-family: var(--font-heading);
            font-weight: 300;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.5rem;
            margin-bottom: 1rem;
            animation: fadeInText 1.5s ease-out 0.8s both;
        }

        /* Countdown */
        #countdown-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1rem 0 1rem 0;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            background: rgba(0, 0, 0, 0.0);
            padding: 0.5rem 2rem;
            border-radius: 15px;
            border: 0px solid var(--glass-border);
            animation: fadeInText 1.8s ease-out 1.0s both;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1;
            display: block;
        }

        .countdown-label {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
        }

        /* Expired message*/
        #countdown-expired h2 {
            font-family: var(--font-heading);
            color: var(--white);
            margin: 2rem 0 3rem 0;
        }

        .dot.active {
            background-color: var(--white);
        }


        /* Responsive adjustments for smaller screens */
        @media (max-width: 600px) {
            #countdown-container {
                gap: 1rem;
                padding: 1rem 1.5rem;
            }
            .countdown-number {
                font-size: 2rem;
            }
            .countdown-label {
                font-size: 0.7rem;
            }
        }
        
        @keyframes fadeInText {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .ghost-button {
            border: 1px solid var(--white);
            color: var(--white);
            padding: 12px 30px;
            text-decoration: none;
            font-family: var(--font-heading);
            font-weight: 400;
            letter-spacing: 1px;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInText 1.5s ease-out 1.1s both;
        }

        .ghost-button:hover {
            background-color: var(--smoky-red);
            border-color: var(--smoky-red);
            color: var(--white);
            box-shadow: 0 0 15px var(--smoky-red);
        }

        /* GLASS SECTIONS */
        .content-section {
            padding: 6rem 0;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .content-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .glass-panel {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 3rem;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }

        .glass-panel h2 {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--white);
        }

        .details-grid {
            display: grid;
            gap: 2rem;

            /* Mobile First: Default to a single column */
            grid-template-columns: 1fr;
        }

            /* Medium Screens: At 600px wide, switch to two columns */
        @media (min-width: 600px) {
            .details-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

            /* Wide Screens: At 960px wide, switch to the 3-column maximum */
        @media (min-width: 960px) {
            .details-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .detail-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 200px;
            text-align: center;
            z-index: 1;
        }

        .detail-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-size: cover;
            background-position: center;
            background-color: rgba(18, 18, 18, 0.8);
            background-blend-mode: multiply;
            z-index: -1;
            transition: transform 0.4s ease;
        }

        .detail-item:hover::before {
            transform: scale(1.05);
        }

        .detail-item h3 {
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-size: 1.5rem;
        }

        .detail-item p {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

        .detail-item .detail-button {
            margin-top: auto;
        }

        /* Tidsplan */
        .schedule-controls {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        /* Responsive Tab Container */
        .schedule-tabs-container {
            width: 100%;
            position: relative;
        }

        .schedule-tabs {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
            gap: 10px;
        }

        .tab-btn {
            padding: 10px 20px;
            font-family: var(--font-heading);
            font-size: 1rem;
            color: var(--white);
            background: transparent;
            border: 1px solid var(--glass-border);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0; /* Prevent buttons from shrinking */
        }
        .tab-btn:hover {
            background-color: var(--smoky-red);
            border-color: var(--smoky-red);
        }
        .tab-btn.active {
            background-color: var(--smoky-red);
            border-color: var(--smoky-red);
            box-shadow: 0 0 10px var(--smoky-red);
        }

        /* Dropdown for small screens */
        .schedule-tabs-dropdown {
            display: none;
            width: 100%;
            padding: 12px 15px;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--glass-border);
            border-radius: 5px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23EAEAEA%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.3-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: .8em;
            cursor: pointer;
        }

        .schedule-tabs-dropdown option {
            background: var(--dark-gray);
            color: var(--white);
        }

        .schedule-tabs .tab-btn.is-expandable {
            max-width: 0;
            padding-left: 0;
            padding-right: 0;
            margin-left: 0;
            margin-right: 0;
            opacity: 0;
            overflow: hidden;
            white-space: nowrap;
            border-color: transparent;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        /* Reveal hidden buttons when hover over */
        .schedule-tabs:hover .tab-btn.is-expandable {
            max-width: 150px;
            padding-left: 20px;
            padding-right: 20px;
            margin-left: 5px;
            margin-right: 5px;
            opacity: 1;
            border-color: var(--glass-border);
        }

        .schedule-filters {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .filter-btn {
            padding: 5px 15px;
            font-size: 0.8rem;
            color: var(--white);
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Hide all filter buttons EXCEPT the first one ("Alt") */
        .schedule-filters .filter-btn:not(:first-child) {
            max-width: 0;
            padding-left: 0;
            padding-right: 0;
            margin-left: 0;
            margin-right: 0;
            opacity: 0;
            overflow: hidden;
            white-space: nowrap;
            border: none;
            transition: all 0.4s ease-in-out;
        }

        /* Reveal on hover */
        .schedule-filters:hover .filter-btn:not(:first-child) {
            max-width: 120px;
            padding: 5px 15px;
            margin-left: 5px;
            opacity: 1;
        }

        .filter-btn:hover {
            background-color: var(--smoky-red);
        }
        .filter-btn.active {
            background-color: var(--smoky-red);
            box-shadow: 0 0 5px var(--smoky-red);
        }

        .timeline-content-area .timeline-container {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .timeline-content-area .timeline-container.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .timeline-container {
            position: relative;
            max-width: 700px;
            margin: 2rem auto;
        }
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: var(--smoky-red);
            box-shadow: 0 0 10px var(--smoky-red);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        /* Day Separator for "All Days" View */
        .day-separator {
            position: relative;
            z-index: 2;
            padding: 10px 0;
            margin: 20px auto;
            text-align: center;
            width: 150px;
        }
        .day-separator span {
            background-color: var(--dark-gray);
            color: var(--smoky-red);
            padding: 5px 20px;
            border: 1px solid var(--smoky-red);
            border-radius: 20px;
            font-family: var(--font-heading);
            font-weight: 600;
            box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .timeline-item.hidden {
            opacity: 0;
            transform: scale(0.9);
            padding-top: 0;
            padding-bottom: 0;
            margin-top: -10px;
            margin-bottom: -10px;
            pointer-events: none;
        }
        .timeline-marker {
            position: absolute;
            top: 20px;
            right: -18px;
            height: 36px;
            width: 36px;
            background-image: url('/include/img/warpzone_badge_150px.svg');
            background-size: 70%;
            background-repeat: no-repeat;
            background-position: center;
            background-color: var(--dark-gray);
            border-radius: 50%;
            z-index: 1;
            border: 2px solid var(--smoky-red);
            transition: all 0.3s ease;
        }
        .timeline-item:hover .timeline-marker {
            transform: scale(1.1);
            box-shadow: 0 0 15px var(--smoky-red);
        }
        .timeline-item:nth-child(odd) { left: 0; }
        .timeline-item:nth-child(even) { left: 50%; }
        .timeline-item:nth-child(even) .timeline-marker { left: -18px; }
        .timeline-content {
            padding: 20px;
            background: rgba(0,0,0,0.2);
            border-radius: 8px;
            position: relative;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .timeline-content h3 {
            color: var(--white);
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1.2rem;
        }
        .timeline-content p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        .timeline-content::after {
            content: " ";
            position: absolute;
            top: 22px;
            right: -10px;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid rgba(0,0,0,0.2);
            transition: border-left-color 0.3s ease;
        }
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
            border-left: none;
            border-right: 10px solid rgba(0,0,0,0.2);
            transition: border-right-color 0.3s ease;
        }
        
        .timeline-item.live-event .timeline-content {
            border-color: var(--smoky-red);
            animation: breathingGlow 3s ease-in-out infinite;
        }
        .timeline-item.live-event .timeline-content::after {
            border-left-color: var(--smoky-red);
        }
        .timeline-item.live-event:nth-child(even) .timeline-content::after {
            border-right-color: var(--smoky-red);
        }

        .timeline-item.live-event .timeline-content::before {
            content: 'Pågår Nå';
            position: absolute;
            top: -10px;
            right: 15px;
            background: var(--smoky-red);
            color: var(--white);
            padding: 2px 8px;
            border-radius: 5px;
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 0 10px var(--smoky-red);
        }
        
        @keyframes breathingGlow {
            0% { box-shadow: 0 0 15px var(--smoky-red); }
            50% { box-shadow: 0 0 30px var(--smoky-red); }
            100% { box-shadow: 0 0 15px var(--smoky-red); }
        }

        .live-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 3px;
            background: var(--smoky-red);
            border-radius: 2px;
            z-index: 2;
            display: none;
            transition: top 1s linear;
            animation: flicker 1.5s ease-in-out infinite;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 1; box-shadow: 0 0 15px 2px var(--smoky-red); }
            50% { opacity: 0.8; box-shadow: 0 0 20px 2px var(--smoky-red); }
        }
        
        /* --- STREAM MODAL STYLES --- */
        .timeline-item[data-stream-url] .timeline-content {
            cursor: pointer;
        }
        .timeline-item[data-stream-url]:hover .timeline-content {
            border-color: var(--white);
            box-shadow: 0 0 20px var(--white);
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease-in-out;
        }
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-video-container {
            position: relative;
            width: 90%;
            max-width: 1280px;
            padding-top: 56.25%;
        }
        .modal-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 3rem;
            line-height: 1;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .close-modal:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        /* --- FOOTER --- */
        footer {
            text-align: center;
            padding: 3rem 1rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* STYLES FOR DETAIL BUTTONS */
        .detail-button {
            display: inline-block;
            margin-top: 1rem;
            padding: 8px 20px;
            border: 1px solid var(--smoky-red);
            color: var(--smoky-red);
            background-color: transparent;
            border-radius: 5px;
            text-decoration: none;
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s ease;
        }

        .detail-button:hover {
            background-color: var(--smoky-red);
            color: var(--white);
            box-shadow: 0 0 10px var(--smoky-red);
        }

        /* Visning av undersider */

        /* Make glass panel a positioning container for the close button */
        .glass-panel {
            position: relative;
            transition: all 0.4s ease;
        }

        /* Style for the close button that will be added dynamically */
        .close-section-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2.5rem;
            line-height: 1;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-section-btn:hover {
            opacity: 1;
            transform: scale(1.1) rotate(90deg);
        }

        /* Wrapper for the dynamically loaded content to give it structure */
        .loaded-content-wrapper {
            animation: fadeIn 0.5s ease-out;
        }

        .loaded-content-wrapper h2 {
            font-family: var(--font-heading);
            color: var(--smoky-red);
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            padding-right: 40px; /* Make space for close button */
        }

        .loaded-content-wrapper p, .loaded-content-wrapper li {
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .loaded-content-wrapper a {
            color: var(--smoky-red);
        }

        .loaded-content-wrapper ul {
            list-style-position: inside;
            padding-left: 10px;
        }

        /* RESPONSIVE STYLES */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--dark-gray);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            }
            .nav-links.active { right: 0; }
            .nav-links a { font-size: 1.5rem; }
            .hamburger { display: block; }
            .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
            .hero h1 { font-size: 2.5rem; }
            .hero h6 { font-size: 0.8rem; }
            
            /* Tidsplan on mobile */
            .timeline-container::after { left: 31px; }
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 15px; }
            .timeline-item:nth-child(even) { left: 0%; }
            .timeline-marker, .timeline-item:nth-child(even) .timeline-marker { left: 15px; }
            .timeline-content::after { left: -10px; border-left: none; border-right: 10px solid rgba(0,0,0,0.2); }
            .live-marker { left: 31px; }
            .day-separator { margin-left: 31px; text-align: left; }
        }

        /* Show dropdown on smaller screens */
        @media (max-width: 600px) {
            .schedule-tabs {
                display: none; /* Hide button tabs */
            }
            .schedule-tabs-dropdown {
                display: block; /* Show dropdown */
            }
        }

        /* STYLES FOR "READ MORE" */
            .timeline-details {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.5s ease-out, opacity 0.4s ease-out, margin-top 0.5s ease-out;
                margin-top: 0;
                font-size: 0.85rem;
                color: rgba(255, 255, 255, 0.7);
        }

            .timeline-details.visible {
                max-height: 200px; /* Adjust for very long info details on faq */
                opacity: 1;
                margin-top: 15px;
        }

            .read-more-btn {
                background: none;
                border: none;
                color: var(--smoky-red);
                cursor: pointer;
                font-family: var(--font-heading);
                font-size: 0.8rem;
                padding: 8px 0 0 0;
                margin-top: 5px;
                display: inline-block;
                transition: color 0.3s ease;
         }

            .read-more-btn:hover {
                color: var(--white);
         }

        .article-layout-container {
            display: flex;
            align-items: center;
            gap: 3rem; /* Space between image and text */
        }

        .article-image-column {
            flex: 1; /* Takes up 1 part of the available space */
            min-width: 250px;
        }

        .article-image-column img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .article-text-column {
            flex: 1.5; /* Takes up 1.5 parts of space, making it wider */
        }

        .article-text-column h3 {
            font-size: 2rem;
            color: var(--smoky-red);
            margin-bottom: 1rem;
        }

        .article-text-column p {
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .article-text-column .ghost-button {
            margin-top: 1rem;
        }

        /* Make it responsive for mobile */
        @media (max-width: 768px) {
            .article-layout-container {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
        }

        .article-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 2rem auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        /* FAQ */
        .faq-container {
            margin-top: 4rem;
            border-top: 1px solid var(--glass-border);
            padding-top: 2rem;
        }

        .faq-title {
            text-align: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .faq-item {
            border-bottom: 1px solid var(--glass-border);
        }

        .faq-question {
            background: none;
            border: none;
            width: 100%;
            
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            padding: 1.5rem 0.5rem;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--smoky-red);
        }

        .faq-toggle-icon {
            position: relative;
            width: 16px;
            height: 16px;
            flex-shrink: 0; /* Prevents the icon from shrinking */
            margin-left: 1rem;
        }

        /* Create the '+' icon using pseudo-elements */
        .faq-toggle-icon::before,
        .faq-toggle-icon::after {
            content: '';
            position: absolute;
            background-color: currentColor;
            transition: transform 0.3s ease;
        }

        /* Horizontal bar */
        .faq-toggle-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            margin-top: -1px;
        }

        /* Vertical bar */
        .faq-toggle-icon::after {
            top: 0;
            left: 50%;
            height: 100%;
            width: 2px;
            margin-left: -1px;
        }

        /* When active, transform '+' into '-' by rotating the vertical bar */
        .faq-question.active .faq-toggle-icon::after {
            transform: rotate(90deg);
        }

        .faq-answer {
            /* Hide answer by default with a smooth animation */
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            padding: 0 1rem;
            transition: all 0.4s ease-out;
        }

        .faq-answer.visible {
            max-height: 650px; /* Adjust for long answers */
            opacity: 1;
            padding: 0.5rem 1rem 1.5rem 1rem;
        }

        .faq-answer p {
            line-height: 1.7;
            margin: 0;
        }

        /* Floating Social */
        .social-links-floater {
            position: fixed;
            top: 50%;
            right: 0;
            z-index: 999;
            opacity: 0;
            transform: translateY(-50%) translateX(100%);
            transition: opacity 0.4s ease, transform 0.4s ease;
            
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-right: none;
            border-radius: 10px 0 0 10px; /* Rounded corners on the left side */
        }

        .social-links-floater.visible {
         opacity: 1;
         transform: translateY(-50%) translateX(0); /* Move it into view */
        }

        .social-links-floater ul {
            list-style: none;
            margin: 0;
            padding: 0.5rem; /* Adding a little space inside the container */
        }

        .social-links-floater li {
            margin: 0.5rem 0;
        }

        .social-links-floater a {
            display: block;
            padding: 0.75rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .social-links-floater a:hover {
            background-color: var(--smoky-red);
        }

        .social-links-floater svg {
            display: block;
            width: 24px;
            height: 24px;
            fill: var(--white); /* SVG icon color */
        }

        /* Social Community Section */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .social-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 120px;
            padding: 1.5rem;
            border-radius: 15px;
            text-decoration: none;
            color: var(--white);
            overflow: hidden;
            background-color: #222; /* Fallback color */
            z-index: 1;
        }

        /* This pseudo-element handles the background image and dark overlay */
        .social-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-size: cover;
            background-position: center;
            background-color: rgba(18, 18, 18, 0.65);
            background-blend-mode: multiply;
            z-index: -1;
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        /* Apply the background image from the data-bg attribute */
        .social-card[data-bg]::before {
            background-image: var(--bg-url);
        }

        .social-card:hover::before {
            transform: scale(1.05); /* Zoom effect on hover */
            filter: brightness(1.2); /* Make it slightly brighter on hover */
        }

        .social-icon {
            width: 48px;
            height: 48px;
            fill: var(--white);
            margin-bottom: 1rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        }

        .social-card h3 {
            font-size: 2rem;
            margin: 0;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
        }

        .social-card span {
            font-size: 1rem;
            opacity: 0.8;
            text-shadow: 0 1px 3px rgba(0,0,0,0.7);
        }

        /* Special styling for the Snapchat card */
        .snapchat-card {
            background-color: #FFFC00; /* Snapchat yellow */
        }
        .snapchat-card h3, .snapchat-card span {
            color: #111; /* Dark text for the yellow background */
            text-shadow: none;
        }
        .snapcode-wrapper {
            width: 100px;
            height: 100px;
            margin-bottom: 1rem;
        }
        .snapcode-wrapper img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        /* Slideshow Gallery Section*/
        .slideshow-container {
            position: relative;
            max-width: 900px;
            margin: auto;
            /* 16:9 Aspect Ratio */
            padding-top: 56.25%; 
            border-radius: 15px;
            overflow: hidden; /* Hides parts of images that are outside the container */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0; /* All slides are invisible by default */
            transition: opacity 1.2s ease-in-out; /* The fade transition */
        }

        /* The active slide is visible */
        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            /* This ensures the image covers the whole area without being stretched */
            object-fit: cover; 
        }

        /* Navigation dots container */
        .slide-dots {
            text-align: center;
            padding: 1rem 0;
        }

        .dot {
            display: inline-block;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: var(--glass-border);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot:hover {
            background-color: #777;
        }

        .dot.active {
            background-color: var(--smoky-red);
        }

    @media (max-width: 768px) {

        /* 1. Reduce padding to give content more room */
        .container {
            /* You have `padding: 0 2rem;` currently */
            padding: 0 1rem; /* Reduces side padding by half */
        }

        .glass-panel {
            /* You have `padding: 3rem;` currently */
            padding: 2rem 1.5rem; /* Reduces vertical and especially horizontal padding */
        }
        
        /* 2. Slightly reduce font sizes for better balance */
        body {
            /* This sets a new base font size for mobile */
            font-size: 0.95rem; 
        }

        .hero h1 {
            /* You have 2.5rem, which is good. No change needed here unless desired. */
            font-size: 2.5rem; 
        }

        .glass-panel h2 {
            /* Scale down headings to maintain hierarchy with the new body font size */
            font-size: 2rem;
        }
        
        /* 3. IMPORTANT: Improve readability with more line-height */
        .article-text-column p, .faq-answer p, .loaded-content-wrapper p {
            /* More space between lines makes shorter mobile text easier to read */
            line-height: 1.6; 
        }
    }

/* =================================== */
/* Footer                              */
/* =================================== */
    footer {
        text-align: center;
        padding: 4rem 2rem;
        border-top: 1px solid var(--glass-border);
        background: rgba(18, 18, 18, 0.3);
    }

    .footer-content {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-joke {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        font-style: italic;
        letter-spacing: 0.5px;
    }

    .footer-separator {
        width: 80px;
        height: 1px;
        background: var(--smoky-red);
        box-shadow: 0 0 10px var(--smoky-red);
        margin: 0.5rem 0;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }
    .footer-links {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    gap: 1.5rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--smoky-red);
    }

/* =================================== */
/* Sponsor                              */
/* =================================== */

.sponsor-tier-title {
    text-align: center;
    color: var(--smoky-red);
    font-family: var(--font-heading);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-grid.main-sponsor {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 0 auto;
}

.sponsor-logo a {
    height: 110px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sponsor-logo img {

    max-width: 100%;
    max-height: 100%;
    filter: grayscale(80%) brightness(0.9);
    transition: filter 0.3s ease;
}

.sponsor-logo a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.sponsor-logo a:hover img {
    filter: grayscale(0%) brightness(1);
}

.become-sponsor-section {
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.become-sponsor-section .faq-answer a {
    color: var(--smoky-red);
    text-decoration: none;
    font-weight: bold;
}
.become-sponsor-section .faq-answer a:hover {
    text-decoration: underline;
}