:root {
  --primary-gold: #c9aa71;
  --dark-gold: #9e8b54;
  --bg-dark: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border-gold: rgba(201, 170, 113, 0.3);
  --glow-gold: rgba(201, 170, 113, 0.6);
  --glass-bg: rgba(26, 26, 26, 0.8);
  --glass-border: rgba(201, 170, 113, 0.2);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.95);
  overflow-x: hidden;
  min-height: 100vh;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #c9aa71;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite linear;
}

.glass-nav {
  background: rgba(10, 10, 10, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 170, 113, 0.3);
}
.glass-nav .navbar-brand {
  color: #c9aa71 !important;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.glass-nav .navbar-brand:hover {
  color: #d4b885 !important;
}

.version-badge {
  background: rgba(201, 170, 113, 0.1);
  color: #c9aa71;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(201, 170, 113, 0.3);
}

.text-gradient {
  background: linear-gradient(45deg, #c9aa71, #fff, #c9aa71);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 3s ease-in-out infinite;
  font-family: "Cinzel", serif;
}

.text-gold {
  color: #c9aa71 !important;
}

.text-light-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}

.border-gold {
  border-color: #c9aa71 !important;
}

.border-gold-opacity {
  border-color: rgba(201, 170, 113, 0.3) !important;
}

.feature-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.feature-item:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.glass-card {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 170, 113, 0.1);
  border-radius: 15px !important;
}
.glass-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 170, 113, 0.15);
  transform: translateY(-2px);
}

.form-control-dark {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 2px solid rgba(201, 170, 113, 0.2) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 10px !important;
}
.form-control-dark:focus {
  background: rgba(0, 0, 0, 0.6) !important;
  border-color: #c9aa71 !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 170, 113, 0.1) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}
.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.nav-pills .nav-link {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 2px;
}
.nav-pills .nav-link:hover {
  background: rgba(201, 170, 113, 0.1);
  color: rgba(255, 255, 255, 0.95);
}
.nav-pills .nav-link.active {
  background: linear-gradient(45deg, #c9aa71, #9e8b54) !important;
  color: #0a0a0a !important;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(45deg, #c9aa71, #9e8b54) !important;
  border: none !important;
  color: #0a0a0a !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 10px !important;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.4);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline-secondary {
  border-color: rgba(201, 170, 113, 0.3) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.btn-outline-secondary:hover {
  background: rgba(201, 170, 113, 0.1) !important;
  border-color: #c9aa71 !important;
  color: #c9aa71 !important;
}

.form-check-input:checked {
  background-color: #c9aa71 !important;
  border-color: #c9aa71 !important;
}
.form-check-input:focus {
  border-color: #c9aa71 !important;
  box-shadow: 0 0 0 0.2rem rgba(201, 170, 113, 0.25) !important;
}

.modal-content.bg-dark {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px);
}

.alert-success {
  background: rgba(34, 197, 94, 0.1) !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
  color: #22c55e !important;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
}

.footer {
  border-color: rgba(201, 170, 113, 0.3) !important;
}
.footer .hover-gold {
  transition: color 0.3s ease;
}
.footer .hover-gold:hover {
  color: #c9aa71 !important;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 0;
  }
  .display-1 {
    font-size: 3rem !important;
  }
  .glass-card {
    border-radius: 20px !important;
  }
  .modal-dialog {
    margin: 0;
  }
  .modal-content {
    border-radius: 0;
    min-height: 100vh;
  }
}
@media (max-width: 576px) {
  .display-1 {
    font-size: 2.5rem !important;
    line-height: 1.1;
  }
  .lead {
    font-size: 1.1rem !important;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .feature-item {
    font-size: 0.8rem;
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid #c9aa71;
  outline-offset: 2px;
}

.min-vh-100 {
  min-height: 100vh;
}

.cursor-pointer {
  cursor: pointer;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

/*# sourceMappingURL=main.css.map */
