/* =============================================
   Atlantic Ace Casino - Custom CSS
   Theme: Atlantic Ace North Premium
   Navy surfaces, golden highlights, calm luxury
   ============================================= */

/* CSS Custom Properties */
:root {
  --color-navy-deep: #0a1628;
  --color-navy-primary: #0f2847;
  --color-navy-light: #1a3a5c;
  --color-navy-surface: #162d4a;
  --color-gold-primary: #d4a853;
  --color-gold-light: #f0d48a;
  --color-gold-dark: #b8923e;
  --color-cream: #faf8f5;
  --color-cream-soft: #f5f3ef;
  --color-white: #ffffff;
  --color-text-light: #e8e6e3;
  --color-text-muted: #a8b4c4;
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Base Body */
body {
  font-family: var(--font-body);
  background-color: var(--color-navy-deep);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* =============================================
   Keyframe Animations
   ============================================= */

/* Particle Float Animation */
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-1.25rem) translateX(0.625rem) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-0.625rem) translateX(-0.625rem) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-1.875rem) translateX(0.3125rem) scale(1.05);
    opacity: 0.7;
  }
}

/* Tilt Animation */
@keyframes tiltGlow {
  0%, 100% {
    transform: perspective(31.25rem) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: perspective(31.25rem) rotateX(2deg) rotateY(-2deg);
  }
  50% {
    transform: perspective(31.25rem) rotateX(-1deg) rotateY(2deg);
  }
  75% {
    transform: perspective(31.25rem) rotateX(1deg) rotateY(-1deg);
  }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Pulse Glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 1.25rem rgba(212, 168, 83, 0.3);
  }
  50% {
    box-shadow: 0 0 2.5rem rgba(212, 168, 83, 0.6);
  }
}

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.625rem);
  }
}

/* =============================================
   Animation Utility Classes
   ============================================= */

.animate-particle {
  animation: particleFloat 6s ease-in-out infinite;
}

.animate-tilt {
  animation: tiltGlow 8s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold-light) 50%,
    var(--color-gold-dark) 100%
  );
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

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

/* Particle Container */
.particle-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--color-gold-primary);
  border-radius: 50%;
  opacity: 0.4;
}

.particle:nth-child(1) { top: 10%; left: 15%; animation: particleFloat 7s ease-in-out infinite; }
.particle:nth-child(2) { top: 20%; left: 80%; animation: particleFloat 5s ease-in-out infinite 0.5s; }
.particle:nth-child(3) { top: 60%; left: 25%; animation: particleFloat 8s ease-in-out infinite 1s; }
.particle:nth-child(4) { top: 75%; left: 70%; animation: particleFloat 6s ease-in-out infinite 1.5s; }
.particle:nth-child(5) { top: 40%; left: 50%; animation: particleFloat 9s ease-in-out infinite 2s; }
.particle:nth-child(6) { top: 85%; left: 40%; animation: particleFloat 7s ease-in-out infinite 0.8s; }

/* =============================================
   Navigation Styles
   ============================================= */

.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 40, 71, 0.95);
  backdrop-filter: blur(0.75rem);
  border-bottom: 0.0625rem solid rgba(212, 168, 83, 0.2);
}

.nav-link {
  color: var(--color-text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold-primary);
  background: rgba(212, 168, 83, 0.1);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy-primary);
  z-index: 45;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-cream);
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 0.0625rem solid rgba(212, 168, 83, 0.2);
  transition: all 0.3s var(--transition-smooth);
}

.mobile-menu-link:hover {
  color: var(--color-gold-primary);
  background: rgba(212, 168, 83, 0.1);
  padding-left: 2rem;
}

/* Burger Icon */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.25rem;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 0.1875rem;
  background: var(--color-gold-primary);
  border-radius: 0.125rem;
  transition: all 0.3s var(--transition-smooth);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.375rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.4375rem);
}

