* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    background: #f5f5f5;
}

/* Animated Game Background */
.game-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#gameCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
}

/* Login Container */
.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.login-card {
    background: transparent;
    padding: 50px 60px;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.login-card h1 {
    font-size: 56px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.tagline {
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Discord Button */
.discord-login {
    width: 100%;
    background: #5865F2;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.discord-login:hover {
    background: #4752C4;
}

.discord-login:active {
    transform: translateY(0);
}

.discord-icon {
    width: 24px;
    height: 24px;
}



/* Responsive */
@media (max-width: 600px) {
    .login-card {
        padding: 40px 30px;
    }
    
    .logo h1 {
        font-size: 38px;
    }
}


.terms-link {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.terms-link a {
    color: #5865F2;
    text-decoration: none;
}

.terms-link a:hover {
    text-decoration: underline;
}
