:root {
    --dark-gray: #121212;
    --white: #EAEAEA;
    --smoky-red: #ee0f6c;
    --retro-blue: #00f2ff;
    --glass-bg: rgba(22, 22, 22, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-pixel: 'VT323', monospace;
    --font-8bit: 'Press Start 2P', cursive;
    --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;
}

.particle.square { border-radius: 0; border: 1px solid var(--white); background: transparent; }
.particle.pixel { border-radius: 0; background: var(--white); width: 4px !important; height: 4px !important; }

.particle.plus {
    background: var(--white);
    clip-path: polygon(33% 0%, 66% 0%, 66% 33%, 100% 33%, 100% 66%, 66% 66%, 66% 100%, 33% 100%, 33% 66%, 0% 66%, 0% 33%, 33% 33%);
}

.particle.triangle {
    background: transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--white);
}

.particle.glitch-red {
    border-color: var(--smoky-red) !important;
    background: var(--smoky-red) !important;
    box-shadow: 0 0 10px var(--smoky-red);
    animation: rise 12s infinite linear, flicker 0.5s infinite;
}

@keyframes flicker {
    0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; }
}

#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)); }
}

h1, .countdown-number {
    font-family: var(--font-8bit);
    text-transform: uppercase;
    color: var(--smoky-red);
    text-shadow: 4px 4px 0px #000;
}

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

h2 {
    font-family: var(--font-8bit);
    font-size: 1.5rem !important;
    letter-spacing: -1px;
}

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

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

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

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

.ghost-button {
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    border: 3px solid var(--white);
    border-radius: 0;
    background: transparent;
    position: relative;
    image-rendering: pixelated;
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInText 1.5s ease-out 1.1s both;
}

.ghost-button:hover {
    background: var(--white);
    color: var(--dark-gray);
    box-shadow: 5px 5px 0px var(--smoky-red);
    transform: translate(-2px, -2px);
}

.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: 3px solid var(--white);
    border-radius: 0;
    padding: 3rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 8px 8px 0px 0px rgba(255, 0, 85, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.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;
    grid-template-columns: 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);
}

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

.schedule-tabs-container {
    width: 100%;
    position: relative;
}

.schedule-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    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;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--smoky-red);
    border-color: var(--smoky-red);
}

.tab-btn.active {
    box-shadow: 0 0 10px var(--smoky-red);
}

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

.filter-btn:hover, .filter-btn.active {
    background-color: var(--smoky-red);
}

.filter-btn.active {
    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 {
    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;
    margin-top: -30px;
}

.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 {
    position: relative;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    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);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    border-left: none;
    border-right: 10px solid rgba(0,0,0,0.2);
}

.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%, 100% { box-shadow: 0 0 15px var(--smoky-red); }
    50% { box-shadow: 0 0 30px 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;
}

.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: all 0.2s ease;
}

.close-modal:hover { opacity: 1; transform: scale(1.1); }

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

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

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

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

.timeline-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    margin-top: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-details.visible { max-height: 200px; 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; }
.article-image-column { flex: 1; 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; }
.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; }

.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-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; margin-left: 1rem; }
.faq-toggle-icon::before, .faq-toggle-icon::after { content: ''; position: absolute; background-color: currentColor; transition: transform 0.3s ease; }
.faq-toggle-icon::before { top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px; }
.faq-toggle-icon::after { top: 0; left: 50%; height: 100%; width: 2px; margin-left: -1px; }
.faq-question.active .faq-toggle-icon::after { transform: rotate(90deg); }

.faq-answer { max-height: 0; opacity: 0; overflow: hidden; padding: 0 1rem; transition: all 0.4s ease-out; }
.faq-answer.visible { max-height: 650px; opacity: 1; padding: 0.5rem 1rem 1.5rem 1rem; }
.faq-answer p { line-height: 1.7; margin: 0; }

.social-links-floater {
    position: fixed; top: 50%; right: 0; z-index: 999; opacity: 0;
    transform: translateY(-50%) translateX(100%); transition: all 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;
}

.social-links-floater.visible { opacity: 1; transform: translateY(-50%) translateX(0); }
.social-links-floater ul { list-style: none; padding: 0.5rem; }
.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); }

.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; z-index: 1;
}

.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: all 0.4s ease;
}

.social-card[data-bg]::before { background-image: var(--bg-url); }
.social-card:hover::before { transform: scale(1.05); filter: brightness(1.2); }

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

.snapchat-card { background-color: #FFFC00; }
.snapchat-card h3, .snapchat-card span { color: #111; text-shadow: none; }
.snapcode-wrapper { width: 100px; height: 100px; margin-bottom: 1rem; }
.snapcode-wrapper img { width: 100%; height: 100%; border-radius: 8px; }

.slideshow-container {
    position: relative; max-width: 900px; margin: auto; padding-top: 56.25%; 
    border-radius: 15px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.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.active { background-color: var(--smoky-red); }

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

#full-schedule-container { margin-top: 3rem; }
.day-group { margin-bottom: 3.5rem; }
.day-heading { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--smoky-red); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--glass-border); }

.event-card { display: flex; gap: 1.5rem; padding: 1.25rem 0.5rem; border-bottom: 1px solid var(--glass-border); transition: background-color 0.3s ease; }
.event-card:hover { background-color: rgba(255, 255, 255, 0.05); }
.event-card .event-time { font-family: 'Orbitron', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.event-card .event-info { flex-grow: 1; }
.event-card .event-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.25rem; }
.event-card .event-details { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

.event-category-tag {
    position: absolute; top: 15px; right: 15px; padding: 3px 10px; font-size: 0.6rem; 
    display: inline-block; font-family: var(--font-heading); font-weight: 600;
    border-radius: 15px; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2;
}

.event-category-tag[data-category="scenen"] { background-color: rgba(85, 211, 47, 0.15); color: var(--smoky-red); border: 1px solid rgba(132, 211, 42, 0.5); }
.event-category-tag[data-category="info"] { background-color: rgba(70, 90, 126, 0.15); color: #82aaff; border: 1px solid rgba(70, 90, 126, 0.5); }
.event-category-tag[data-category="teknisk"] { background-color: rgba(255, 255, 255, 0.1); color: #aaa; border: 1px solid rgba(255, 255, 255, 0.2); }
.event-category-tag[data-category="turnering"] { background-color: rgba(255, 165, 0, 0.15); color: #ffab40; border: 1px solid rgba(255, 165, 0, 0.5); }
.event-category-tag[data-category="sosialt"] { background-color: rgba(29, 241, 142, 0.15); color: #b32ce9; border: 1px solid rgba(255, 165, 0, 0.5); }

@media (min-width: 600px) {
    .details-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .details-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .glass-panel { padding: 2rem 1.5rem; }
    body { font-size: 0.95rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero h6 { font-size: 0.8rem; }
    .glass-panel h2 { font-size: 2rem; }
    .article-text-column p, .faq-answer p, .loaded-content-wrapper p { line-height: 1.6; }
    .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); }
    .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; }
    .article-layout-container { flex-direction: column; text-align: center; gap: 2rem; }
}

@media (max-width: 600px) {
    #countdown-container { gap: 1rem; padding: 1rem 1.5rem; }
    .countdown-number { font-size: 2rem; }
    .countdown-label { font-size: 0.7rem; }
    .schedule-tabs { display: none; }
    .schedule-tabs-dropdown { display: block; }
    .event-card { flex-direction: column; gap: 0.5rem; }
    .day-heading { font-size: 1.5rem; }
}