/* =============================================
   Button Styles
   ============================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
  color: var(--color-navy-deep);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 0.25rem 1rem rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(212, 168, 83, 0.4);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-primary));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-gold-primary);
  font-weight: 600;
  font-size: 1rem;
  border: 0.125rem solid var(--color-gold-primary);
  border-radius: 0.5rem;
  transition: all 0.3s var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-0.125rem);
}

/* =============================================
   Hero Section
   ============================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy-primary) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(15, 40, 71, 0.85) 50%,
    rgba(10, 22, 40, 0.95) 100%
  );
}

/* SVG Pattern Background */
.svg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bonus-badge {
  background: linear-gradient(135deg, rgba(22, 45, 74, 0.95), rgba(15, 40, 71, 0.98));
  border: 0.125rem solid var(--color-gold-primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.4), 0 0 3rem rgba(212, 168, 83, 0.15);
  animation: tiltGlow 8s ease-in-out infinite;
}

/* =============================================
   Game Cards
   ============================================= */

.game-card {
  position: relative;
  background: var(--color-navy-surface);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  border: 0.0625rem solid rgba(212, 168, 83, 0.1);
}

.game-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3), 0 0 1.5rem rgba(212, 168, 83, 0.2);
  border-color: var(--color-gold-primary);
}

.game-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.game-card-content {
  padding: 1rem;
}

.game-card-title {
  color: var(--color-cream);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* =============================================
   Step Cards
   ============================================= */

.step-card {
  position: relative;
  background: var(--color-navy-surface);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 0.0625rem solid rgba(212, 168, 83, 0.15);
  transition: all 0.4s var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-0.25rem);
}

.step-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
  color: var(--color-navy-deep);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.75rem rgba(212, 168, 83, 0.4);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
}

/* =============================================
   Payment Table
   ============================================= */

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.payment-table {
  width: 100%;
  min-width: 37.5rem;
  border-collapse: collapse;
  background: var(--color-navy-surface);
  border-radius: 0.75rem;
  overflow: hidden;
}

.payment-table th {
  background: var(--color-navy-primary);
  color: var(--color-gold-primary);
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 0.125rem solid var(--color-gold-dark);
}

.payment-table td {
  padding: 1rem 1.25rem;
  color: var(--color-text-light);
  border-bottom: 0.0625rem solid rgba(212, 168, 83, 0.1);
}

.payment-table tr:hover td {
  background: rgba(212, 168, 83, 0.05);
}

.payment-icon {
  color: var(--color-gold-primary);
  margin-right: 0.5rem;
}

/* =============================================
   Promo Cards
   ============================================= */

