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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.glitch-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 0, 255, 0.03),
            rgba(255, 0, 255, 0.03) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 255, 255, 0.03),
            rgba(0, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 2px
        );
    animation: scan 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Hero Header */
.hero-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="100" fill="rgba(255,255,255,0.03)">₿</text></svg>');
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
}

.main-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.glitch {
    position: relative;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff;
    animation: glitch 2s infinite;
}

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

.glitch::before {
    color: #00ffff;
    animation: glitch-1 0.5s infinite;
    z-index: -1;
}

.glitch::after {
    color: #ff00ff;
    animation: glitch-2 0.5s infinite;
    z-index: -2;
}

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

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); transform: skew(0.5deg); }
    25% { clip: rect(12px, 9999px, 59px, 0); transform: skew(0.8deg); }
    50% { clip: rect(48px, 9999px, 19px, 0); transform: skew(0.2deg); }
    75% { clip: rect(33px, 9999px, 78px, 0); transform: skew(0.4deg); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(65px, 9999px, 100px, 0); transform: skew(0.8deg); }
    25% { clip: rect(25px, 9999px, 50px, 0); transform: skew(0.3deg); }
    50% { clip: rect(55px, 9999px, 85px, 0); transform: skew(0.6deg); }
    75% { clip: rect(15px, 9999px, 40px, 0); transform: skew(0.9deg); }
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    animation: pulse 2s infinite;
}

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

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 2rem;
    font-weight: bold;
    animation: blink 1s infinite;
}

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

.live-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: live-pulse 1s infinite;
}

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

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Announcement Section */
.announcement-section {
    margin-bottom: 6rem;
}

.announcement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.announcement-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.countdown-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #00ffff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.time-block {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #00ffff;
    min-width: 100px;
}

.time-block span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.time-block label {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Features Section */
.features-section {
    margin-bottom: 6rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
    border-color: #ff00ff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-transform: uppercase;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Memes Section */
.memes-section {
    margin-bottom: 6rem;
}

.memes-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #333;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.meme-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #444;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.meme-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff00ff;
    transform: scale(1.02);
}

.meme-card h3 {
    color: #ff00ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.meme-card p {
    color: #ccc;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    margin-bottom: 6rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    border-radius: 20px;
    z-index: -1;
    animation: gradient-rotate 3s linear infinite;
}

@keyframes gradient-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #00ffff;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #ff00ff, #ff0080);
    color: #fff;
}

.cta-btn.secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.5);
}

.wallet-section {
    margin-top: 2rem;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contract-address code {
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.copy-btn {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #ff00ff;
    border-color: #ff00ff;
}

/* Roadmap Section */
.roadmap-section {
    margin-bottom: 6rem;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff00ff, #00ffff);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: #ff00ff;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #ff00ff;
    border: 3px solid #000;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.completed .timeline-dot {
    background: #00ff00;
}

.timeline-item.current .timeline-dot {
    background: #ffff00;
    animation: pulse 2s infinite;
}

.timeline-content h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.stream-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #333;
    padding: 3rem 2rem;
}

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

.footer-logo h3 {
    color: #ff00ff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #00ffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #00ffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: #00ffff;
    color: #000;
}

.footer-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        min-height: 60vh;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 80px;
        padding: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}