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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    background: #0a0a0f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}


/* Main content */
.main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
}

/* Logo */
.logo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin-bottom: 36px;
    border-radius: 24px;
    filter: drop-shadow(0 0 30px rgba(108, 92, 231, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Buttons container */
.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* Divider */
.divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 6px auto;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2), rgba(255, 102, 0, 0.1));
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.35), rgba(255, 102, 0, 0.2));
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.2);
}

.btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    margin-top: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 480px) {
    .logo {
        width: 120px;
        height: 120px;
        margin-bottom: 28px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}