.promo-card {
  background: linear-gradient(135deg, var(--color-navy-surface), var(--color-navy-light));
  border-radius: 1rem;
  padding: 2rem;
  border: 0.0625rem solid rgba(212, 168, 83, 0.2);
  transition: all 0.4s var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

.promo-card-title {
  color: var(--color-gold-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.promo-card-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* =============================================
   Review Blocks
   ============================================= */

.review-block {
  background: var(--color-navy-surface);
  border-radius: 1rem;
  padding: 2rem;
  border: 0.0625rem solid rgba(212, 168, 83, 0.15);
}

.review-block-title {
  color: var(--color-gold-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.125rem solid rgba(212, 168, 83, 0.3);
}

.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.provider-tag {
  background: rgba(212, 168, 83, 0.1);
  color: var(--color-text-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  border: 0.0625rem solid rgba(212, 168, 83, 0.2);
  transition: all 0.3s var(--transition-smooth);
}

.provider-tag:hover {
  background: rgba(212, 168, 83, 0.2);
  color: var(--color-gold-light);
}

/* =============================================
   FAQ Section
   ============================================= */

.faq-item {
  background: var(--color-navy-surface);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 0.0625rem solid rgba(212, 168, 83, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-cream);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(212, 168, 83, 0.05);
}

.faq-question i {
  color: var(--color-gold-primary);
  transition: transform 0.3s var(--transition-smooth);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 31.25rem;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =============================================
   Footer Styles
   ============================================= */

.footer {
  background: var(--color-navy-deep);
  border-top: 0.0625rem solid rgba(212, 168, 83, 0.2);
  padding: 3rem 0 2rem;
}

.footer-link {
  color: var(--color-text-muted);
  transition: color 0.3s var(--transition-smooth);
}

.footer-link:hover {
  color: var(--color-gold-primary);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-gold-primary);
  color: var(--color-navy-deep);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
}

.responsible-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 0.5rem;
  color: var(--color-gold-primary);
  transition: all 0.3s var(--transition-smooth);
}

.responsible-icon:hover {
  background: rgba(212, 168, 83, 0.2);
}

/* =============================================
   Section Styles
   ============================================= */

.section-title {
  color: var(--color-cream);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  font-size: 1.0625rem;
  max-width: 37.5rem;
  margin: 0 auto 3rem;
}

.gold-accent {
  color: var(--color-gold-primary);
}

.section-divider {
  width: 5rem;
  height: 0.1875rem;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  margin: 0 auto 1.5rem;
}

/* =============================================
   Prose Styling for Markdown Content
   ============================================= */

.prose {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 100%;
}

.prose h2 {
  color: var(--color-gold-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.125rem solid rgba(212, 168, 83, 0.3);
  line-height: 1.3;
}

.prose h3 {
  color: var(--color-cream);
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose h4 {
  color: var(--color-gold-light);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.prose a {
  color: var(--color-gold-primary);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: color 0.3s var(--transition-smooth);
}

.prose a:hover {
  color: var(--color-gold-light);
}

.prose strong {
  color: var(--color-cream);
  font-weight: 600;
}

.prose em {
  font-style: italic;
  color: var(--color-gold-light);
}

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  color: var(--color-text-light);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-gold-primary);
  border-radius: 50%;
}

.prose ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  counter-reset: prose-counter;
}

.prose ol li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
  counter-increment: prose-counter;
}

.prose ol li::before {
  content: counter(prose-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-gold-primary);
  color: var(--color-navy-deep);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(212, 168, 83, 0.08);
  border-left: 0.25rem solid var(--color-gold-primary);
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--color-cream);
  font-style: italic;
}

.prose blockquote p {
  margin-bottom: 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

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

.prose th {
  color: var(--color-gold-primary);
  font-weight: 600;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 0.125rem solid var(--color-gold-dark);
  white-space: nowrap;
}

.prose td {
  padding: 0.875rem 1rem;
  color: var(--color-text-light);
  border-bottom: 0.0625rem solid rgba(212, 168, 83, 0.1);
  background: var(--color-navy-surface);
}

.prose tbody tr:hover td {
  background: rgba(212, 168, 83, 0.05);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  border: 0.0625rem solid rgba(212, 168, 83, 0.2);
}

.prose hr {
  border: none;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  margin: 2.5rem 0;
}

.prose code {
  background: rgba(212, 168, 83, 0.1);
  color: var(--color-gold-light);
  padding: 0.1875rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  font-family: 'Fira Code', monospace;
}

.prose pre {
  background: var(--color-navy-surface);
  border: 0.0625rem solid rgba(212, 168, 83, 0.2);
  border-radius: 0.5rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.prose pre code {
  background: transparent;
  padding: 0;
}

/* Prose Table Responsive Wrapper */
.prose .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.prose .table-responsive table {
  margin: 0;
}

/* =============================================
   Utility Classes
   ============================================= */

.text-gold {
  color: var(--color-gold-primary);
}

.text-cream {
  color: var(--color-cream);
}

.text-muted {
  color: var(--color-text-muted);
}

.bg-navy-deep {
  background-color: var(--color-navy-deep);
}

.bg-navy-surface {
  background-color: var(--color-navy-surface);
}

.bg-gradient-navy {
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy-primary) 100%);
}

/* Disclaimer Styling */
.disclaimer {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background: rgba(212, 168, 83, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border-left: 0.1875rem solid var(--color-gold-dark);
  margin-top: 1.25rem;
}

/* =============================================
   Responsive Breakpoints
   ============================================= */

@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Small screen adjustments */
@media (max-width: 640px) {
  .hero-section {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .bonus-badge {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 0.125rem solid var(--color-gold-primary);
  outline-offset: 0.125rem;
}

/* Print styles */
@media print {
  .nav-sticky,
  .mobile-menu,
  .particle-container,
  .footer {
    display: none;
  }
  
  .prose {
    color: #000;
  }
  
  .prose h2,
  .prose h3,
  .prose h4 {
    color: #000;
  }
}
