/* ============================================
   REKTPOT - Degen Potluck Raffle Landing Page
   High-contrast, animated, chaos-good vibes
   ============================================ */

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

:root {
    /* Color Palette */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    
    --primary: #ff6b35;
    --primary-glow: rgba(255, 107, 53, 0.5);
    --secondary: #f7931a;
    --accent: #4ecdc4;
    --accent-pink: #ff6b9d;
    
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931a 100%);
    --gradient-accent: linear-gradient(135deg, #4ecdc4 0%, #44a3f7 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    
    /* Typography */
    --font-primary: 'Bungee', 'Press Start 2P', cursive, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-retro: 'Press Start 2P', cursive;
    --font-comic: 'Bangers', cursive;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;
    
    /* Effects */
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 107, 53, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 107, 53, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(247, 147, 26, 0.03) 0px, transparent 1px, transparent 2px, rgba(247, 147, 26, 0.03) 3px),
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 26, 0.08) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

/* Retro scanline effect overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    opacity: 0.3;
}

/* Retro vignette effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   SECTION BACKGROUNDS - RETRO STYLE
   ============================================ */
.how-it-works {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 107, 53, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(247, 147, 26, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(247, 147, 26, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.5;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   FLOATING TICKET PARTICLES BACKGROUND
   ============================================ */
.ticket-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ticket {
    position: absolute;
    font-size: 24px;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* ============================================
   NAVIGATION - REMOVED
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px var(--container-padding);
    z-index: 10;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 107, 53, 0.05) 100px, rgba(255, 107, 53, 0.05) 200px),
        repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(247, 147, 26, 0.05) 100px, rgba(247, 147, 26, 0.05) 200px);
    animation: shift-background 30s linear infinite;
}

@keyframes shift-background {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, -200px 200px;
    }
}

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

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-logo {
    margin-bottom: 32px;
    animation: fade-in-up 0.8s ease-out;
}

.hero-logo img {
    height: 160px;
    width: auto;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-secondary);
    margin-bottom: 32px;
    animation: fade-in-up 0.8s ease-out;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

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

/* Pot Display */
.pot-display {
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 48px;
    animation: fade-in-up 0.8s ease-out 0.6s backwards;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.pot-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255, 215, 0, 0.03) 10px, rgba(255, 215, 0, 0.03) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 215, 0, 0.03) 10px, rgba(255, 215, 0, 0.03) 20px);
    pointer-events: none;
    z-index: 0;
}

.pot-display > * {
    position: relative;
    z-index: 1;
}

.pot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.pot-icon {
    font-size: 64px;
    animation: bounce 2s ease-in-out infinite;
}

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

.pot-stats {
    text-align: left;
}

.pot-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pot-amount {
    font-size: 42px;
    font-weight: 900;
    font-family: var(--font-primary);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: 2px;
}

.pot-tickets {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Countdown Timer */
.countdown-timer {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 900;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 36px;
    color: var(--primary);
}

.time-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.time-separator {
    font-size: 36px;
    color: var(--text-muted);
    padding: 0 4px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fade-in-up 0.8s ease-out 0.8s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0);
}

.btn::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 5px 5px 0 0;
    pointer-events: none;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(180deg, #ff7b45 0%, #ff6b35 50%, #e55a25 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 3px solid #ff8855;
    border-bottom-color: #d54a15;
    border-right-color: #e55520;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ff8b55 0%, #ff7b45 50%, #f56a35 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.4),
        0 12px 20px rgba(255, 107, 53, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn i {
    font-size: 18px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
}

.btn-glow {
    animation: button-glow 2s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 
            0 6px 0 rgba(0, 0, 0, 0.4),
            0 8px 16px rgba(255, 107, 53, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 0 rgba(0, 0, 0, 0.4),
            0 8px 24px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 107, 53, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.1);
    }
}

.btn-secondary {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border: 3px solid #3a3a3a;
    border-bottom-color: #0a0a0a;
    border-right-color: #151515;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-color: #4a4a4a;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.4),
        0 12px 20px rgba(0, 0, 0, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 22px 44px;
    font-size: 18px;
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.5),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.1);
}

.btn-large:active {
    transform: translateY(6px);
    box-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

/* Hero Tagline */
.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
    animation: fade-in-up 0.8s ease-out 1s backwards;
}

.tagline-divider {
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-arrow 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) var(--container-padding);
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    text-align: center;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
    margin-bottom: 60px;
    justify-items: center;
}

.step-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.03) 10px,
        rgba(255, 107, 53, 0.03) 20px
    );
    pointer-events: none;
    z-index: 0;
}

.step-card > * {
    position: relative;
    z-index: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-primary);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    display: none;
}

/* Fun Fact */
.fun-fact {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 26, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.fun-fact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.fun-fact-text {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   PRIZE DISTRIBUTION SECTION
   ============================================ */
.prizes {
    background: var(--bg-darker);
}

.prize-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    justify-items: center;
}

.prize-card {
    background: var(--bg-card);
    border: 3px solid;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.prize-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 40px
    );
    pointer-events: none;
    z-index: 0;
}

