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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e14 0%, #0f1419 50%, #121820 100%);
    color: #e0e0e0;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    background: rgba(15, 20, 25, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 150, 136, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    max-width: 600px;
    animation: fadeIn 1s ease-in;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    width: 100px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(0, 150, 136, 0.4));
    animation: pulse 3s infinite;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    text-shadow: 0.02em 0 0 rgba(0, 150, 136, 0.5), -0.02em 0 0 rgba(0, 150, 136, 0.3);
    animation: glitch 3s ease-in-out infinite;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 150, 136, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 150, 136, 0.2);
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #009688;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 150, 136, 0.6);
    animation: blink 2s infinite;
}

.status-text {
    font-size: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(20, 25, 30, 0.6);
    border-radius: 50px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 150, 136, 0.2);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 150, 136, 0.3);
    border-color: #009688;
}

.social-btn.twitch:hover {
    background: rgba(145, 70, 255, 0.2);
    border-color: #9146ff;
}

.social-btn.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
}

.social-btn.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865f2;
}

.info {
    margin-top: 2rem;
    opacity: 0.6;
}

.info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #b0b0b0;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 150, 136, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 150, 136, 0.2);
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 30%;
    top: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.3;
    }
}

@keyframes glitch {
    0%, 90% {
        text-shadow: 0.02em 0 0 rgba(0, 150, 136, 0.5), -0.02em 0 0 rgba(0, 150, 136, 0.3);
    }
    91% {
        text-shadow: -0.02em 0 0 rgba(0, 150, 136, 0.7), 0.02em 0 0 rgba(0, 150, 136, 0.4);
    }
    93% {
        text-shadow: 0.02em 0 0 rgba(0, 150, 136, 0.5), -0.02em 0 0 rgba(0, 150, 136, 0.3);
    }
    95% {
        text-shadow: -0.015em 0.015em 0 rgba(0, 150, 136, 0.6), 0.015em -0.015em 0 rgba(0, 150, 136, 0.4);
    }
    97%, 100% {
        text-shadow: 0.02em 0 0 rgba(0, 150, 136, 0.5), -0.02em 0 0 rgba(0, 150, 136, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .content {
        margin: 1rem;
    }
}
