/* ============================================
   THE SNOOZLES - BURNING CEREMONY STYLES
   ============================================ */

:root {
    /* Colors */
    --jungle-dark: #052b24;
    --jungle-medium: #0b4a3f;
    --jungle-light: #0d5d4f;
    --blue-flame: #3bd4ff;
    --blue-flame-glow: rgba(59, 212, 255, 0.3);
    --fire-gold: #ffb347;
    --fire-amber: #ff9500;
    --jungle-green: #4ade80;
    --jungle-green-glow: rgba(74, 222, 128, 0.3);
    --purple-mystic: #a855f7;
    --purple-mystic-glow: rgba(168, 85, 247, 0.3);
    --orange-warm: #fb923c;
    --orange-warm-glow: rgba(251, 146, 60, 0.3);
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Typography */
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 2rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px var(--blue-flame-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--jungle-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 43, 36, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.main-nav.scrolled {
    background: rgba(5, 43, 36, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.8));
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--jungle-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--jungle-green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */

.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--jungle-dark) 0%, var(--jungle-medium) 50%, var(--jungle-dark) 100%);
}

.divider-flame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--blue-flame) 20%, 
        var(--fire-gold) 50%, 
        var(--blue-flame) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(59, 212, 255, 0.6);
    animation: flame-flicker 2s ease-in-out infinite;
}

@keyframes flame-flicker {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1.1);
    }
}

.divider-flame::before,
.divider-flame::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--blue-flame) 0%, transparent 70%);
    opacity: 0.5;
    animation: float-side 3s ease-in-out infinite;
}

.divider-flame::before {
    left: -50px;
    animation-delay: 0s;
}

.divider-flame::after {
    right: -50px;
    animation-delay: 1.5s;
}

@keyframes float-side {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--section-padding);
    padding-top: calc(5rem + 80px);
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blue-flame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-flame-glow) 0%, transparent 70%);
    animation: pulse-flame 3s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes pulse-flame {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.jungle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(5, 43, 36, 0.9) 0%, rgba(5, 43, 36, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,80 Q30,60 40,70 T60,65 T80,75" stroke="%230b4a3f" stroke-width="0.5" fill="none" opacity="0.3"/></svg>');
    background-size: cover;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fade-in-up 1s ease-out;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-character {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 212, 255, 0.5));
    animation: float-gentle 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--blue-flame) 50%, var(--fire-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(59, 212, 255, 0.3);
    line-height: 1.2;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.4));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.hero-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-flame) 0%, #2ba8cc 100%);
    color: var(--jungle-dark);
    box-shadow: 0 4px 20px rgba(59, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--blue-flame);
    border: 2px solid var(--blue-flame);
}

.btn-secondary:hover {
    background: var(--blue-flame);
    color: var(--jungle-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* ============================================
   SECTION 2: LORE
   ============================================ */

.lore {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--jungle-dark) 0%, var(--jungle-medium) 100%);
    position: relative;
    overflow: hidden;
}

.lore::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-gentle 8s ease-in-out infinite;
}

.lore-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.lore-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lore-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(59, 212, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: fade-in-up 1s ease-out 0.3s both;
}

.lore-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.lore-icon.heart-tree {
    background: rgba(11, 74, 63, 0.6);
    border: 2px solid var(--fire-gold);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lore-icon.blue-flame-icon {
    background: rgba(59, 212, 255, 0.2);
    border: 2px solid var(--blue-flame);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
    box-shadow: 0 0 30px var(--blue-flame-glow);
}

.lore-icon.sec-snake {
    background: rgba(5, 43, 36, 0.8);
    border: 2px solid var(--text-muted);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.lore-text {
    background: rgba(11, 74, 63, 0.4);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: var(--shadow-soft);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--jungle-green);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--fire-gold), transparent);
    border-radius: 2px;
}

.lore-story {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.lore-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--fire-gold);
    text-align: center;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--fire-gold);
    background: rgba(255, 179, 71, 0.1);
    border-radius: 10px;
}

.lore-ritual-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--blue-flame);
    text-align: center;
    margin: 1.5rem 0;
}

