/* Live Auctions - Theme System with Light and Dark Mode */

/* Dark Theme (Default) */
:root, [data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --gold-primary: #ffffff;
  --gold-light: #f0f0f0;
  --gold-dark: #cccccc;
  --gold-gradient: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border-color: #2a2a2a;
  --success: #00c853;
  --danger: #ff1744;
  --warning: #ffc107;
  --info: #00b0ff;
  --navbar-bg: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  --dropdown-bg: #1a1a1a;
  --input-bg: #1a1a1a;
  --table-bg: #1a1a1a;
  --table-stripe-bg: #222222;
  --modal-bg: #1a1a1a;
  --shadow-color: rgba(0, 0, 0, 0.5);
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary: #f5f5f5;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f0;
  --gold-primary: #1a1a1a;
  --gold-light: #333333;
  --gold-dark: #555555;
  --gold-gradient: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #1a1a1a 100%);
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-color: #e0e0e0;
  --success: #00c853;
  --danger: #ff1744;
  --warning: #ffc107;
  --info: #00b0ff;
  --navbar-bg: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  --dropdown-bg: #ffffff;
  --input-bg: #ffffff;
  --table-bg: #ffffff;
  --table-stripe-bg: #f8f8f8;
  --modal-bg: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
}

.text-gold {
  color: var(--gold-primary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Navbar */
.navbar {
  background: var(--navbar-bg) !important;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-primary) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-brand i {
  color: var(--gold-light);
}

.navbar .navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--gold-primary);
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Light mode navbar underline */
.navbar-light .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Light mode shadows */
[data-theme="light"] .dropdown-menu {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .modal-content {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Button */
#themeToggle {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

#themeToggle:hover {
  transform: scale(1.1);
  background: var(--bg-card-hover);
}

#themeToggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold-primary);
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dark);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.card-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
}

.card-header.bg-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%) !important;
  border-bottom: none;
  color: #000 !important;
}

.card-header.bg-primary h4,
.card-header.bg-primary h5 {
  color: #000 !important;
}

.card-header.bg-danger {
  background: linear-gradient(135deg, #b71c1c 0%, var(--danger) 100%) !important;
}

.card-header.bg-success {
  background: linear-gradient(135deg, #1b5e20 0%, var(--success) 100%) !important;
}

.card-body {
  background: var(--bg-card);
  color: var(--text-primary);
}

.card-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.card-title {
  color: var(--text-primary);
  font-weight: 600;
}

.card-text {
  color: var(--text-secondary);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 50%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.hero-section h1 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .lead {
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gold-gradient);
  border: none;
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-outline-primary {
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline-light:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000;
}

.btn-success {
  background: linear-gradient(135deg, #1b5e20 0%, var(--success) 100%);
  border: none;
}

.btn-success:hover {
  background: linear-gradient(135deg, var(--success) 0%, #00e676 100%);
  box-shadow: 0 5px 20px rgba(0, 200, 83, 0.3);
}

.btn-danger {
  background: linear-gradient(135deg, #b71c1c 0%, var(--danger) 100%);
  border: none;
}

.btn-danger:hover {
  background: linear-gradient(135deg, var(--danger) 0%, #ff5252 100%);
  box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3);
}

.btn-secondary {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dark);
  color: var(--text-primary);
}

.btn-outline-secondary {
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  background: transparent;
}

.btn-outline-secondary:hover {
  background: var(--bg-card);
  border-color: var(--gold-dark);
  color: var(--text-primary);
}

/* Forms */
.form-control, .form-select {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background-color: var(--bg-card);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
}

/* Select dropdown options styling for dark mode */
.form-select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  padding: 0.5rem;
}

.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
  background-color: var(--bg-tertiary);
  color: var(--gold-primary);
}

/* Custom select arrow color */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input-group-text {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  font-weight: 600;
}

.form-check-input {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.form-check-input:checked {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.form-check-label {
  color: var(--text-secondary);
}

/* Tables */
.table {
  color: var(--text-primary);
  --bs-table-bg: transparent;
}

.table thead th {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold-dark);
  padding: 1rem;
}

.table tbody td {
  border-color: var(--border-color);
  padding: 1rem;
  vertical-align: middle;
}

.table-hover tbody tr:hover {
  background-color: var(--bg-card-hover);
  --bs-table-hover-bg: var(--bg-card-hover);
}

.table-light {
  --bs-table-bg: var(--bg-secondary);
}

.table-responsive {
  border-radius: 12px;
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.badge.bg-primary {
  background: var(--gold-gradient) !important;
  color: #000;
}

.badge.bg-secondary {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color);
}

.badge.bg-success {
  background: linear-gradient(135deg, #1b5e20 0%, var(--success) 100%) !important;
}

.badge.bg-danger {
  background: linear-gradient(135deg, #b71c1c 0%, var(--danger) 100%) !important;
  animation: pulse 2s infinite;
}

.badge.bg-warning {
  background: linear-gradient(135deg, #f57f17 0%, var(--warning) 100%) !important;
  color: #000;
}

.badge.bg-info {
  background: linear-gradient(135deg, #01579b 0%, var(--info) 100%) !important;
}

/* Alerts */
.alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.25rem;
}

.alert-success {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
  border-left: 4px solid var(--success);
  color: var(--success);
}

.alert-danger {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.2) 0%, rgba(255, 23, 68, 0.1) 100%);
  border-left: 4px solid var(--danger);
  color: var(--danger);
}

.alert-info {
  background: linear-gradient(135deg, rgba(0, 176, 255, 0.2) 0%, rgba(0, 176, 255, 0.1) 100%);
  border-left: 4px solid var(--info);
  color: var(--info);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
  border-left: 4px solid var(--warning);
  color: var(--warning);
}

/* Dropdowns */
.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
}

.dropdown-item {
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--bg-card-hover);
  color: var(--gold-primary);
}

.dropdown-item.text-danger:hover {
  background: rgba(255, 23, 68, 0.1);
  color: var(--danger);
}

.dropdown-header {
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.dropdown-divider {
  border-color: var(--border-color);
}

.dropdown-item-text {
  color: var(--text-muted);
}

/* Modals */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
}

.modal-header.bg-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%) !important;
  border-radius: 14px 14px 0 0;
}

.modal-header.bg-primary h5 {
  color: #000;
}

.modal-body {
  color: var(--text-primary);
}

.modal-footer {
  border-top: 1px solid var(--border-color);
}

.btn-close {
  filter: var(--btn-close-filter, invert(1));
}

[data-theme="light"] .btn-close {
  filter: none;
}

/* Stats Cards */
.card.bg-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%) !important;
  border: none;
}

