@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Page Animation */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    background: linear-gradient(135deg, #050505 0%, #151515 100%);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    animation: pageFadeIn 0.4s ease-out forwards;
}

/* Glassmorphism Cards & Panels */
.card, .glass-panel {
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    color: #fff;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover, .glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.1);
}

.card-header {
    background: rgba(0, 0, 0, 0.3) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
    border-radius: 20px 20px 0 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4af37 !important;
}

/* Typography & Golden Texts */
.text-gold {
    color: #d4af37 !important;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

/* Forms Inputs */
.form-control, .form-select {
    background-color: rgba(10, 10, 10, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3) !important;
}

/* Golden Buttons */
.btn-primary, .btn-gold, .btn-info {
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover, .btn-gold:hover, .btn-info:hover {
    background: linear-gradient(135deg, #fcf6ba 0%, #bf953f 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    background: transparent;
    color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Navbar Customization */
.navbar {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    padding: 1rem 2rem;
}

.nav-link {
    color: #aaa !important;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
    margin: 0 5px;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.05);
}

.nav-link.active {
    color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    box-shadow: inset 0 -2px 0 #d4af37 !important;
}

/* Tables Premium */
.table { color: #e0e0e0 !important; }
.table-dark { background: transparent !important; --bs-table-bg: transparent; }
tr { border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; }
td, th { padding: 15px !important; vertical-align: middle; }
thead th { color: #d4af37; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; border-bottom: 2px solid rgba(212, 175, 55, 0.2) !important; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #d4af37; }