/* ============================================
   SECTION 3: HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: var(--section-padding);
    background: var(--jungle-dark);
}

.how-it-works .section-title {
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(11, 74, 63, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.step-card:nth-child(1) {
    border-color: rgba(255, 179, 71, 0.3);
}

.step-card:nth-child(2) {
    border-color: rgba(168, 85, 247, 0.3);
}

.step-card:nth-child(3) {
    border-color: rgba(59, 212, 255, 0.3);
}

.step-card:nth-child(4) {
    border-color: rgba(251, 146, 60, 0.3);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:nth-child(1):hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--fire-gold);
    box-shadow: 0 15px 50px rgba(255, 179, 71, 0.4);
    background: rgba(11, 74, 63, 0.8);
}

.step-card:nth-child(2):hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--purple-mystic);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.4);
    background: rgba(11, 74, 63, 0.8);
}

.step-card:nth-child(3):hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--blue-flame);
    box-shadow: 0 15px 50px rgba(59, 212, 255, 0.4);
    background: rgba(11, 74, 63, 0.8);
}

.step-card:nth-child(4):hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--orange-warm);
    box-shadow: 0 15px 50px rgba(251, 146, 60, 0.4);
    background: rgba(11, 74, 63, 0.8);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step-card:nth-child(1) h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--fire-gold);
    margin-bottom: 1rem;
}

.step-card:nth-child(2) h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--purple-mystic);
    margin-bottom: 1rem;
}

.step-card:nth-child(3) h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue-flame);
    margin-bottom: 1rem;
}

.step-card:nth-child(4) h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange-warm);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   SECTION 4: SCHEDULE
   ============================================ */

.schedule {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--jungle-medium) 0%, var(--jungle-dark) 100%);
}

.schedule-summary {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.schedule-summary p {
    margin: 0.5rem 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--jungle-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
    opacity: 0;
    animation: fade-in-left 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--jungle-light);
    border: 3px solid var(--jungle-dark);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item[data-status="completed"] .timeline-marker {
    background: var(--blue-flame);
    box-shadow: 0 0 20px var(--blue-flame-glow);
    border-color: var(--blue-flame);
    animation: pulse-marker 2s ease-in-out infinite;
}

.timeline-item[data-status="ongoing"] .timeline-marker {
    background: var(--fire-gold);
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.5);
    border-color: var(--fire-gold);
    animation: pulse-marker 1.5s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.timeline-content {
    background: rgba(11, 74, 63, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(59, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item[data-status="completed"] .timeline-content {
    border-color: var(--blue-flame);
    box-shadow: 0 0 30px rgba(59, 212, 255, 0.2);
}

.timeline-item[data-status="ongoing"] .timeline-content {
    border-color: var(--fire-gold);
    box-shadow: 0 0 30px rgba(255, 179, 71, 0.2);
}

.timeline-item[data-status="upcoming"] .timeline-content {
    opacity: 0.6;
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.week-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue-flame);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(74, 222, 128, 0.2);
    color: var(--jungle-green);
    border: 1px solid var(--jungle-green);
}

.status-ongoing {
    background: rgba(255, 179, 71, 0.2);
    color: var(--fire-gold);
    border: 1px solid var(--fire-gold);
}

.status-upcoming {
    background: rgba(128, 128, 128, 0.2);
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.week-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.week-burn,
.week-date {
    color: var(--text-secondary);
    margin: 0.3rem 0;
}

.tx-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--blue-flame);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tx-link:hover {
    color: var(--fire-gold);
    transform: translateX(5px);
}

/* ============================================
   SECTION 5: CURRENT WEEK
   ============================================ */

.current-week {
    padding: var(--section-padding);
    background: var(--jungle-dark);
}

.current-week-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(11, 74, 63, 0.6);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid var(--blue-flame);
    box-shadow: 0 0 50px rgba(59, 212, 255, 0.3);
    text-align: center;
    animation: fade-in-up 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.current-week-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.current-week-character {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(59, 212, 255, 0.4));
    animation: float-gentle 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.current-week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.current-week-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-flame);
}

.current-week-status {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 179, 71, 0.2);
    color: var(--fire-gold);
    border: 1px solid var(--fire-gold);
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.current-week-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.current-week-burn {
    font-size: 1.2rem;
    color: var(--fire-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.current-week-lore {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.current-week-instructions {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.current-week-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(59, 212, 255, 0.1);
    border-radius: 10px;
    color: var(--blue-flame);
    font-size: 0.95rem;
    border: 1px solid rgba(59, 212, 255, 0.3);
}

/* Countdown Timer */
.countdown-container {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(5, 43, 36, 0.8);
    border-radius: 20px;
    border: 2px solid var(--fire-gold);
    box-shadow: 0 0 30px rgba(255, 179, 71, 0.3);
}

.countdown-label {
    text-align: center;
    font-size: 1.2rem;
    color: var(--fire-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--fire-gold) 0%, var(--orange-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 179, 71, 0.6);
    line-height: 1;
    margin-bottom: 0.3rem;
    animation: pulse-countdown 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.5));
}

@keyframes pulse-countdown {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-label-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--fire-gold);
    opacity: 0.6;
    margin: 0 0.2rem;
    line-height: 1;
}

.countdown-date {
    text-align: center;
    font-size: 1.1rem;
    color: var(--fire-gold);
    font-weight: 600;
    margin-top: 1rem;
    font-family: var(--font-display);
}

/* ============================================
   SECTION 6: TRANSPARENCY
   ============================================ */

.transparency {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--jungle-dark) 0%, var(--jungle-medium) 100%);
}

