body {
    background: linear-gradient(135deg, #0E0E10, #1a1a1a, #0E0E10);
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

/* NikMok  */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: rgba(30, 30, 36, 0.9);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.login-header {
    /* NIK MOK */
}

.site-title {
    margin-bottom: 1rem;
}

.site-title a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00D4FF;
    text-decoration: none;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #00D4FF, #00FF88, #00D4FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

.site-description {
    margin: 1rem 0;
    font-size: 1.125rem;
    color: #b0b0b0;
}

.text-reveal-card {
    margin: 2rem 0;
}

.login-actions {
    /* NIK MOK */
}

.steam-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #00D4FF, #00FF88);
    color: #000;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.steam-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.steam-login-btn:hover::before {
    left: 100%;
}

.steam-login-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.steam-login-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.steam-login-btn svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.login-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #AAA;
    animation: fadeIn 2s ease-out;
}

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

/* NIK MOK */
@media (max-width: 768px) {
    .site-title a {
        font-size: 2rem;
    }
    
    .steam-login-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .login-wrapper {
        padding: 1.5rem;
        margin: 1rem;
    }
}
