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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.logo {
    max-width: 700px;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(100, 200, 255, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #64c8ff;
    text-shadow: 0 0 20px rgba(100, 200, 255, 0.6),
                 0 0 40px rgba(100, 200, 255, 0.4);
    animation: fadeIn 1.2s ease;
}

.servers {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 1.4s ease;
}

.server-card {
    position: relative;
    background: rgba(20, 30, 50, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(100, 200, 255, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.server-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 200, 255, 0.6);
    box-shadow: 0 12px 48px rgba(100, 200, 255, 0.4);
}


.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}


.rate-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 20px 0 10px;
}

.server-rate {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #64c8ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-status {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.server-status[data-status="offline"] {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.server-status[data-status="online"] {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
}

.server-desc {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    background: rgba(100, 200, 255, 0.2);
    color: #64c8ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(100, 200, 255, 0.3);
}

.countdown-timer {
    margin: 15px 0 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0 2px;
    opacity: 0.5;
}

.launched {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

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

.play-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}


.discord-section {
    margin: 30px 0;
    animation: fadeIn 1.6s ease;
}

.discord-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #a8dadc;
    text-align: center;
    text-shadow: 0 0 15px rgba(168, 218, 220, 0.5);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.discord-text:hover {
    color: #64c8ff;
    transform: scale(1.05);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .servers {
        gap: 20px;
    }
    
    .server-card {
        width: 100%;
        max-width: 320px;
    }
    
    .discord-text {
        font-size: 1.2rem;
    }
}