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

:root {
    --red: #FF3B30;
    --green: #00C853;
    --bullish: #10B981;
    --dark: #0a0a0a;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text: #ffffff;
    --text-dim: #888888;
    --accent: #FFD700;
}

body {
    font-family: 'IBM Plex Mono', 'Courier Prime', monospace;
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.chart-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.1) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(16, 185, 129, 0.03) 100px,
            rgba(16, 185, 129, 0.03) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(16, 185, 129, 0.03) 100px,
            rgba(16, 185, 129, 0.03) 101px
        );
    z-index: -1;
    opacity: 0.5;
}

.chart-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bullish), transparent);
    transform: translateY(-50%) rotate(-15deg);
    opacity: 0.3;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.banner-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    border: 2px solid var(--light-gray);
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.glitch {
    position: relative;
}

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

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: var(--bullish);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: var(--green);
    z-index: -1;
}

@keyframes glitch-1 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(33% 0 0 0);
        transform: translate(-2px);
    }
    40% {
        clip-path: inset(0 0 66% 0);
        transform: translate(2px);
    }
    60% {
        clip-path: inset(0 0 0 0);
        transform: translate(1px);
    }
    80% {
        clip-path: inset(0 0 33% 0);
        transform: translate(-1px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
    20% {
        clip-path: inset(0 0 66% 0);
        transform: translate(2px);
    }
    40% {
        clip-path: inset(33% 0 0 0);
        transform: translate(-2px);
    }
    60% {
        clip-path: inset(0 0 0 0);
        transform: translate(-1px);
    }
    80% {
        clip-path: inset(66% 0 0 0);
        transform: translate(1px);
    }
}

.tagline {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-weight: 400;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-style: italic;
}

.ticker-wrapper {
    overflow: hidden;
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 2rem;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.ticker-item.red {
    color: var(--red);
}

.ticker-item.green {
    color: var(--green);
}

.main-content {
    margin-bottom: 4rem;
}

.warning-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--bullish);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.warning-box h3 {
    color: var(--bullish);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    animation: blink 1s infinite;
}

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

.warning-box p {
    color: var(--text);
    line-height: 1.6;
}

.features,
.quotes-section,
.tokenomics,
.roadmap,
.cta-section {
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1rem;
    color: var(--text);
}

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

.quote {
    background: var(--dark);
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    font-style: italic;
    color: var(--text-dim);
}

.quote:hover {
    color: var(--text);
    border-left-color: var(--bullish);
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.token-item {
    text-align: center;
    padding: 1rem;
    background: var(--dark);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.token-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.token-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.roadmap-items {
    space-y: 1rem;
}

.roadmap-item {
    padding: 1rem;
    background: var(--dark);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--light-gray);
}

.roadmap-item.done {
    opacity: 0.6;
}

.roadmap-item.current {
    border-color: var(--accent);
    background: rgba(255, 215, 0, 0.05);
}

.check {
    color: var(--green);
    font-weight: bold;
}

.spinner {
    display: inline-block;
    animation: spin 2s linear infinite;
    color: var(--accent);
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

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

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--gray), var(--light-gray));
    border: 2px solid var(--accent);
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-dim);
}

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

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--bullish);
    border-color: var(--bullish);
}

.btn-secondary:hover {
    background: var(--bullish);
    color: var(--text);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--light-gray);
    color: var(--text-dim);
}

footer p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .banner-image {
        max-width: 100%;
    }
    
    .container {
        padding: 1rem;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}