* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Card */
.card {
    background: rgba(10, 10, 15, 0.95);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    border: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

/* Logo */
.logo {
    font-family: 'Coolvetica', 'Bebas Neue', 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 16px;
    background: linear-gradient(0deg, #007bff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 123, 255, 0.3));
    animation: glow-blue 2s ease-in-out infinite alternate;
    text-transform: uppercase;
}

@keyframes glow-blue {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.4));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(0, 123, 255, 0.6));
    }
}

.tagline {
    font-size: 0.9rem;
    color: rgba(0, 200, 220, 0.7);
    letter-spacing: 4px;
    margin-bottom: 50px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 40px;
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    min-width: 180px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(30, 30, 35, 0.95);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.15);
}

.icon {
    width: 32px;
    height: 32px;
    color: #00e5ff;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.btn-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 40px 30px;
    }
    
    .logo {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn {
        min-width: 100%;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}