.transparency-content {
    max-width: 900px;
    margin: 0 auto;
}

.transparency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(11, 74, 63, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(59, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:nth-child(1)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-gold), var(--orange-warm));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--jungle-green), var(--blue-flame));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:nth-child(3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-mystic), var(--blue-flame));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:nth-child(1):hover {
    transform: translateY(-5px);
    border-color: var(--fire-gold);
    box-shadow: 0 10px 30px rgba(255, 179, 71, 0.3);
}

.stat-item:nth-child(2):hover {
    transform: translateY(-5px);
    border-color: var(--jungle-green);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.stat-item:nth-child(3):hover {
    transform: translateY(-5px);
    border-color: var(--purple-mystic);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.stat-item:hover::after {
    transform: scaleX(1);
}

.stat-item:nth-child(1) .stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--fire-gold);
    margin-bottom: 0.5rem;
}

.stat-item:nth-child(2) .stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--jungle-green);
    margin-bottom: 0.5rem;
}

.stat-item:nth-child(3) .stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--purple-mystic);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.transparency-details {
    background: rgba(11, 74, 63, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 212, 255, 0.2);
}

.transparency-details h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--blue-flame);
    margin-bottom: 1.5rem;
}

.transparency-details p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link {
    color: var(--blue-flame);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link:hover {
    color: var(--fire-gold);
    text-decoration: underline;
}

.transparency-list {
    list-style: none;
    padding: 0;
}

.transparency-list li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(59, 212, 255, 0.1);
}

.transparency-list li:last-child {
    border-bottom: none;
}

.disclaimer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.disclaimer small {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   SECTION 7: FAQ
   ============================================ */

.faq {
    padding: var(--section-padding);
    background: var(--jungle-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(11, 74, 63, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(251, 146, 60, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:nth-child(odd) {
    border-color: rgba(251, 146, 60, 0.2);
}

.faq-item:nth-child(even) {
    border-color: rgba(168, 85, 247, 0.2);
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--orange-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jungle-dark);
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.faq-item:nth-child(even)::before {
    background: var(--purple-mystic);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.faq-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.faq-item:nth-child(odd):hover {
    border-color: var(--orange-warm);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 146, 60, 0.3);
    background: rgba(11, 74, 63, 0.8);
}

.faq-item:nth-child(even):hover {
    border-color: var(--purple-mystic);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
    background: rgba(11, 74, 63, 0.8);
}

.faq-item:nth-child(odd) h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--orange-warm);
    margin-bottom: 1rem;
}

.faq-item:nth-child(even) h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--purple-mystic);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   SECTION 8: FOOTER
   ============================================ */

.footer {
    padding: 3rem 2rem 2rem;
    background: var(--jungle-medium);
    border-top: 1px solid rgba(59, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(59, 212, 255, 0.3));
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(59, 212, 255, 0.5));
    transform: scale(1.05);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--blue-flame);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-style: italic;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--blue-flame);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-flame);
    transform: translateX(5px);
    display: inline-block;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 212, 255, 0.1);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer-disclaimer small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
    
    .nav-logo-img {
        height: 32px;
    }
    
    .hero {
        padding-top: calc(3rem + 70px);
    }
    
    .section-divider {
        height: 60px;
    }
    
    .lore-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lore-visual {
        min-height: 300px;
    }
    
    .lore-main-image {
        max-width: 100%;
    }
    
    .hero-character {
        max-width: 200px;
    }
    
    .current-week-character {
        max-width: 180px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        padding: 1.5rem;
    }
    
    .lore-text {
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .current-week-card {
        padding: 2rem 1.5rem;
    }
    
    .current-week-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .transparency-stats {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lore-quote {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .step-card,
    .faq-item,
    .transparency-details {
        padding: 1.5rem;
    }
    
    .hero-character {
        max-width: 150px;
    }
    
    .current-week-character {
        max-width: 150px;
    }
    
    .footer-logo {
        max-width: 80px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 1rem;
    }
    
    .countdown-date {
        font-size: 0.95rem;
    }
}

/* Image fallback styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hide broken images gracefully */
img[src=""],
img:not([src]) {
    opacity: 0;
    height: 0;
    width: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

