:root {
  /* Gold Colors - Premium Metallic (Matches the Logo "D" and Crown) */
  --gold: #d4af37;
  --gold-light: #f9e2af;
  --gold-bright: #ffec8b;
  --gold-dark: #8b6508;
  --gold-metallic: linear-gradient(135deg, #8b6508 0%, #d4af37 25%, #f9e2af 50%, #d4af37 75%, #8b6508 100%);
  --gold-shine: linear-gradient(90deg, transparent 0%, rgba(255,236,139,0.4) 50%, transparent 100%);
  
  /* Silver Colors - Premium Metallic (Matches the Logo "C") */
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --silver-bright: #ffffff;
  --silver-dark: #606060;
  --silver-metallic: linear-gradient(135deg, #606060 0%, #c0c0c0 25%, #e8e8e8 50%, #c0c0c0 75%, #606060 100%);
  --silver-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  
  /* Premium Dark Base */
  --black: #050508;
  --black-soft: #0c0c12;
  --black-lighter: #151520;
  --black-card: rgba(26, 26, 46, 0.9);
  --white: #ffffff;
  --text-dim: #8888a0;
  --text-bright: #e0e0f0;
  
  /* Primary & Secondary - Using Logo Colors */
  --primary: var(--gold);
  --primary-rgb: 212, 175, 55;
  --secondary: var(--silver);
  --secondary-rgb: 192, 192, 192;
  
  --bg: var(--black);
  
  /* Premium Glass Effect */
  --glass-bg: rgba(15, 15, 25, 0.85);
  --glass-border: rgba(212, 175, 55, 0.25);
  --glass-border-silver: rgba(192, 192, 192, 0.2);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  
  /* Premium Gradients */
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e2af 50%, #8b6508 100%);
  --silver-gradient: linear-gradient(135deg, #606060 0%, #c0c0c0 50%, #e8e8e8 100%);
  --premium-gradient: linear-gradient(135deg, #d4af37 0%, #f9e2af 30%, #c0c0c0 50%, #e8e8e8 70%, #d4af37 100%);
  
  /* Premium Shadows */
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25), 0 0 60px rgba(212, 175, 55, 0.1);
  --shadow-silver: 0 10px 40px rgba(192, 192, 192, 0.2), 0 0 60px rgba(192, 192, 192, 0.08);
  --shadow-deep: 0 25px 80px rgba(0, 0, 0, 0.9);
  
  /* Animation Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: var(--black);
  color: var(--text-bright);
  font-family: 'Outfit', 'Inter', sans-serif;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-image: 
    /* Premium gold glow - top */
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    /* Premium silver glow - bottom */
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(192, 192, 192, 0.05) 0%, transparent 40%),
    /* Corner accents */
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(192, 192, 192, 0.03) 0%, transparent 30%),
    /* Subtle noise/texture */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3e%3cfilter id='noise'%3e%3cturbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3e%3c/filter%3e%3crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3e%3c/svg%3e");
  background-attachment: fixed;
  opacity: 0;
  animation: pageLoad 1.2s var(--ease-out-expo) forwards;
}

/* Page Load Animation */
@keyframes pageLoad {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar Style - Gold & Silver */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black-soft);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-silver-gradient);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-metallic);
}

/* Force override Bootstrap Primary */
.bg-primary { background-color: var(--gold) !important; }
.text-primary { color: var(--gold) !important; }
.border-primary { border-color: var(--gold) !important; }

.btn-primary { 
  background: var(--gold-gradient) !important; 
  border: none !important; 
  color: #000 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px !important;
  transition: all 0.4s var(--ease-out-expo) !important;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shine);
  transition: left 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  filter: brightness(1.1);
}

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

.btn-secondary {
  background: var(--silver-gradient) !important;
  border: none !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px !important;
  transition: all 0.4s var(--ease-out-expo) !important;
  box-shadow: var(--shadow-silver);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
}

/* Glass Card - Luxury Rounded Style */
.glass-card {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid var(--glass-border) !important;
  border-radius: 1.5rem;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 var(--glass-highlight);
  transition: all 0.6s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-8px);
  box-shadow: 
    0 60px 140px rgba(0, 0, 0, 0.9), 
    0 0 40px rgba(212, 175, 55, 0.1);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Typography Enhancements */
h1, h2, h3, .font-bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shimmer-text {
  background: linear-gradient(90deg, #8b6508, #d4af37, #f9e2af, #d4af37, #8b6508);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 8s linear infinite;
}

@keyframes gold-shimmer {
  to { background-position: 200% center; }
}

/* Navbar Style */
.navbar {
  background: rgba(2, 2, 3, 0.85) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
  padding: 1rem 0;
}

.nav-link {
  color: var(--text-dim) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Footer Style */
footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 4rem 0 2rem;
}

/* Status Badges */
.badge-gold {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 0.5em 1.2em;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Inputs & Forms */
.form-control {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(212, 175, 55, 0.1) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
}

.form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
  outline: none;
}
