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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 60px 0;
    animation: fadeInDown 1s ease-out;
}

.logo-badge {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.glitch {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00f2ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 3s ease infinite;
}

.tagline {
    font-size: 1.2rem;
    color: #00f2ff;
    margin-top: 10px;
    letter-spacing: 3px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00f2ff;
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.3);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ff88;
}

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

.status-panel {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #00f2ff;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.status-panel h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #00f2ff;
}

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

.status-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.status-dot.active {
    background: #00ff88;
    box-shadow: 0 0 20px #00ff88;
    animation: pulse 2s infinite;
}

.cta {
    text-align: center;
    margin: 60px 0;
}

.btn-primary {
    background: linear-gradient(45deg, #00f2ff, #ff00ff);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.5);
}

.timestamp {
    margin-top: 20px;
    color: #00ff88;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 0.9rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
