/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --bg-deep: #0f0518;
    --primary-purple: #4a0e78;
    --accent-gold: #ffd700;
    --accent-silver: #e0e0e0;
    --accent-bronze: #cd7f32;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --glass-surface: rgba(40, 10, 80, 0.25);
    --glass-border: rgba(255, 255, 255, 0.1);
    --poster-title-gradient: linear-gradient(180deg, #ffffff 20%, #a2d9ff 100%);
    --nav-height: 80px;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
======================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* ========================================
   AMBIENT BACKGROUND ANIMATION
======================================== */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #090212;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-liquid 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #5b2a86 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3672d1 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-duration: 30s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #bc13fe 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-duration: 20s;
}

@keyframes float-liquid {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Particle Overlay */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 600px;
    }
}

/* ========================================
   NAVIGATION BAR
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: rgba(15, 5, 24, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(15, 5, 24, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-logo span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: "Orbitron", sans-serif;
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-btn {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.7);
    color: #ffd700;
    padding: 8px 25px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.nav-btn:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffed4e;
    color: #ffed4e;
}

.no-drag {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

h1,
h2,
h3 {
    font-family: "Orbitron", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-sreenidhi {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: -5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--nav-height);
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 25%, #a2d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -3px;
    filter: drop-shadow(0 0 20px rgba(162, 217, 255, 0.4));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-label {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    background: linear-gradient(90deg, #2e0249 0%, #4a0e78 50%, #2e0249 100%);
    border: 1px solid rgba(160, 32, 240, 0.3);
    color: #fff;
    padding: 10px 40px;
    border-radius: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(74, 14, 120, 0.6);
}

.timer {
    font-family: "Orbitron", monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

/* ========================================
   PRIZE SECTION (Transparent Cards)
======================================== */
.prizes-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.prize-card {
    position: relative;
    width: 300px;
    height: 200px;

    /* Fully Transparent Background */
    background: transparent;
    /* Subtle inset glow to define edges */
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
    color: white;
}

.prize-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Text Styling */
.prize-rank {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.prize-label {
    font-family: "Orbitron", sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prize-amount {
    font-family: "Orbitron", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

/* Color Variants (Borders & Text) */
.prize-card.gold {
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
    z-index: 2;
}

.prize-card.gold:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Gold Glow on Text */
.prize-card.gold .prize-rank,
.prize-card.gold .prize-amount {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.prize-card.silver {
    border-color: rgba(224, 224, 224, 0.5);
}

.prize-card.silver .prize-rank {
    color: #e0e0e0;
    text-shadow: 0 0 15px rgba(224, 224, 224, 0.3);
}

.prize-card.bronze {
    border-color: rgba(205, 127, 50, 0.5);
}

.prize-card.bronze .prize-rank {
    color: #cd7f32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

/* Floating Icons with PNG Images */
.floater {
    position: absolute;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

.trophy-icon {
    top: -60px;
    left: -40px;
    width: 140px;
    height: auto;
    transform: rotate(-15deg);
    --r: -15deg;
}

.medal-icon {
    bottom: -40px;
    right: -20px;
    width: 110px;
    height: auto;
    transform: rotate(10deg);
    --r: 10deg;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-12px) rotate(var(--r, 0deg));
    }
}

/* ========================================
   DOMAINS & TIMELINE SECTIONS
======================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    padding: 30px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.info-card h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.time-cell {
    width: 100px;
    font-weight: bold;
    color: var(--accent-gold);
    font-family: "Orbitron", sans-serif;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(40, 10, 80, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(40, 10, 80, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}

/* ========================================
   DOMAIN RESOURCES (Collapsible)
======================================== */
.domain-resource-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(40, 10, 80, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.domain-resource-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(40, 10, 80, 0.25);
}

.domain-resource-btn {
    width: 100%;
    padding: 18px 25px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.domain-resource-btn:hover {
    color: var(--accent-gold);
}

.domain-resource-btn span:first-child {
    flex: 1;
}

.domain-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.domain-resource-item.active .domain-icon {
    transform: rotate(45deg);
}

.domain-resource-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 25px;
}

.domain-resource-item.active .domain-resource-content {
    max-height: 400px;
    padding: 0 25px 20px 25px;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(40, 10, 80, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(40, 10, 80, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: "Outfit", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}

/* ========================================
   VERTICAL TIMELINE SECTION (Centered)
======================================== */
.day-header {
    color: var(--accent-gold);
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-purple);
    margin-left: max(20px, 10%);
    /* Indent */
}

/* Container */
.horizontal-timeline-container {
    padding: 0;
    width: 100%;
}

.timeline-track {
    position: relative;
    width: 100%;
    margin: 40px auto;
    display: block;
    /* Vertical block layout */
}

/* Central Line */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-2px);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    z-index: 2;
    clear: both;
    /* Ensure they stack */
}

/* Odd Items (Left) */
.timeline-item:nth-child(odd) {
    text-align: right;
    float: left;
    padding-right: 40px;
}

/* Even Items (Right) */
.timeline-item:nth-child(even) {
    text-align: left;
    float: right;
    padding-left: 40px;
}

/* The Dot on the Line */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    /* Align with top of content box */
    width: 20px;
    height: 20px;
    background: var(--bg-deep);
    border: 3px solid var(--text-muted);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Dot Position for Left Items */
.timeline-item:nth-child(odd)::after {
    right: -10px;
    /* Centered on the line */
}

/* Dot Position for Right Items */
.timeline-item:nth-child(even)::after {
    left: -10px;
    /* Centered on the line */
}

/* Content Box Styling */
.event-content-wrapper {
    background: rgba(40, 10, 80, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

/* Hover Effect */
.event-content-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(40, 10, 80, 0.6);
}

.time-marker {
    font-family: "Orbitron", sans-serif;
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
    display: block;
}

.event-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.event-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Live State */
.timeline-item.active::after {
    border-color: #00ff00;
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00;
    transform: scale(1.3);
}

.timeline-item.active .event-content-wrapper {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.timeline-item.active .time-marker {
    color: #00ff00;
}

/* Live Badge via pseudo-element on wrapper */
.timeline-item.active .event-content-wrapper::before {
    content: 'LIVE ●';
    position: absolute;
    top: -10px;
    right: 10px;
    background: #000;
    color: #00ff00;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #00ff00;
    animation: blink 1.5s infinite;
}

/* Past State */
.timeline-item.past .event-content-wrapper {
    opacity: 0.6;
    filter: grayscale(0.5);
}

.timeline-item.past::after {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    opacity: 0.6;
}

/* Clearfix */
.timeline-track::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: Switch to simple vertical list on mobile/tablet */
@media (max-width: 768px) {
    .timeline-track::before {
        left: 20px;
        /* Line moves to left */
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        float: none;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .timeline-item::after {
        left: 11px !important;
        right: auto !important;
    }

    .day-header {
        margin-left: 20px;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}





/* ========================================
   FOOTER
======================================== */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background: rgba(15, 5, 24, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .prizes-container {
        flex-direction: column;
        gap: 60px;
        padding: 30px 20px;
    }

    .prize-card.gold {
        transform: scale(1);
        order: -1;
    }

    .prize-card.gold:hover {
        transform: translateY(-5px);
    }

    .section-title {
        font-size: 2rem;
    }

    .domains-table {
        font-size: 0.9rem;
    }

    .domains-table th,
    .domains-table td {
        padding: 10px !important;
    }

    .domains-table th:first-child,
    .domains-table td:first-child {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}