@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
  --color-gold-light: #f3e5ab;
  --color-gold: #d4af37;
  --color-gold-dark: #b8860b;
  --color-emerald-light: #34d399;
  --color-emerald: #10b981;
  --color-emerald-dark: #065f46;
  --color-dark-bg: #0f172a;
  --color-dark-card: rgba(15, 23, 42, 0.65);
}

body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--color-dark-bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  color: #f1f5f9;
  min-height: 100vh;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card-gold {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.05);
}

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

/* Emerald Gradient text */
.text-emerald-gradient {
  background: linear-gradient(135deg, #a7f3d0 0%, #10b981 50%, #065f46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold Borders and Glow */
.gold-glow {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.gold-glow-hover:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

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

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

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-modal-in {
  animation: modalFadeIn 0.25s ease-out forwards;
}

/* Custom Checkbox */
.custom-checkbox {
  position: relative;
  cursor: pointer;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0f172a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Custom inputs styling */
.premium-input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.premium-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  background: rgba(15, 23, 42, 0.85);
}