.prize-card > * {
    position: relative;
    z-index: 1;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.prize-card:hover::before {
    opacity: 1;
    animation: rotate-gradient 3s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.prize-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.prize-first {
    border-color: var(--gold);
}

.prize-second {
    border-color: var(--silver);
}

.prize-third {
    border-color: var(--bronze);
}

.prize-random {
    border-color: var(--teal);
}

.prize-rank {
    font-size: 64px;
    margin-bottom: 16px;
}

.prize-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.prize-amount {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-primary);
    margin-bottom: 12px;
}

.prize-first .prize-amount {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-second .prize-amount {
    color: var(--silver);
}

.prize-third .prize-amount {
    color: var(--bronze);
}

.prize-random .prize-amount {
    color: var(--teal);
}

.prize-description {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Distribution Breakdown */
.distribution-breakdown {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.breakdown-title {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-primary);
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.breakdown-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto 32px auto;
}

.breakdown-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    max-width: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}
}

.breakdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 8px,
        rgba(255, 107, 53, 0.02) 8px,
        rgba(255, 107, 53, 0.02) 16px
    );
    pointer-events: none;
    z-index: 0;
}

.breakdown-card > * {
    position: relative;
    z-index: 1;
}

.breakdown-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.breakdown-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.breakdown-percent {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.breakdown-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breakdown-detail {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* BTC Wide Card */
.btc-card-wide {
    grid-column: 1 / -1;
    max-width: 100%;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.08) 0%, rgba(255, 107, 53, 0.12) 100%);
    border: 2px solid rgba(247, 147, 26, 0.3);
    text-align: left;
    margin: 0 auto;
    justify-self: center;
}

.btc-card-wide:hover {
    border-color: var(--gold);
}

.btc-card-content {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.btc-card-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
}

.btc-card-left .breakdown-icon {
    font-size: 64px;
    margin: 0;
}

.btc-card-info {
    text-align: left;
}

.btc-card-info .breakdown-percent {
    font-size: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.btc-card-info .breakdown-label {
    margin-bottom: 0;
    color: var(--gold);
}

.btc-card-right {
    flex: 1;
    text-align: left;
}

.btc-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.btc-card-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.btc-mini-stat {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

/* Transparency Note */
.transparency-note {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(68, 163, 247, 0.1) 100%);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.note-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.note-text {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ============================================
   PRIZE DISTRIBUTION SECTION
   ============================================ */
.prizes {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.prizes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 215, 0, 0.02) 0px, transparent 2px, transparent 4px, rgba(255, 215, 0, 0.02) 6px),
        repeating-linear-gradient(90deg, rgba(192, 192, 192, 0.02) 0px, transparent 2px, transparent 4px, rgba(192, 192, 192, 0.02) 6px);
    z-index: 0;
}

.prizes .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   ORIGIN STORY SECTION
   ============================================ */
.origin-story {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.origin-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(68, 163, 247, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(78, 205, 196, 0.03) 35px, rgba(78, 205, 196, 0.03) 70px);
    z-index: 0;
}

.origin-story .container {
    position: relative;
    z-index: 1;
}

.origin-content {
    max-width: 800px;
    margin: 0 auto;
}

.origin-header {
    text-align: center;
    margin-bottom: 48px;
}

.origin-emoji {
    font-size: 56px;
    margin-bottom: 24px;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-paragraph {
    margin-bottom: 24px;
}

.story-paragraph strong {
    color: var(--text-primary);
    font-weight: 600;
}

.story-paragraph em {
    color: var(--primary);
    font-style: italic;
}

.highlight-paragraph {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 26, 0.1) 100%);
    border-left: 4px solid var(--primary);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.story-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.story-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.signature-line {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

/* Origin Values */
.origin-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(78, 205, 196, 0.03) 15px,
        rgba(78, 205, 196, 0.03) 30px
    );
    pointer-events: none;
    z-index: 0;
}

.value-card > * {
    position: relative;
    z-index: 1;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.value-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   BTC MOON SECTION
   ============================================ */
.btc-moon-section {
    background: linear-gradient(180deg, rgba(247, 147, 26, 0.05) 0%, rgba(255, 107, 53, 0.08) 50%, rgba(247, 147, 26, 0.05) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px var(--container-padding);
}

.btc-moon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(247, 147, 26, 0.03) 60px, rgba(247, 147, 26, 0.03) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255, 107, 53, 0.03) 60px, rgba(255, 107, 53, 0.03) 61px);
    z-index: 0;
    opacity: 0.5;
}

.btc-moon-section .container {
    position: relative;
    z-index: 1;
}

.btc-hero {
    text-align: center;
    margin-bottom: 80px;
}

.btc-icon-large {
    font-size: clamp(80px, 12vw, 140px);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    text-shadow: 0 0 40px rgba(247, 147, 26, 0.6);
}

.btc-story {
    max-width: 1100px;
    margin: 0 auto;
}

