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

:root {
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --navy: #0a1628;
  --navy-800: #142236;
  --navy-700: #1a2e47;
  --navy-600: #223a5c;
  --text-light: #f0e6c8;
  --text-muted: #a0b0c8;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text-light);
  line-height: 1.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.gold-border {
  border: 1px solid var(--gold);
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.6);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.navy-btn {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid var(--gold);
}

.navy-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.card-navy {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.card-navy:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold-light);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.prose {
  max-width: 100%;
  color: var(--text-light);
  line-height: 1.8;
}

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 0.5rem;
}

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.prose a {
  color: var(--gold-light);
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: #fff;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}

.prose thead {
  background: var(--navy-700);
}

.prose th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: var(--gold);
  font-weight: 600;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.prose td {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--text-light);
  background: var(--navy-800);
}

.prose tr:nth-child(even) td {
  background: var(--navy-700);
}

.velvet-bg {
  background: radial-gradient(ellipse at center, #1a2e47 0%, var(--navy) 70%);
}

.star-pattern {
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.90) 100%);
}

.badge-bonus {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid var(--gold);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(201,168,76,0.2), inset 0 0 40px rgba(201,168,76,0.05);
}

.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.word-cloud span {
  display: inline-block;
  margin: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.word-cloud span:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.faq-question {
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mobile-menu {
  background-color: var(--navy-800);
  border-top: 1px solid rgba(201,168,76,0.2);
}

@media (max-width: 768px) {
  .prose table {
    font-size: 0.875rem;
  }
}
