/* UNIFIED DESIGN SYSTEM - Consistent across entire platform */

:root {
    --gold: #D4AF37;
    --gold-light: #F0D98D;
    --gold-dark: #B8941F;
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Typography - Be Vietnam Pro everywhere */
body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Gold Gradient Text */
.gold-gradient-text {
    background: linear-gradient(135deg, #F0D98D 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary Button - Gold */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #F0D98D);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Secondary Button - White with gold border */
.btn-white-gold {
    background: white;
    color: #D4AF37;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-white-gold:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
}

/* Dark Button */
.btn-dark {
    background: #1f2937;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-dark:hover {
    background: #111827;
    transform: translateY(-2px);
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Navigation Bar - Consistent */
.unified-nav {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.unified-nav a,
.unified-nav button {
    color: white;
    transition: color 0.3s ease;
}

.unified-nav a:hover,
.unified-nav button:hover {
    color: #D4AF37;
}

/* Dashboard Card */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Form Inputs - Consistent */
.unified-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.unified-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Select Dropdown */
.unified-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.unified-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Stats Card */
.stat-card {
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Progress Bar */
.progress-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #D4AF37, #F0D98D);
    height: 100%;
    transition: width 0.3s ease;
}

/* Alert Box */
.alert-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(240, 217, 141, 0.1));
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 16px;
    color: #92400e;
}

/* Material Icons Color */
.icon-gold {
    color: #D4AF37;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-gold,
    .btn-white-gold,
    .btn-dark {
        padding: 10px 24px;
        font-size: 14px;
    }

    .dashboard-card {
        padding: 16px;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}