.btc-paragraph {
    margin-bottom: 60px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.btc-subheading {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.highlight-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.btc-mechanism {
    margin-top: 80px;
    margin-bottom: 80px;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
    justify-items: center;
}

.mechanism-card {
    background: var(--bg-card);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.mechanism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mechanism-card:hover::before {
    transform: scaleX(1);
}

.mechanism-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(247, 147, 26, 0.3);
}

.mechanism-number {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.mechanism-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.mechanism-card h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mechanism-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.btc-cta-box {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 60px 48px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(247, 147, 26, 0.3);
}

.btc-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(247, 147, 26, 0.03) 20px,
        rgba(247, 147, 26, 0.03) 40px
    );
    animation: slide-bg 20s linear infinite;
    z-index: 0;
}

.btc-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.btc-cta-content h3 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btc-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.highlight-text {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 22px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btc-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 48px;
    justify-items: center;
}

.btc-stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btc-transparency {
    background: var(--bg-card);
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 60px;
}

.transparency-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.transparency-content h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.transparency-list li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-secondary);
    padding-left: 0;
}

.moon-quote {
    text-align: center;
    margin-top: 80px;
    padding: 48px 32px;
    border-top: 2px solid rgba(247, 147, 26, 0.2);
    border-bottom: 2px solid rgba(247, 147, 26, 0.2);
}

.quote-text {
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 16px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slide-bg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    text-align: center;
    padding: 120px var(--container-padding);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 107, 53, 0.03) 50px, rgba(255, 107, 53, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(247, 147, 26, 0.03) 50px, rgba(247, 147, 26, 0.03) 51px);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 32px;
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px var(--container-padding) 32px;
}

.footer-top {
    text-align: center;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 120px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: var(--font-secondary);
    color: var(--text-primary);
}

.footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links-row a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-row a:hover {
    color: var(--primary);
}

.link-divider {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .step-arrow {
        display: block;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(38px, 7.5vw, 64px);
    }
    
    .section-title {
        font-size: clamp(30px, 5vw, 44px);
    }
    
    .origin-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Breakdown grid stays 3 columns on tablet */
    .breakdown-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px var(--container-padding);
    }
    
    .hero-logo img {
        height: 100px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .hero-subtitle {
        font-size: clamp(15px, 3vw, 18px);
    }
    
    .pot-display {
        padding: 24px;
    }
    
    .pot-container {
        flex-direction: column;
        text-align: center;
    }
    
    .pot-stats {
        text-align: center;
    }
    
    .pot-amount {
        font-size: 36px;
    }
    
    .time-value {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 28px;
    }
    
    .hero-tagline {
        font-size: 12px;
        gap: 8px;
    }
    
    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .section-subtitle {
        font-size: clamp(14px, 3vw, 16px);
    }
    
    .prize-showcase {
        grid-template-columns: 1fr;
    }
    
    .distribution-breakdown {
        padding: 32px 24px;
    }
    
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    /* BTC Wide Card Mobile */
    .btc-card-wide {
        padding: 32px 24px;
    }
    
    .btc-card-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .btc-card-left {
        flex-direction: column;
        gap: 16px;
    }
    
    .btc-card-left .breakdown-icon {
        font-size: 56px;
    }
    
    .btc-card-info {
        text-align: center;
    }
    
    .btc-card-stats {
        justify-content: center;
        gap: 16px;
    }
    
    .btc-mini-stat {
        font-size: 12px;
    }
    
    .origin-values {
        grid-template-columns: 1fr;
    }
    
    /* BTC Section Mobile */
    .btc-moon-section {
        padding: 60px var(--container-padding);
    }
    
    .btc-icon-large {
        font-size: 80px;
    }
    
    .highlight-box {
        padding: 32px 24px;
    }
    
    .mechanism-grid {
        grid-template-columns: 1fr;
    }
    
    .btc-cta-box {
        padding: 40px 24px;
    }
    
    .btc-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .btc-transparency {
        flex-direction: column;
        gap: 20px;
        padding: 32px 24px;
        text-align: center;
    }
    
    .transparency-icon {
        font-size: 40px;
    }
    
    .moon-quote {
        padding: 32px 20px;
    }
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-logo img {
        height: 80px;
    }
    
    .footer-nav {
        gap: 24px;
    }
    
    .footer-links-row {
        gap: 8px;
        font-size: 13px;
    }
    
    .footer-section h4 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
        --container-padding: 16px;
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 14px;
        gap: 8px;
    }
    
    .badge-icon {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: clamp(32px, 9vw, 48px);
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .pot-amount {
        font-size: 32px;
    }
    
    .pot-icon {
        font-size: 48px;
    }
    
    .time-value {
        font-size: 28px;
    }
    
    .prize-amount {
        font-size: 38px;
    }
    
    .breakdown-percent {
        font-size: 28px;
    }
    
    .section-title {
        font-size: clamp(26px, 7vw, 36px);
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .hero-tagline {
        font-size: 11px;
    }
    
    .tagline-item {
        white-space: nowrap;
    }
    
    .btn-large {
        padding: 20px 32px;
        font-size: 17px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .link-divider {
        display: none;
    }
    
    .footer-links-row a {
        font-size: 13px;
    }
}