/* AetherGlitch Landing Page - Chaos Aesthetic */

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff41;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dim: #666666;
    --glitch-1: #ff00ff;
    --glitch-2: #00ffff;
    --glitch-3: #ffff00;
    --terminal-green: #00ff41;
    --warning-red: #ff4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--darker-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* PRELOADER STYLES */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--darker-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.terminal {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.terminal-line {
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.terminal-line.delay-1 { animation-delay: 1s; }
.terminal-line.delay-2 { animation-delay: 2s; }
.terminal-line.delay-3 { animation-delay: 3s; }

.prompt {
    color: var(--terminal-green);
    margin-right: 0.5rem;
}

.typing-text {
    border-right: 2px solid var(--terminal-green);
    animation: blink 1s infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 2rem;
}

.loading-progress {
    height: 100%;
    background: var(--terminal-green);
    border-radius: 2px;
    animation: loading 4s ease-in-out forwards;
    box-shadow: 0 0 10px var(--terminal-green);
}

/* MAIN CONTENT */
#main-content.hidden {
    display: none;
}

.fragment {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* FRAGMENT 01: HERO */
.hero-fragment {
    position: relative;
    overflow: hidden;
}

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

.digital-space {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, var(--darker-bg) 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.glitch-axolotl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 120px;
}

.axolotl-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    position: relative;
    animation: float 3s ease-in-out infinite, glitchPulse 5s ease-in-out infinite;
    opacity: 0.7;
}

.axolotl-body::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 15px;
    height: 15px;
    background: var(--text-primary);
    border-radius: 50%;
    box-shadow: 30px 0 0 var(--text-primary);
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    animation: glitchFlash 4s ease-in-out infinite;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 2s both;
}

.cta-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 2.5s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    color: var(--darker-bg);
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-2px);
}

/* GLITCH EFFECTS */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--glitch-1);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 1.5s infinite linear alternate-reverse;
    color: var(--glitch-2);
    z-index: -2;
}

/* FRAGMENT 02: MANIFESTO */
.manifesto-fragment {
    background: var(--dark-bg);
    position: relative;
}

.circuit-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px),
        linear-gradient(0deg, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuitMove 20s linear infinite;
}

