/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Dark Cyber Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.06);
    
    /* Accent Colors */
    --accent-primary: #00d4ff;
    --accent-secondary: #ff006e;
    --accent-tertiary: #7c3aed;
    --accent-success: #00ff7f;
    --accent-warning: #ffb800;
    --accent-danger: #ff3366;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-dim: rgba(255, 255, 255, 0.2);
    
    /* Border Colors */
    --border-primary: rgba(255, 255, 255, 0.1);
    --border-secondary: rgba(255, 255, 255, 0.05);
    --border-accent: rgba(0, 212, 255, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #ff006e 0%, #ffb800 100%);
    --gradient-success: linear-gradient(135deg, #00ff7f 0%, #00d4ff 100%);
    --gradient-danger: linear-gradient(135deg, #ff3366 0%, #ff006e 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-glow-pink: 0 0 30px rgba(255, 0, 110, 0.3);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Elements */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--border-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -2;
}

.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 10%;
    animation-delay: -10s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-success);
    bottom: 20%;
    left: 20%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

/* Main Container */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-secondary);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-status {
    display: flex;
    align-items: center;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: var(--accent-success);
}

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

/* Contract Address Section */
.contract-address {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contract-address:hover {
    border-color: var(--accent-primary);
    background: var(--bg-glass-hover);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.ca-label {
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
}

.ca-value {
    color: var(--accent-primary);
    font-weight: 500;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.ca-value:hover {
    color: var(--text-primary);
}

.copy-ca-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.copy-ca-btn:hover {
    background: var(--bg-glass);
    color: var(--accent-primary);
    transform: scale(1.1);
}

.copy-ca-btn:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero-section {
    padding: var(--space-2xl) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
    color: var(--accent-primary);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--text-secondary);
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: var(--space-xs);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

/* Countdown Widget */
.countdown-widget {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.countdown-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.widget-header h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.time-display {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    min-width: 80px;
    position: relative;
}

.time-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.time-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.time-unit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

.time-divider {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Coin Section */
.coin-section {
    padding: var(--space-2xl) 0;
    display: flex;
    justify-content: center;
}

.coin-arena {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    position: relative;
}



.coin-stage {
    position: relative;
    z-index: 2;
}

#coin-canvas {
    width: 400px;
    height: 400px;
    cursor: pointer;
    transition: var(--transition);
}

#coin-canvas:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.coin-result-display {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.coin-result-display.show {
    opacity: 1;
}

.coin-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.flip-button {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-glass);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.flip-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: var(--transition);
}

.flip-button:hover::before {
    left: 0;
}

.flip-button:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.flip-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.simulation-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* Process Section */
.process-section {
    padding: var(--space-2xl) 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--border-primary) 10%, 
        var(--accent-primary) 50%, 
        var(--border-primary) 90%, 
        transparent 100%
    );
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
    margin-right: 60px;
    text-align: right;
}

.process-step:nth-child(odd) .step-content {
    margin-left: 60px;
    margin-right: auto;
    text-align: left;
}

.step-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.step-marker:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.marker-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.step-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 450px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.step-content:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.step-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.step-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.step-metrics {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.process-step:nth-child(even) .step-metrics {
    justify-content: flex-end;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step:nth-child(even) .metric {
    align-items: flex-end;
}

.metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.process-step:nth-child(even) .feature {
    flex-direction: row-reverse;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.step-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.process-step:nth-child(even) .step-badges {
    justify-content: flex-end;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-1px);
}

.badge-check {
    font-size: 0.7rem;
}

.outcome-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.outcome {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: var(--transition);
}

.outcome:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.process-step:nth-child(even) .outcome:hover {
    transform: translateX(-5px);
}

.burn-outcome {
    border-left: 3px solid var(--accent-danger);
}

.sell-outcome {
    border-left: 3px solid var(--accent-success);
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

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

.outcome-name {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.outcome-chance {
    font-size: 0.75rem;
    background: var(--bg-glass);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-muted);
    margin-left: auto;
}

.outcome-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Outcomes Section */
.outcomes-section {
    padding: var(--space-2xl) 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.outcome-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: var(--transition);
}

.outcome-card:hover {
    transform: translateY(-8px);
    background: var(--bg-glass-hover);
}

.burn-card::before {
    background: var(--gradient-danger);
}

.burn-card:hover::before {
    opacity: 1;
}

.burn-card:hover {
    box-shadow: var(--shadow-glow-pink);
}

.sell-card::before {
    background: var(--gradient-success);
}

.sell-card:hover::before {
    opacity: 1;
}

.sell-card:hover {
    box-shadow: var(--shadow-glow);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.burn-card:hover .card-glow {
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.1) 0%, transparent 70%);
    opacity: 1;
}

.sell-card:hover .card-glow {
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.card-icon {
    font-size: 3rem;
    opacity: 0.8;
    transition: var(--transition);
}

.outcome-card:hover .card-icon {
    opacity: 1;
    transform: scale(1.1);
}

.card-title h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.probability {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.card-impact {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.impact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.impact-tag {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impact-tag.deflationary {
    background: rgba(255, 51, 102, 0.1);
    color: var(--accent-danger);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.impact-tag.community {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid var(--border-accent);
}

/* Footer */
.footer {
    margin-top: var(--space-2xl);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.footer-brand h4,
.footer-links h4,
.footer-legal h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-brand p,
.footer-legal p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.875rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .app-container {
        padding: 0 var(--space-sm);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    /* Contract Address Responsive */
    .contract-address {
        margin-left: var(--space-sm);
        font-size: 0.7rem;
    }
    
    .ca-value {
        max-width: 120px;
    }
    
    .countdown-widget {
        order: 1;
        padding: var(--space-lg);
    }
    
    .time-display {
        gap: var(--space-sm);
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 70px;
        padding: var(--space-sm);
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .time-divider {
        font-size: 1.2rem;
        order: 999;
        flex-basis: 100%;
        opacity: 0;
    }
    
         #coin-canvas {
         width: 300px;
         height: 300px;
     }
    
    .timeline-track {
        display: none;
    }
    
    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        max-width: 100%;
    }
    
    .process-step:nth-child(even) .step-metrics {
        justify-content: flex-start;
    }
    
    .process-step:nth-child(even) .step-badges {
        justify-content: flex-start;
    }
    
    .process-step:nth-child(even) .feature {
        flex-direction: row;
    }
    
    .process-step:nth-child(even) .outcome:hover {
        transform: translateX(5px);
    }
    
    .step-marker {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: var(--space-md);
        width: 60px;
        height: 60px;
    }
    
    .step-content {
        padding: var(--space-lg);
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .outcome-card {
        padding: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .app-container {
        padding: 0 var(--space-sm);
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Contract Address Mobile */
    .nav-content {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
    }
    
    .contract-address {
        margin-left: 0;
        font-size: 0.65rem;
        padding: var(--space-xs);
    }
    
    .ca-value {
        max-width: 100px;
    }
    
    .countdown-widget {
        padding: var(--space-md);
    }
    
    .time-block {
        min-width: 60px;
        padding: var(--space-xs);
    }
    
    .time-number {
        font-size: 1.25rem;
    }
    
         #coin-canvas {
         width: 250px;
         height: 250px;
     }
    
    .step-marker {
        width: 50px;
        height: 50px;
    }
    
    .marker-number {
        font-size: 1rem;
    }
    
    .step-content {
        padding: var(--space-md);
    }
    
    .step-metrics {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .outcome-card {
        padding: var(--space-md);
    }
} 