* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Logo */
.logo {
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #00fbff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 80px;
    height: 80px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 251, 255, 0.1);
    border: 1px solid rgba(0, 251, 255, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00fbff;
    animation: pulse 2s infinite;
}

.status-badge span {
    color: #00fbff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Heading */
.main-heading {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #00fbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 700px;
}

/* Description */
.description {
    font-size: 20px;
    color: #888;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 500px;
}

/* Discord Button */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.5);
}

/* Features */
.features {
    margin-top: 80px;
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.7;
}

.feature {
    text-align: center;
}

.feature-value {
    font-size: 28px;
    font-weight: 700;
    color: #00fbff;
    margin-bottom: 4px;
}

.feature-label {
    font-size: 13px;
    color: #666;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: #444;
    font-size: 14px;
}

/* Particles */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(0, 251, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 36px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .features {
        gap: 24px;
    }
    
    .logo h1 {
        font-size: 36px;
    }
}