/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Custom Properties */
:root {
  --bg-primary: #0f0a1a;
  --gold-primary: #ffd700;
  --gold-secondary: #b8860b;
  --violet-mystic: #8a2be2;
  --violet-dark: #4b0082;
  --white-pure: #ffffff;
  --white-soft: #f0e6ff;
  --black-transparent: rgba(0, 0, 0, 0.8);
  --gold-glow: rgba(255, 215, 0, 0.3);
  
  --font-primary: 'Cinzel', serif;
  --font-secondary: 'Inter', sans-serif;
  
  --shadow-gold: 0 0 20px var(--gold-glow);
  --shadow-violet: 0 0 15px rgba(138, 43, 226, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background: var(--bg-primary);
  color: var(--white-pure);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background Particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -5s; }
.particle:nth-child(3) { left: 30%; animation-delay: -10s; }
.particle:nth-child(4) { left: 40%; animation-delay: -15s; }
.particle:nth-child(5) { left: 60%; animation-delay: -3s; }
.particle:nth-child(6) { left: 70%; animation-delay: -8s; }
.particle:nth-child(7) { left: 80%; animation-delay: -13s; }
.particle:nth-child(8) { left: 90%; animation-delay: -18s; }

@keyframes float {
  from {
    transform: translateY(100vh) rotate(0deg);
  }
  to {
    transform: translateY(-100vh) rotate(360deg);
  }
}

/* Header Styles */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold-primary);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scarab-icon {
  font-size: 2rem;
  animation: scarabPulse 2s infinite;
}

@keyframes scarabPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--shadow-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white-soft);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0f2e 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}

.pyramid-silhouette {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: linear-gradient(45deg, transparent 50%, rgba(255, 215, 0, 0.1) 50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}

.floating-coins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.coin {
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, var(--gold-primary), var(--gold-secondary));
  border-radius: 50%;
  opacity: 0.8;
  animation: coinFloat 6s infinite ease-in-out;
}

.coin:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.coin:nth-child(2) { top: 30%; right: 15%; animation-delay: -1s; }
.coin:nth-child(3) { top: 60%; left: 20%; animation-delay: -2s; }
.coin:nth-child(4) { top: 40%; right: 25%; animation-delay: -3s; }
.coin:nth-child(5) { top: 70%; right: 10%; animation-delay: -4s; }

@keyframes coinFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--gold-primary), var(--white-pure), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--shadow-gold);
  animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
  from { text-shadow: 0 0 20px var(--gold-glow); }
  to { text-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--gold-glow); }
}

.hero-icons {
  display: inline-block;
  margin-left: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--white-soft);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  position: relative;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-bounce);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  font-family: var(--font-primary);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.sand-explosion {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--gold-primary), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cta-button:active .sand-explosion {
  width: 200px;
  height: 200px;
  opacity: 0.7;
}

/* Games Section */
.games-section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  text-shadow: var(--shadow-gold);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--white-soft);
  max-width: 600px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  position: relative;
  height: 400px;
  perspective: 1000px;
  cursor: pointer;
}

.game-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.game-card:hover .game-card-inner {
  transform: rotateY(180deg);
}

.game-card-front,
.game-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--violet-dark), var(--bg-primary));
  border: 2px solid transparent;
  background-clip: padding-box;
}

.game-card-front {
  background: linear-gradient(135deg, var(--violet-dark), var(--bg-primary));
}

.game-card-back {
  background: linear-gradient(135deg, var(--gold-secondary), var(--violet-dark));
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.game-card:hover {
  animation: cardGlow 2s infinite alternate;
}

@keyframes cardGlow {
  from { box-shadow: 0 0 20px var(--gold-glow); }
  to { box-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--violet-mystic); }
}

.hot-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.game-image {
  width: 100%;
  height: 70%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, var(--black-transparent));
  padding: 2rem;
  color: white;
}

.game-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.play-btn {
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  border: none;
  padding: 0.8rem 2rem;
  color: var(--bg-primary);
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-family: var(--font-primary);
}

.play-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px var(--gold-glow);
}

/* VIP Section */
.vip-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--violet-dark), var(--bg-primary));
  position: relative;
}

