/* Rimoshan - Custom Styles */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hero gradient overlay */
.hero-gradient {
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
}

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

/* Subtle gold border glow */
.border-gold-glow {
  border: 1px solid rgba(234, 179, 8, 0.3);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.05);
}

/* Step number circle */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EAB308;
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav blur */
.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Legal page styles */
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #EAB308;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FDE68A;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: #D1D5DB;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #D1D5DB;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.legal-content th,
.legal-content td {
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 0.75rem 1rem;
  text-align: left;
  color: #D1D5DB;
}

.legal-content th {
  background: rgba(234, 179, 8, 0.1);
  color: #EAB308;
  white-space: nowrap;
  width: 30%;
}
