:root {
  --gold-primary: #e5c07b;
  --gold-glow: rgba(229, 192, 123, 0.4);
  --bless-blue: #00d4ff;
  --deep-dark: #080808;
  --blood-red: #8b0000;
}

body {
  background-color: var(--deep-dark);
  color: #d1d1d1;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.font-classic {
  font-family: 'Cinzel', serif;
}

.font-medieval {
  font-family: 'MedievalSharp', cursive;
}

.hero-bg {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), var(--deep-dark)),
    url('../images/bg2.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, var(--deep-dark) 80%);
  pointer-events: none;
}

.text-glow {
  text-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(0, 0, 0, 0.8);
}

.btn-classic {
  position: relative;
  background: linear-gradient(180deg, #2a2a2a 0%, #0f0f0f 100%);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}

.btn-classic:hover {
  color: #fff;
  box-shadow: 0 0 25px var(--gold-glow);
  transform: scale(1.05);
}

.btn-classic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.btn-classic:hover::before {
  left: 100%;
}

.stat-item {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border 0.3s;
}

.download-card {
  background: linear-gradient(135deg, #121212 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.download-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#registerModal,
#successModal {
  backdrop-filter: blur(10px);
  display: none;
  z-index: 1000;
}

.modal-glass {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 50px rgba(0, 0, 0, 1);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-classic {
  width: 100%;
  background: #18181b;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
}

.input-classic:focus {
  box-shadow: 0 0 0 1px var(--gold-primary);
}

.form-message {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-message.success {
  color: #86efac;
}

.form-message.error {
  color: #fda4af;
}