.card.bg-primary .card-body {
  background: transparent;
  color: #000;
}

.card.bg-primary h2,
.card.bg-primary h6 {
  color: #000 !important;
}

.card.bg-danger {
  background: linear-gradient(135deg, #b71c1c 0%, var(--danger) 100%) !important;
  border: none;
}

.card.bg-danger .card-body {
  background: transparent;
}

.card.bg-success {
  background: linear-gradient(135deg, #1b5e20 0%, var(--success) 100%) !important;
  border: none;
}

.card.bg-success .card-body {
  background: transparent;
}

.card.bg-info {
  background: linear-gradient(135deg, #01579b 0%, var(--info) 100%) !important;
  border: none;
}

.card.bg-info .card-body {
  background: transparent;
}

/* Timer Display */
.timer-display {
  background: var(--bg-secondary);
  border: 2px solid var(--gold-dark);
  border-radius: 10px;
  padding: 1rem 2rem;
  display: inline-block;
}

.timer-display h2,
.timer-display h3 {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  letter-spacing: 3px;
}

/* Current Bid Animation */
.current-bid {
  transition: all 0.3s ease;
  color: var(--gold-primary) !important;
  font-weight: 700;
}

.current-bid.text-warning {
  transform: scale(1.3);
  color: var(--gold-light) !important;
}

/* Item Cards */
.item-card {
  position: relative;
}

.item-card .card-img-top {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-card .card-img-top i {
  color: var(--text-muted);
}

/* Live Auction Border */
.border-danger {
  border-color: var(--danger) !important;
}

.border-2 {
  border-width: 2px !important;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-top: 1px solid var(--gold-dark);
  margin-top: auto;
}

.footer h5 {
  color: var(--gold-primary);
}

.footer a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--gold-primary) !important;
}

.footer hr {
  border-color: var(--border-color);
}

.footer p {
  color: var(--text-muted);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--gold-primary);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* How It Works Section Icons */
.display-4.text-primary {
  color: var(--gold-primary) !important;
}

/* Animations */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-secondary);
  border-top: 4px solid var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Toast Container */
.toast-container {
  z-index: 9999;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

/* Container adjustments */
.bg-light {
  background-color: var(--bg-secondary) !important;
}

.bg-dark {
  background-color: var(--bg-primary) !important;
}

.text-dark {
  color: var(--text-primary) !important;
}

/* List styles */
.list-unstyled li {
  color: var(--text-secondary);
}

/* Horizontal rules */
hr {
  border-color: var(--border-color);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .timer-display {
    padding: 0.75rem 1rem;
  }
  
  .timer-display h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .navbar,
  .footer,
  .btn,
  .no-print {
    display: none !important;
  }
  
  .card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    background: white !important;
  }
}

/* Custom Utility Classes */
.bg-dark-custom {
  background-color: var(--bg-secondary) !important;
}

.border-gold {
  border-color: var(--gold-primary) !important;
}

.shadow-gold {
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

/* Glow effects */
.glow-gold {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.text-glow {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Quick Bid Buttons */
.quick-bid-btn {
  min-width: 100px;
}

/* Status Colors */
.status-draft { color: var(--text-muted); }
.status-scheduled { color: var(--info); }
.status-live { color: var(--danger); }
.status-ended { color: var(--success); }
.status-cancelled { color: var(--text-muted); }

/* Gold Text Helper */
.gold-text {
  color: var(--gold-primary) !important;
}

/* Section Titles */
.section-title {
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Stat Cards */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
}

.stat-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

/* Category Cards */
.category-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #d4af37 !important;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.category-card img {
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.feature-icon {
  color: var(--gold-primary);
}

.feature-card:hover .feature-icon {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
}

/* Live Auction Card */
.live-auction-card {
  border: 2px solid var(--danger) !important;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.6);
  }
}

.live-header {
  background: linear-gradient(135deg, var(--danger) 0%, #ff5252 100%) !important;
  color: white !important;
  font-weight: 600;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid var(--gold-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Outline Gold Button */
.btn-outline-gold {
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  background: transparent;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* Dashboard Stats Enhancement */
.dashboard-stat {
  text-align: center;
  padding: 1.5rem;
}

.dashboard-stat i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.dashboard-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.dashboard-stat p {
  color: var(--text-muted);
  margin: 0;
}

/* Improved Table Styles */
.table {
  color: var(--text-primary);
}

.table thead th {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--gold-dark);
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody td {
  border-color: var(--border-color);
  vertical-align: middle;
}

.table-hover tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.05);
}
