/* Pine Whisper Art - Artistic Gaming Theme
   Creative and artistic design with unique layouts */

/* CSS Variables */
:root {
  --pine-emerald: #2d5a3d;
  --whisper-purple: #8b5a8c;
  --art-coral: #ff6b6b;
  --cream-canvas: #faf8f2;
  --deep-teal: #1e4a52;
  --soft-lavender: #c8a4d4;
  --warm-peach: #ffb347;
  --midnight-ink: #1a1a2e;
  --silver-mist: #e8e8e8;
  --artist-gold: #d4af37;
  --shadow-soft: rgba(45, 90, 61, 0.15);
  --shadow-purple: rgba(139, 90, 140, 0.2);
  --border-radius: 25px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px; /* consistent header space for fixed header */
}

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

html, body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--midnight-ink);
  background: linear-gradient(135deg, var(--cream-canvas) 0%, var(--silver-mist) 50%, var(--cream-canvas) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  /* reserve space for fixed header so pages don't need individual margin-top adjustments */
  /* padding-top: var(--header-height); */
}

/* Ensure the root doesn't produce horizontal scroll */
html { overflow-x: hidden; }

/* Artistic background pattern */
/* body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(139, 90, 140, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 90, 61, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
} */

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

/* Artistic Header */
.header {
  background: rgba(250, 248, 242, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 3px solid var(--pine-emerald);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 8px 32px var(--shadow-soft);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pine-emerald);
  text-decoration: none;
  position: relative;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--pine-emerald), var(--whisper-purple));
  border-radius: 50% 20% 50% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px var(--shadow-purple);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(139, 90, 140, 0.05), transparent);
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
}
.nav-menu .nav-link {
  text-decoration: none;
  color: var(--midnight-ink);
  font-weight: 500;

  padding: 0.6rem 0.8rem;
  align-items: center;
}

/* desktop link with animated underline */
.nav-menu .nav-link {
  position: relative;
  padding: 0.6rem 0.4rem;
  border-radius: 6px;
  transition: color 220ms ease, transform 220ms ease;
}

.nav-menu .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--whisper-purple), var(--art-coral));
  border-radius: 2px;
  transition: width 260ms cubic-bezier(0.2,0.8,0.2,1);
}

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

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--pine-emerald);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: linear-gradient(45deg, var(--pine-emerald), var(--whisper-purple));
  border: none;
  color: white;
  font-size: 1.4rem;
  padding: 0.6rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-purple);
}

/* Hamburger morph icon */
.mobile-toggle .hamburger {
  display: inline-block;
  transition: transform 300ms cubic-bezier(0.2,0.8,0.2,1);
}

/* Mobile sliding panel */
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(250,248,242,0.98), rgba(255,255,255,0.95));
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  z-index: 1500;
  transition: transform 360ms cubic-bezier(0.2,0.9,0.2,1);
  padding: 3.5rem 1.5rem;
  display: flex;
  align-items: flex-start;
  transform: translateX(100%); /* hide off-canvas without changing page width */
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-menu-list {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li { margin-bottom: 1.25rem; }
.mobile-link {
  display: block;
  font-size: 1.1rem;
  color: var(--midnight-ink);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: background 220ms ease, transform 220ms ease;
}
.mobile-link:hover { background: rgba(139,90,140,0.06); transform: translateX(6px); }

/* Artistic Hero Section */
.hero {
  background: linear-gradient(135deg, var(--pine-emerald) 0%, var(--deep-teal) 50%, var(--whisper-purple) 100%);
  color: white;
  text-align: center;
  padding: 180px 0 120px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(255, 179, 71, 0.1) 0%, transparent 60%);
  animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--warm-peach);
  color: var(--midnight-ink);
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(255, 179, 71, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

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

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, white, var(--soft-lavender), var(--warm-peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-image-space {
  width: 100%;
  max-width: 600px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--art-coral), var(--warm-peach));
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  /* transition: var(--transition); */
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  /* transition: var(--transition); */
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* Mirror homepage hero styling for legal pages */
.legal-hero {
  background: linear-gradient(135deg, var(--pine-emerald) 0%, var(--deep-teal) 50%, var(--whisper-purple) 100%);
  color: white;
  text-align: center;
  /* Keep the same internal spacing as the homepage hero but no extra top margin */
  padding: 140px 0 120px; /* reduced top padding to account for fixed header */
  position: relative;
  overflow: hidden;
}

.legal-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(255, 179, 71, 0.1) 0%, transparent 60%);
  animation: heroShimmer 8s ease-in-out infinite;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, white, var(--soft-lavender), var(--warm-peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.legal-hero .hero-image-space {
  width: 100%;
  max-width: 600px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.legal-hero .cta-button { /* cta-button already global, but ensure visible */
  z-index: 2;
}

.legal-hero .last-updated {
  margin-top: 1rem;
  opacity: 0.9;
  color: rgba(255,255,255,0.95);
}

/* Creative Game Section */
.game-section {
  padding: 100px 0;
  background: var(--cream-canvas);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--pine-emerald), var(--whisper-purple), var(--art-coral));
  border-radius: 2px;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--pine-emerald);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--deep-teal);
  opacity: 0.9;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.game-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px var(--shadow-soft);
  overflow: hidden;
  /* transition: var(--transition); */
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--pine-emerald), var(--whisper-purple), var(--art-coral));
  z-index: -1;
  margin: -3px;
  border-radius: var(--border-radius);
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px var(--shadow-purple);
}

