:root {
  --primary-color: #1e1b4b;
  --secondary-color: #4c1d95;
  --accent-color: #fbbf24;
  --text-light: #f8fafc;
  --text-dark: #1e293b;
  --cosmic-purple: #5b21b6;
  --cosmic-blue: #1e40af;
  --cosmic-gold: #f59e0b;
  --moonstone: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --nebula: linear-gradient(45deg, #1e1b4b, #4c1d95, #5b21b6);
  --stardust: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 50%, #4c1d95 100%);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(30, 27, 75, 0.95), rgba(76, 29, 149, 0.95), rgba(91, 33, 182, 0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo h2 {
  color: var(--cosmic-gold);
  font-size: 1.8rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
  margin-bottom: 0.2rem;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
}

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

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.nav-link:hover, .nav-link.active {
  color: var(--cosmic-gold);
  background: rgba(251, 191, 36, 0.1);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--stardust);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--cosmic-gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 50%, #4c1d95 100%);
  background-image: url(/public/assets/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 50%, #4c1d95 100%);
  margin-top: 280px;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.9), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 4s linear infinite;
}

@keyframes twinkle {
  from { transform: translateY(0px); }
  to { transform: translateY(-100px); }
}

.nebula-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 40% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  animation: floatNebula 8s ease-in-out infinite alternate;
}

@keyframes floatNebula {
  0% { transform: translateX(-20px) translateY(-10px); }
  100% { transform: translateX(20px) translateY(10px); }
}

.constellation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(251, 191, 36, 0.1) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(251, 191, 36, 0.05) 50%, transparent 60%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  margin-bottom: 2rem;
}

.glowing-text {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--stardust);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
  margin-bottom: 1rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--stardust);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  color: var(--text-light);
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(251, 191, 36, 0.5); }
  to { text-shadow: 0 0 40px rgba(251, 191, 36, 0.8), 0 0 60px rgba(251, 191, 36, 0.3); }
}

.subtitle {
  display: block;
  font-size: 1.5rem;
  color: var(--text-light);
  opacity: 0.9;
  font-weight: 300;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--stardust);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--cosmic-gold);
}

.btn-secondary:hover {
  background: var(--cosmic-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.age-disclaimer {
  padding: 1rem 2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 25px;
  display: inline-block;
}

.disclaimer-text {
  color: #fecaca;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.1), transparent);
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.orb-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--stardust);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  color: var(--text-light);
}

/* About Preview Section */
.about-preview {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.5) 0%, rgba(76, 29, 149, 0.3) 100%);
  position: relative;
}

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

.constellation-sparkle {
  position: relative;
}

.constellation-sparkle h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--cosmic-gold);
}

.constellation-sparkle p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.learn-more-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--moonstone);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(103, 126, 234, 0.3);
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 126, 234, 0.5);
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.game-preview-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.game-preview-card:hover {
  transform: scale(1.05);
}

.game-preview-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
}

.starburst-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 30%, rgba(251, 191, 36, 0.2) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-preview-card:hover .starburst-overlay {
  opacity: 1;
}

/* Why Choose Preview Section */
.why-choose-preview {
  padding: 6rem 0;
  background: linear-gradient(45deg, rgba(91, 33, 182, 0.3) 0%, rgba(30, 64, 175, 0.2) 100%);
}

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

.why-choose-text h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--cosmic-gold);
}

.ethereal-text p {
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.cosmic-list {
  list-style: none;
  margin-bottom: 2rem;
}

.cosmic-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  opacity: 0.9;
}

.cosmic-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cosmic-gold);
  font-size: 1.2rem;
}

.cosmic-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--nebula);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
}

.cosmic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(91, 33, 182, 0.5);
}

.portal-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.portal-container img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.stardust-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(251, 191, 36, 0.1) 40%, transparent 70%);
  animation: rotate 10s linear infinite;
}

.portal-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--cosmic-gold), var(--cosmic-purple), var(--cosmic-blue), var(--cosmic-gold));
  border-radius: 25px;
  z-index: -1;
  animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Games Preview Section */
.games-preview {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(30, 27, 75, 0.6) 100%);
}

.games-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.games-scroll-container {
  margin-bottom: 3rem;
}

.games-grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
}

.games-grid::-webkit-scrollbar {
  height: 8px;
}

.games-grid::-webkit-scrollbar-track {
  background: rgba(30, 27, 75, 0.3);
  border-radius: 10px;
}

.games-grid::-webkit-scrollbar-thumb {
  background: var(--cosmic-gold);
  border-radius: 10px;
}

.game-card {
  min-width: 280px;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(76, 29, 149, 0.6) 100%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.crystal-frame {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
  border-color: var(--cosmic-gold);
}

.game-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.game-info {
  padding: 1.5rem;
  text-align: center;
}

.game-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--cosmic-gold);
}

.game-info p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.play-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--stardust);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.play-btn:hover {
  background: var(--cosmic-gold);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.view-all-games {
  text-align: center;
}

/* Page Content Styles */
.about-content, .why-choose-content, .games-collection, .contact-content, .legal-content {
  padding: 4rem 0;
  margin-top: 80px;
}

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

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--cosmic-gold);
}

.text-content h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--cosmic-gold);
}

.text-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.important-notice, .highlight-box {
  background: rgba(76, 29, 149, 0.2);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--cosmic-gold);
  margin: 2rem 0;
}

.important-notice h4, .highlight-box h4 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

