/* Terminal Website CSS - Standalone */
:root {
    --primary-color: #8b5cf6;
    --secondary-color: #ec4899;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-purple: #8b5cf6;
    --text-pink: #ec4899;
    --text-cyan: #06b6d4;
    --border-color: #333333;
    --terminal-bg: rgba(10, 10, 20, 0.95);
    --glow-color: #8b5cf6;
    --font-mono: 'Courier Prime', monospace;
    --font-tech: 'Orbitron', monospace;
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.4);
    --shadow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
    --shadow-pink: 0 0 20px rgba(236, 72, 153, 0.4);
    --shadow-cyan: 0 0 20px rgba(6, 182, 212, 0.3);
}

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

body {
    font-family: var(--font-mono);
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: crosshair;
}

/* Animated Grid Background */
.animated-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.1;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(139, 92, 246, 0.8) 2px, transparent 0),
        radial-gradient(circle at 75px 75px, rgba(6, 182, 212, 0.6) 2px, transparent 0),
        radial-gradient(circle at 50px 100px, rgba(236, 72, 153, 0.7) 1px, transparent 0);
    background-size: 100px 100px, 150px 150px, 75px 75px;
    background-position: 0 0, 25px 25px, 50px 50px;
    animation: gridMove 20s linear infinite, gridPulse 4s ease-in-out infinite alternate;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(10px, 10px); }
    50% { transform: translate(-5px, 15px); }
    75% { transform: translate(15px, -5px); }
    100% { transform: translate(0, 0); }
}

@keyframes gridPulse {
    0% { opacity: 0.05; }
    100% { opacity: 0.15; }
}

/* Particles Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.15;
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
    background: transparent;
}

/* Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    background: linear-gradient(transparent 50%, var(--primary-color) 50%);
    background-size: 100% 8px;
    animation: scanlines 0.2s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

@keyframes matrixFall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes terminalFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(5px); }
}

@keyframes terminalGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.6); }
}

@keyframes terminalPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.terminal-header {
    background: var(--terminal-bg);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    padding: 20px 0;
    position: relative;
    box-shadow: var(--shadow-purple);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-ascii {
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 8px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    white-space: pre;
}

.subtitle-glitch {
    font-family: var(--font-tech);
    color: var(--text-cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.nav-terminal {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-purple);
    background: rgba(139, 92, 246, 0.2);
}

.hero-terminal {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.hero-message {
    text-align: center;
    margin-bottom: 50px;
}

.hero-tagline {
    font-family: var(--font-tech);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 900px;
    margin: 0 auto;
}

.tagline-part {
    display: block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
    position: relative;
}


.tagline-part:nth-child(1) {
    animation-delay: 0.2s;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.9);
}

.tagline-part:nth-child(2) {
    animation-delay: 0.4s;
    font-size: 1.1em;
    font-weight: 800;
    margin-bottom: 25px;
}

.tagline-part:nth-child(3) {
    animation-delay: 0.6s;
}

.tagline-part.highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 900;
    font-size: 1.05em;
}

.tagline-part.emphasis {
    color: #6540A5;
    text-shadow: 0 0 20px rgba(101, 64, 165, 0.6);
    font-size: 1.1em;
    font-weight: 900;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-window {
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    overflow: hidden;
}



.terminal-body {
    padding: 40px;
    font-family: var(--font-mono);
    font-size: 16px;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.prompt {
    color: var(--primary-color);
    margin-right: 16px;
    font-weight: 600;
}

.command {
    color: var(--text-light);
    font-weight: 500;
}

.output {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 24px;
}

.output.success {
    color: var(--success-color);
}

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

.cursor {
    color: var(--primary-color);
    animation: terminalPulse 1s infinite;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.streamer-mascot {
    text-align: center;
}

.streamer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    margin-bottom: 16px;
}

.mascot-speech {
    color: var(--text-light);
    font-style: italic;
    font-size: 16px;
}

.cta-button {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.contract-display {
    text-align: center;
}

.contract-display label {
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
}

.contract-text {
    font-family: var(--font-mono);
    color: var(--text-light);
    font-size: 14px;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-section,
.mission-section,
.streamers-section,
.join-section {
    padding: 60px 0;
    background: var(--bg-darker);
}

.section-title {
    font-family: var(--font-tech);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--shadow-purple);
}

.glitch {
    position: relative;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.data-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-purple);
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.data-label {
    font-family: var(--font-mono);
    color: var(--text-cyan);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.data-value {
    font-family: var(--font-tech);
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: var(--shadow-purple);
}

.data-change {
    font-family: var(--font-mono);
    color: var(--success-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.streamer-stat {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.streamer-stat:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-purple);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.stat-label {
    font-family: var(--font-mono);
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-terminal {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: var(--shadow-cyan);
}

.streamers-log {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.log-entry {
    display: grid;
    grid-template-columns: 200px 1fr 100px 160px 150px;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 14px;
}

.log-entry:last-child {
    border-bottom: none;
}

.timestamp {
    color: var(--text-cyan);
}

.streamer-name {
    color: var(--text-light);
    font-weight: 600;
}

.clip-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    display: block;
}

.clip-link:hover {
    color: var(--success-color);
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--success-color);
}

.clip-placeholder {
    display: block;
    width: 100%;
    height: 1px;
}

.donation-amount {
    color: var(--success-color);
    font-weight: 600;
}

.status.success {
    color: var(--success-color);
    font-weight: 600;
}

.status.pending {
    color: var(--text-pink);
    font-weight: 600;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.mission-text-container {
    position: relative;
}

.mission-title {
    font-family: var(--font-tech);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--text-light);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    margin-bottom: 8px;
}

.title-line.highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 1s ease 0.5s;
}

.title-line.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-line.highlight.visible::after {
    width: 100%;
}

.mission-paragraphs {
    margin-bottom: 60px;
}

.mission-paragraph {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mission-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.mission-stats.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-family: var(--font-tech);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    margin-bottom: 8px;
    animation: glow-pulse 3s ease-in-out infinite;
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@keyframes glow-pulse {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }
    50% { 
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.9), 0 0 40px rgba(139, 92, 246, 0.4);
    }
}

/* Animation trigger styles */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.join-terminal {
    text-align: center;
}

.join-title {
    font-family: var(--font-tech);
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.social-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: block;
    box-shadow: var(--shadow-purple);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    border-color: var(--secondary-color);
}

.social-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.social-desc {
    font-family: var(--font-mono);
    color: var(--text-light);
    font-size: 14px;
}

.footer-terminal {
    background: var(--terminal-bg);
    border-top: 2px solid var(--primary-color);
    padding: 40px 0;
    text-align: center;
}

.footer-ascii {
    font-family: var(--font-mono);
    color: var(--primary-color);
    font-size: 10px;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: var(--shadow-purple);
}

.disclaimer {
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
}

.disclaimer p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.link-icon {
    font-size: 16px;
}

.link-text {
    font-weight: 500;
}

.built-by {
    color: var(--text-cyan);
    font-style: italic;
}

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

.dev-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-terminal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-ascii {
        font-size: 6px;
    }
    
    .log-entry {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .data-grid,
    .streamers-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
}