body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: white;
    margin: 0;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.gold-gradient {
    background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: #f1c40f;
    color: #000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: #d4ac0d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
}

.btn-gold:disabled {
    background: #7d6b08;
    cursor: not-allowed;
    transform: none;
}

/* Custom scrollbar for a premium look */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { 
    background: #333; 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover { background: #f1c40f; }

/* Loading Transition Styles */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease-out, visibility 0.4s;
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(241, 196, 15, 0.1);
    border-top-color: #f1c40f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
body.loaded #loading-screen { opacity: 0; visibility: hidden; }