:root {
  --marble-white: #f5f5f5;
  --gold-trim: #d4af37;
  --sapphire-blue: #0f52ba;
  --dark-marble: #e0e0e0;
  --gold-hover: #b8860b;
  --sapphire-dark: #0a3982;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: var(--marble-white);
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ancient-font {
  font-family: "Cinzel", serif;
}

.hero-section {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("https://placeholder.com/2000x1000"); */
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

.gold-btn {
  background-color: var(--gold-trim);
  color: #000;
  transition: all 0.3s;
}

.gold-btn:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.blue-btn {
  background-color: var(--sapphire-blue);
  color: white;
  transition: all 0.3s;
}

.blue-btn:hover {
  background-color: var(--sapphire-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 82, 186, 0.5);
}

.ancient-border {
  border: 2px solid var(--gold-trim);
}

.card-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ancient-bg {
  background-color: #fff;
  background-image: linear-gradient(
      90deg,
      var(--dark-marble) 0px,
      transparent 1px
    ),
    linear-gradient(var(--dark-marble) 0px, transparent 1px);
  background-size: 20px 20px;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.95);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.age-verification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.game-container {
  width: 90%;
  max-width: 800px;
  height: 90vh;
  background-color: #000;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--gold-trim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  z-index: 1002;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.close-btn:hover {
  background-color: var(--gold-hover);
  transform: scale(1.1);
}

#gameFrame {
  border: none;
  border-radius: 10px;
}

/* Leaderboard Styling */
.leader-item {
  border-left: 4px solid var(--gold-trim);
  transition: all 0.3s;
}

.leader-item:hover {
  transform: translateX(5px);
  border-left-width: 8px;
}

/* Testimonial Styling */
.testimonial {
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px);
}

/* FAQ Styling */
.faq-item {
  border-bottom: 1px solid var(--dark-marble);
}

.faq-question {
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Trust Badges */
.trust-badge {
  transition: all 0.3s;
}

.trust-badge:hover {
  transform: scale(1.05);
}

/* Legal Links */
.legal-link {
  color: #666;
  transition: all 0.3s;
}

.legal-link:hover {
  color: var(--gold-trim);
}

/* Game Guide Tabs */
.guide-tab {
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.guide-tab.active {
  border-bottom-color: var(--gold-trim);
  color: var(--gold-trim);
}

.guide-content {
  display: none;
}

.guide-content.active {
  display: block;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Styles */
#mobileMenu {
  transition: all 0.3s ease;
}

#mobileMenu.show {
  display: block;
}

#mobileMenu.hide {
  display: none;
}
