/* VRC Minimalist Dark System - All important rules */

:root {
    --dark: #050505;
    --surface: #0D0D0D;
    --accent: #D4AF37;
    --text: #E2E8F0;
    --muted: #64748B;
}

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

body {
    background-color: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-overlay {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.auth-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-field {
    background: var(--dark);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, #FFF 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-overlay {
    background: linear-gradient(to right, var(--dark) 0%, rgba(5, 5, 5, 0.8) 50%, rgba(5, 5, 5, 0) 100%);
}

#authModal {
    display: none;
}

#authModal.active {
    display: flex !important;
}

/* Dashboard Specific */
.dashboard-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dashboard-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-pending {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-auth {
    animation: fadeIn 0.3s ease-out forwards;
}