/* ===================================
   DESTROY ALL OPPS - CSS
   Battle Victory Screen Aesthetic
   =================================== */

:root {
    /* Core Colors - Command Theme */
    --bg-dark: #0D0D1A;
    --bg-darker: #080810;
    --bg-card: #14141F;
    --bg-card-hover: #1a1a2a;

    /* Neon Palette - Command Theme */
    --neon-cyan: #00FFFF;
    --neon-orange: #FF8000;
    --neon-green: #33FF66;
    --neon-pink: #FF3399;
    --neon-purple: #B34DFF;
    --neon-red: #FF334D;
    --neon-yellow: #FFCC00;

    /* Primary = Cyan (app primary) */
    --accent-primary: #00FFFF;
    --accent-secondary: #FF8000;
    --accent-tertiary: #33FF66;
    --accent-glow: rgba(0, 255, 255, 0.4);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Effects */
    --border-subtle: #2A2A3D;
    --border-accent: rgba(0, 255, 255, 0.3);
    --border-glow: #00FFFF;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shapes - Command Theme */
    --radius-card: 8px;
    --radius-badge: 4px;
    --radius-button: 8px;
    --border-width: 1px;
    --glow-border-width: 2px;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

/* Ember Canvas */
#ember-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

main {
    position: relative;
    z-index: 1;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 69, 0, 0.08) 0%,
        transparent 50%
    );
    animation: pulse-glow 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Badge */
.badge-container {
    margin-bottom: var(--space-lg);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 69, 0, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 69, 0, 0.4); }
}

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

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

/* Hero Tagline (visual impact, not H1) */
.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

.tagline-line {
    display: block;
    animation: slide-up 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.tagline-line:nth-child(1) { animation-delay: 0.1s; }
.tagline-line:nth-child(2) { animation-delay: 0.2s; }

.tagline-line.accent {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px var(--accent-glow);
}

/* Hero Title (H1 - SEO optimized) */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--accent-glow);
    margin-bottom: var(--space-lg);
    animation: fade-in 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes slide-up {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    animation: fade-in 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fade-in {
    to { opacity: 1; }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-subtle);
    border-radius: var(--radius-card);
    animation: fade-in 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-cyan);
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px var(--accent-glow);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Waitlist Form */
.waitlist-form {
    animation: fade-in 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

.form-group {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-glow);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: var(--space-md) var(--space-lg);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--border-subtle);
    border: none;
    padding: var(--space-md) var(--space-lg);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: not-allowed;
    transition: all 0.4s ease;
    white-space: nowrap;
    border-radius: var(--radius-button);
    opacity: 0.6;
}

.submit-btn.verified {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    color: var(--bg-dark);
    cursor: pointer;
    opacity: 1;
    animation: btnActivate 0.5s ease;
}

@keyframes btnActivate {
    0% { transform: scale(1); box-shadow: none; }
    50% { transform: scale(1.05); box-shadow: 0 0 30px var(--accent-glow); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
}

.submit-btn.verified:hover {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    transform: translateX(2px);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Turnstile widget */
.cf-turnstile {
    margin-top: var(--space-sm);
    display: flex;
    justify-content: center;
}

/* Success Message */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    border-radius: 12px;
    animation: success-pop 0.5s ease-out;
}

.success-message.show {
    display: flex;
}

@keyframes success-pop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    color: var(--accent-primary);
}

.success-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

/* Meme Frame */
.meme-frame {
    margin-bottom: var(--space-md);
    animation: fade-in 0.6s ease-out forwards;
    opacity: 0;
}

.meme-gif {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    border: var(--glow-border-width) solid var(--neon-cyan);
    box-shadow:
        0 0 20px var(--accent-glow),
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    animation: meme-glow 3s ease-in-out infinite;
}

@keyframes meme-glow {
    0%, 100% {
        box-shadow:
            0 0 20px var(--accent-glow),
            0 0 40px rgba(0, 255, 255, 0.2);
        border-color: var(--neon-cyan);
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 128, 0, 0.4),
            0 0 60px rgba(255, 128, 0, 0.2);
        border-color: var(--neon-orange);
    }
}

/* Hero Quote */
.hero-quote {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-md);
    animation: fade-in 0.8s ease-out 0.05s forwards;
    opacity: 0;
}

/* ===================================
   BATTLE PROGRESSION TIMELINE
   =================================== */

.battle-timeline {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-darker);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 0.02em;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