.cta-section {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.games-showcase h3 {
  color: var(--cosmic-gold);
  margin-bottom: 2rem;
  text-align: center;
}

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

.showcase-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.showcase-card:hover {
  transform: scale(1.05);
}

.showcase-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 1rem;
  text-align: center;
}

.card-overlay h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-overlay p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Games Collection Styles */
.games-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.game-card-full {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(76, 29, 149, 0.6) 100%);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.game-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
  border-color: var(--cosmic-gold);
}

.game-card-full .game-image {
  position: relative;
  overflow: hidden;
}

.game-card-full .game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card-full:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(30, 27, 75, 0.9), rgba(76, 29, 149, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card-full:hover .game-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 1rem;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--cosmic-gold);
}

.game-card-full .game-info {
  padding: 2rem;
}

.game-card-full .game-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--cosmic-gold);
}

.game-card-full .game-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(251, 191, 36, 0.1);
  color: var(--cosmic-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.games-disclaimer {
  margin-top: 4rem;
}

.disclaimer-box {
  background: rgba(239, 68, 68, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  text-align: center;
}

.disclaimer-box h3 {
  color: #fecaca;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--cosmic-gold);
}

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

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(76, 29, 149, 0.2);
  border-radius: 15px;
  border-left: 4px solid var(--cosmic-gold);
}

.method-icon {
  font-size: 2rem;
  min-width: 3rem;
}

.method-info h3 {
  color: var(--cosmic-gold);
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--cosmic-gold);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.response-time, .support-hours {
  margin: 2rem 0;
}

.response-time h3, .support-hours h3 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

.form-container {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(76, 29, 149, 0.6) 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.form-container h3 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 10px;
  background: rgba(30, 27, 75, 0.5);
  color: var(--text-light);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cosmic-gold);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.age-verification {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--stardust);
  color: var(--text-dark);
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--cosmic-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.faq-section {
  margin-top: 4rem;
}

.faq-section h2 {
  color: var(--cosmic-gold);
  margin-bottom: 2rem;
  text-align: center;
}

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

.faq-item {
  background: rgba(76, 29, 149, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--cosmic-gold);
}

.faq-item h3 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

/* Game Page Styles */
.game-header {
  padding: 6rem 0 2rem;
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(30, 27, 75, 0.6) 100%);
}

.game-title-section {
  text-align: center;
}

.game-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--stardust);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.game-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  background: rgba(251, 191, 36, 0.1);
  color: var(--cosmic-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.game-container {
  padding: 2rem 0;
}

.game-frame {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(76, 29, 149, 0.6) 100%);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 3rem;
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 27, 75, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  z-index: 10;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(251, 191, 36, 0.3);
  border-top: 4px solid var(--cosmic-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

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

.game-iframe {
  border: none;
  border-radius: 15px;
  background: #000;
}

.game-info-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.game-description h2 {
  color: var(--cosmic-gold);
  margin-bottom: 2rem;
}

.game-description h3 {
  color: var(--cosmic-gold);
  margin: 2rem 0 1rem;
}

.feature-list {
  list-style: none;
  margin: 1rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  opacity: 0.9;
}

.game-stats {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(76, 29, 149, 0.6) 100%);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.game-stats h3 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  font-weight: 600;
  opacity: 0.8;
}

.stat-value {
  color: var(--cosmic-gold);
  font-weight: 600;
}

.related-games h3 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
  text-align: center;
}

.related-game-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(76, 29, 149, 0.2);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.related-game-item:hover {
  transform: scale(1.02);
}

.related-game-item img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

.related-info h4 {
  color: var(--cosmic-gold);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.play-related-btn {
  background: var(--stardust);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.play-related-btn:hover {
  background: var(--cosmic-gold);
  transform: scale(1.05);
}

.game-disclaimer {
  padding: 2rem 0;
}

.disclaimer-content {
  background: rgba(239, 68, 68, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  text-align: center;
}

.disclaimer-content h3 {
  color: #fecaca;
  margin-bottom: 1rem;
}

.disclaimer-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Legal Pages Styles */
.legal-document {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(76, 29, 149, 0.6) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(251, 191, 36, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.document-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(251, 191, 36, 0.2);
  padding-bottom: 2rem;
}

.document-header h2 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

.last-updated {
  opacity: 0.8;
  font-style: italic;
}

.document-body h3 {
  color: var(--cosmic-gold);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.document-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(251, 191, 36, 0.2);
}

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

.footer-brand h3 {
  color: var(--cosmic-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.social-games-notice {
  background: rgba(76, 29, 149, 0.2);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--cosmic-gold);
}

.social-games-notice p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--cosmic-gold);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 191, 36, 0.1);
  padding-top: 2rem;
}

.disclaimer-section {
  margin-bottom: 2rem;
}

.animated-disclaimer {
  text-align: center;
  background: rgba(239, 68, 68, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.main-disclaimer {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fecaca;
  margin-bottom: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.age-disclaimer {
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.social-games-emphasis {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.copyright {
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .glowing-text {
    font-size: 2.5rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-grid,
  .why-choose-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .image-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    padding-left: 1rem;
  }
  
  .games-grid-full {
    grid-template-columns: 1fr;
  }
  
  .games-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .game-info-section {
    grid-template-columns: 1fr;
  }
  
  .game-features {
    justify-content: center;
  }
  
  .game-tags {
    justify-content: center;
  }
  
  .cta-section {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .glowing-text {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .game-title {
    font-size: 2rem;
  }
  
  .games-grid-row {
    grid-template-columns: 1fr;
  }
  
  .legal-document {
    padding: 2rem 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}