.fragment-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: var(--terminal-green);
    margin-bottom: 2rem;
    text-align: center;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.manifesto-text {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.manifesto-text:nth-child(2) { animation-delay: 0.2s; }
.manifesto-text:nth-child(3) { animation-delay: 0.4s; }
.manifesto-text:nth-child(4) { animation-delay: 0.6s; }
.manifesto-text:nth-child(5) { animation-delay: 0.8s; }
.manifesto-text:nth-child(6) { animation-delay: 1s; }

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.emphasis {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0;
}

.brand-name {
    color: var(--accent-color);
    font-weight: 700;
}

.rebellion {
    color: var(--warning-red);
    font-weight: 700;
}

/* FRAGMENT 03: PROTOCOL */
.protocol-fragment {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.terminal-header {
    margin-bottom: 3rem;
    text-align: center;
}

.protocol-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.protocol-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.protocol-tab {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.protocol-tab:hover::before {
    left: 100%;
}

.protocol-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-number {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.tab-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.tab-subtitle {
    color: var(--text-secondary);
    font-style: italic;
}

.tab-content {
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0.9;
}

/* FRAGMENT 04: TOKEN */
.token-fragment {
    background: radial-gradient(circle at center, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.token-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-token {
    position: absolute;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    animation: floatToken 15s linear infinite;
}

.floating-token:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-token:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-token:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.token-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.token-description {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.tokenomics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.token-info {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.label {
    color: var(--text-secondary);
}

.value {
    color: var(--primary-color);
    font-weight: 700;
}

.distribution {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 2rem;
}

.distribution h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.distribution-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.distribution-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.dim {
    color: var(--text-dim);
}

.fair-launch {
    color: var(--accent-color);
    text-align: center;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.tax-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.buy-button,
.chart-button {
    background: transparent;
    border: 2px solid;
    padding: 1rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-button {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.buy-button:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
    box-shadow: 0 0 20px var(--accent-color);
}

.chart-button {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.chart-button:hover {
    background: var(--secondary-color);
    color: var(--darker-bg);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* FRAGMENT 05: ROADMAP */
.roadmap-fragment {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.roadmap-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

.phase {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.phase-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--text-dim);
    border: 3px solid var(--darker-bg);
    z-index: 2;
}

.phase.completed .phase-marker {
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}

.phase.active .phase-marker {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.phase.upcoming .phase-marker {
    background: var(--secondary-color);
    opacity: 0.6;
}

.phase-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    border-left: 3px solid var(--text-dim);
}

.phase.completed .phase-content {
    border-left-color: var(--accent-color);
}

.phase.active .phase-content {
    border-left-color: var(--primary-color);
}

.phase.upcoming .phase-content {
    border-left-color: var(--secondary-color);
}

.phase-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.status {
    font-size: 0.9rem;
    font-weight: normal;
}

.phase.completed .status {
    color: var(--accent-color);
}

.phase.active .status {
    color: var(--primary-color);
}

.phase.upcoming .status {
    color: var(--secondary-color);
}

.phase-items {
    list-style: none;
}

.phase-items li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.phase-items li.completed {
    color: var(--text-primary);
}

.phase-items li.mystery {
    color: var(--secondary-color);
    font-style: italic;
}

/* FRAGMENT 06: INVITATION */
.invitation-fragment {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.deep-space {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
}

.invitation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.invitation-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.invitation-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.invitation-cta {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-link {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.social-link.telegram {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.social-link.telegram:hover {
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.social-icon {
    font-size: 1.2rem;
}

.warning {
    border-top: 1px solid var(--text-dim);
    padding-top: 2rem;
    margin-top: 2rem;
}

.glitch-warning {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes glitchPulse {
    0%, 90%, 100% { opacity: 0.7; }
    95% { opacity: 1; }
}

@keyframes glitchFlash {
    0%, 90%, 100% { opacity: 0; }
    92%, 98% { opacity: 0.8; }
}

@keyframes glitch-1 {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(-2px); }
    60% { transform: translateX(2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

@keyframes glitch-2 {
    0% { transform: translateX(0); }
    20% { transform: translateX(2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes floatToken {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-50px) rotate(180deg); opacity: 0.3; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.1; }
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-content {
        padding: 1rem;
    }
    
    .manifesto-content {
        padding: 0 1rem;
    }
    
    .floating-token {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .fragment {
        padding: 1rem;
        min-height: auto;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .tokenomics {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .phase {
        padding-left: 60px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .phase-marker {
        left: 10px;
    }
    
    .protocol-tabs {
        gap: 1rem;
    }
    
    .protocol-tab {
        padding: 1.5rem;
    }
    
    .tab-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .terminal {
        font-size: 1rem;
    }
    
    .loading-bar {
        width: 250px;
    }
    
    .info-grid {
        gap: 0.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .buy-button,
    .chart-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .manifesto-content {
        font-size: 1rem;
    }
    
    .manifesto-text {
        margin-bottom: 1rem;
    }
    
    .floating-token {
        font-size: 2rem;
    }
    
    .token-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .token-description {
        font-size: 1rem;
    }
    
    .roadmap-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .protocol-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .invitation-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .invitation-subtitle {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .invitation-cta {
        font-size: 1rem;
    }
    
    .fragment-title {
        font-size: 1.5rem;
    }
    
    .phase-content {
        padding: 1rem;
    }
    
    .phase-content h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .terminal-line {
        font-size: 0.9rem;
    }
    
    .protocol-tab {
        padding: 1rem;
    }
    
    .tab-title {
        font-size: 1rem;
    }
    
    .tab-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .glitch-warning {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .token-title {
        font-size: 1.5rem;
    }
    
    .roadmap-title {
        font-size: 1.5rem;
    }
    
    .protocol-title {
        font-size: 1.5rem;
    }
    
    .floating-token {
        font-size: 1.5rem;
    }
    
    .phase {
        padding-left: 50px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .phase-marker {
        left: 5px;
        width: 15px;
        height: 15px;
    }
}

/* PERFORMANCE OPTIMIZATIONS */
.fragment {
    will-change: transform;
}

.glitch-text,
.floating-token,
.phase-marker {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }
    
    .floating-token {
        animation: none;
    }
    
    .particles {
        display: none;
    }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffffff;
        --secondary-color: #ffffff;
        --accent-color: #ffffff;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
        --dark-bg: #000000;
        --darker-bg: #000000;
    }
    
    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }
}

/* PRINT STYLES */
@media print {
    .preloader,
    .particles,
    .floating-token,
    .glitch-overlay,
    .video-background {
        display: none !important;
    }
    
    .fragment {
        page-break-inside: avoid;
        min-height: auto;
    }
    
    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .cta-button,
    .social-link {
        border: 1px solid black !important;
        color: black !important;
    }
}