/* Vertical Track */
.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transform: translateX(-50%);
    border-radius: 4px;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-green));
    box-shadow: 0 0 20px var(--accent-glow);
    transition: height 0.8s ease-out;
    border-radius: 4px;
}

/* Stage Styling */
.timeline-stage {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.timeline-stage.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-stage:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.timeline-stage:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.timeline-stage:nth-child(odd) .stage-content {
    text-align: right;
}

.timeline-stage:nth-child(even) .stage-content {
    text-align: left;
}

/* Node Styling */
.stage-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.node-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ring-pulse 2s ease-in-out infinite;
}

.timeline-stage.visible .node-ring {
    opacity: 1;
}

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

.node-core {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: var(--glow-border-width) solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all 0.4s ease;
    box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-stage:hover .node-core {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--accent-glow);
}

/* Stage Content */
.stage-content {
    flex: 1;
}

.stage-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    background: rgba(0, 255, 255, 0.1);
    border: var(--border-width) solid var(--border-accent);
    padding: 4px 12px;
    border-radius: var(--radius-badge);
    margin-bottom: var(--space-sm);
}

.stage-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.stage-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.stage-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-green);
}

.stat-icon {
    display: flex;
}

/* Victory Stage */
.victory-stage {
    margin-top: var(--space-xl);
    margin-bottom: 0;
}

.victory-node .node-core {
    width: 70px;
    height: 70px;
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

.victory-stage:hover .victory-node .node-core {
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
    color: var(--bg-dark);
}

.victory-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, transparent 70%);
    animation: burst-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes burst-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.victory-badge {
    background: rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.4);
    color: var(--neon-yellow);
}

.victory-stat {
    color: var(--neon-yellow);
}

/* Destruction Meter */
.destruction-meter {
    max-width: 600px;
    margin: var(--space-2xl) auto 0;
    text-align: center;
}

.meter-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.meter-bar {
    position: relative;
    height: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
}

.meter-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green), var(--neon-yellow));
    border-radius: 6px;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 20px var(--accent-glow);
}

.meter-segments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.meter-segments span {
    flex: 1;
    border-right: 1px solid var(--border-subtle);
}

.meter-segments span:last-child {
    border-right: none;
}

.meter-stats {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-xs);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.meter-current {
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ===================================
   ABOUT / WHAT ARE OPPS SECTION
   =================================== */

.about-section {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-dark);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.about-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.opp-examples {
    list-style: none;
    margin: var(--space-md) 0;
    padding: 0;
}

.opp-examples li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-primary);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.opp-examples li:last-child {
    border-bottom: none;
}

.opp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--neon-cyan);
}

.opp-counter {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.1);
}

.counter-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.counter-value {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--neon-orange);
    text-shadow: 0 0 40px rgba(255, 128, 0, 0.5);
    animation: counter-pulse 2s ease-in-out infinite;
}

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

.counter-subtext {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: var(--space-sm);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-width) solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item[open] {
    border-color: var(--accent-primary);
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    animation: faq-open 0.3s ease-out;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0;
}

/* ===================================
   FINAL CTA
   =================================== */

.final-cta {
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.waitlist-form-bottom {
    opacity: 1;
    animation: none;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-darker);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    display: block;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

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

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

.footer-copy p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .hero {
        padding: var(--space-md);
        padding-top: var(--space-2xl);
    }

    .stats-bar {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .form-group {
        flex-direction: column;
    }

    .submit-btn {
        justify-content: center;
    }

    .kill-feed {
        display: none;
    }

    .proof-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   TIMELINE RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .timeline-track {
        left: 24px;
    }

    .timeline-stage:nth-child(odd),
    .timeline-stage:nth-child(even) {
        flex-direction: row;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-stage:nth-child(odd) .stage-content,
    .timeline-stage:nth-child(even) .stage-content {
        text-align: left;
    }

    .stage-node {
        left: 24px;
    }

    .node-core {
        width: 40px;
        height: 40px;
    }

    .node-core svg {
        width: 18px;
        height: 18px;
    }

    .victory-node .node-core {
        width: 50px;
        height: 50px;
    }

    .node-ring {
        width: 50px;
        height: 50px;
    }

    .stage-title {
        font-size: 1.25rem;
    }

    .stage-desc {
        font-size: 0.875rem;
    }

    .destruction-meter {
        margin-top: var(--space-xl);
    }

    /* About section mobile */
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .opp-examples li {
        justify-content: center;
    }

    .opp-counter {
        width: 100%;
    }

    /* FAQ mobile */
    .faq-question {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.9rem;
    }
}