.game-header {
  background: linear-gradient(135deg, var(--whisper-purple), var(--art-coral));
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.game-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(135deg, var(--whisper-purple), var(--art-coral));
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.game-iframe-container {
  width: 100%;
  height: 420px;
  position: relative;
  background: var(--silver-mist);
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Artistic Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--silver-mist) 0%, var(--cream-canvas) 100%);
}

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

.feature-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px 5px 20px 5px;
  text-align: center;
  /* transition: var(--transition); */
  position: relative;
  box-shadow: 0 10px 30px var(--shadow-soft);
  border: 2px solid transparent;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--pine-emerald), var(--whisper-purple), var(--art-coral), var(--warm-peach));
  z-index: -1;
  border-radius: 20px 5px 20px 5px;
  opacity: 0;
  /* transition: var(--transition); */
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 20px 50px var(--shadow-purple);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pine-emerald), var(--whisper-purple));
  border-radius: 50% 20% 50% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px var(--shadow-purple);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(10deg); }
}

.feature-item h3 {
  color: var(--pine-emerald);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-item p {
  color: var(--deep-teal);
  line-height: 1.7;
  opacity: 0.9;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--cream-canvas);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--pine-emerald);
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--art-coral), var(--warm-peach));
  border-radius: 2px;
}

.about-text p {
  color: var(--deep-teal);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, rgba(139, 90, 140, 0.1), rgba(45, 90, 61, 0.1));
  border: 2px dashed var(--whisper-purple);
  border-radius: 15px 50px 15px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whisper-purple);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--deep-teal) 0%, var(--pine-emerald) 100%);
  color: white;
}

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

.review-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px 5px 15px 5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* transition: var(--transition); */
}

.review-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.95;
}

.review-author {
  font-weight: 600;
  color: var(--warm-peach);
  margin-bottom: 0.5rem;
}

.review-rating {
  color: var(--artist-gold);
  font-size: 1.1rem;
}

/* Artistic Footer */
.footer {
  background: var(--midnight-ink);
  color: var(--silver-mist);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pine-emerald), var(--whisper-purple), var(--art-coral), var(--warm-peach));
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--warm-peach);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--silver-mist);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--art-coral);
  transition: var(--transition);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links a:hover {
  color: var(--art-coral);
  transform: translateX(5px);
}

.footer-brand h3 {
  color: var(--pine-emerald);
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.7;
  opacity: 0.9;
}

/* Artistic Disclaimer Card */
.disclaimer-card {
  background: linear-gradient(135deg, var(--whisper-purple), var(--art-coral));
  padding: 2rem;
  border-radius: 20px 5px 20px 5px;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.disclaimer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: cardShimmer 4s ease-in-out infinite;
}

@keyframes cardShimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.disclaimer-card h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.disclaimer-card p {
  color: white;
  opacity: 0.95;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Age Verification Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* ensure overlay matches viewport height */
  background: rgba(26, 26, 46, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--pine-emerald), var(--whisper-purple), var(--art-coral));
  z-index: -1;
  margin: -3px;
  border-radius: var(--border-radius);
}

.modal-content h2 {
  color: var(--pine-emerald);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.modal-content p {
  color: var(--deep-teal);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-confirm,
.btn-reject {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-confirm {
  background: linear-gradient(45deg, var(--pine-emerald), var(--whisper-purple));
  color: white;
}

.btn-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-purple);
}

.btn-reject {
  background: linear-gradient(45deg, var(--art-coral), var(--warm-peach));
  color: white;
}

.btn-reject:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* When the age modal is active, blur and disable interaction with the rest of the page */
body.site-blurred > :not(#ageModal) {
  filter: blur(6px) saturate(0.95);
  pointer-events: none;
  user-select: none;
}

/* Contact Form Styles */
.contact-section {
  padding: 120px 0;
  background: var(--silver-mist);
}

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

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px 5px 20px 5px;
  box-shadow: 0 15px 40px var(--shadow-soft);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--pine-emerald);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--silver-mist);
  border-radius: 15px;
  font-family: inherit;
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--whisper-purple);
  box-shadow: 0 0 0 3px rgba(139, 90, 140, 0.1);
}

.submit-btn {
  background: linear-gradient(45deg, var(--pine-emerald), var(--whisper-purple));
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  font-size: 1.1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-purple);
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 5px 20px 5px 20px;
  box-shadow: 0 15px 40px var(--shadow-soft);
}

.info-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--silver-mist);
}

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

.info-section h3 {
  color: var(--pine-emerald);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.info-section p {
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
}

.info-section strong {
  color: var(--whisper-purple);
}

/* Legal Pages */
.legal-content {
  padding: 140px 0 100px;
  background: white;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h1 {
  color: var(--pine-emerald);
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}

.legal-content h2 {
  color: var(--deep-teal);
  margin: 2.5rem 0 1rem;
  font-size: 1.8rem;
}

.legal-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--midnight-ink);
}

.legal-content ul {
  margin: 1rem 0 1.5rem 2rem;
  color: var(--midnight-ink);
}

.legal-content li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 32px var(--shadow-soft);
    border-radius: 0 0 20px 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 2rem;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 140px 0 100px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .features-container,
  .reviews-grid {
    gap: 1.5rem;
  }
  
  .feature-item,
  .review-item {
    padding: 2rem 1.5rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem 1.5rem;
  }
}