.vip-content {
  max-width: 800px;
  margin: 0 auto;
}

.xp-progress {
  margin-bottom: 3rem;
}

.progress-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.progress-bar {
  background: rgba(0, 0, 0, 0.3);
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
  width: 75%;
  transition: width 2s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

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

.progress-text {
  text-align: center;
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.badges-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.badge.earned {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.badge.locked {
  opacity: 0.5;
  filter: grayscale(1);
}

.badge:hover.earned {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.badge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.badge h4 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.badge p {
  color: var(--white-soft);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--white-soft);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 3rem 0 2rem;
  position: relative;
  border-top: 2px solid var(--gold-primary);
}

.hieroglyph-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--gold-primary), 
    var(--violet-mystic), 
    var(--gold-primary), 
    transparent
  );
  animation: borderShimmer 3s infinite;
}

@keyframes borderShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer-content {
  text-align: center;
}

.footer-text {
  font-family: var(--font-primary);
  color: var(--white-soft);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  color: var(--white-soft);
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 0.5rem 1rem;
}

.footer-link:hover,
.footer-link.active {
  color: var(--gold-primary);
  text-shadow: var(--shadow-gold);
}

/* Game Modal */
.game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  height: 80%;
  background: var(--bg-primary);
  border-radius: 15px;
  border: 2px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 0 50px var(--gold-glow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--violet-dark), var(--bg-primary));
  border-bottom: 1px solid var(--gold-primary);
}

.modal-header h3 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.close-modal:hover {
  color: var(--white-pure);
  transform: scale(1.1);
}

.modal-body {
  height: calc(100% - 80px);
  padding: 0;
}

#game-iframe-container {
  width: 100%;
  height: 100%;
}

#game-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Page Hero Styles for Legal Pages */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--violet-dark), var(--bg-primary));
  text-align: center;
  position: relative;
  z-index: 10;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  text-shadow: var(--shadow-gold);
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--white-soft);
  margin-bottom: 2rem;
}

.last-updated {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

/* Legal Content Styles */
.legal-content {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.table-of-contents {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.table-of-contents h3 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.table-of-contents ul {
  list-style: none;
}

.table-of-contents li {
  margin-bottom: 0.5rem;
}

.table-of-contents a {
  color: var(--white-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: block;
  padding: 0.3rem 0;
}

.table-of-contents a:hover {
  color: var(--gold-primary);
  padding-left: 0.5rem;
}

.legal-text {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.intro-section {
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid var(--gold-primary);
  padding: 1.5rem;
  margin-bottom: 3rem;
  border-radius: 0 10px 10px 0;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-shadow: var(--shadow-gold);
}

.legal-section h3 {
  font-family: var(--font-primary);
  color: var(--gold-secondary);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.legal-section p {
  color: var(--white-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--white-soft);
  margin: 1rem 0 1rem 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info-box {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
  color: var(--gold-primary);
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 1rem;
  color: var(--white-pure);
  font-family: var(--font-secondary);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  border: none;
  padding: 1rem 2rem;
  color: var(--bg-primary);
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 20px var(--gold-glow);
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-method h3 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-method p {
  color: var(--white-pure);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.response-time {
  color: var(--white-soft);
  font-size: 0.9rem;
  font-style: italic;
}

.contact-hours h3 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
}

.hour-item.special {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-primary);
  font-weight: 600;
}

.quick-help {
  margin-top: 4rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.help-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: var(--transition-smooth);
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.help-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.help-card h3 {
  font-family: var(--font-primary);
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.help-card p {
  color: var(--white-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.help-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  display: inline-block;
}

.help-link:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .game-card {
    height: 350px;
  }
  
  .badges-container {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .modal-content {
    width: 95%;
    height: 85%;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .table-of-contents {
    position: static;
    order: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .game-card {
    height: 300px;
  }
  
  .modal-content {
    width: 98%;
    height: 90%;
  }

  .legal-text {
    padding: 1.5rem;
  }

  .page-hero {
    padding: 6rem 0 3rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .particles-container {
    display: none;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
.nav-link:focus,
.footer-link:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --bg-primary: #000000;
    --white-pure: #ffffff;
    --gold-primary: #ffff00;
  }
}