/* Christmas Color Palette & Base Styles */
:root {
  --christmas-red: #dc2626;
  --christmas-green: #16a34a;
  --christmas-gold: #facc15;
  --christmas-white: #fefefe;
  --christmas-cream: #fef7cd;
  --christmas-dark-green: #166534;
  --christmas-dark-red: #991b1b;
  --snow-white: #ffffff;
  --winter-blue: #3b82f6;
  --warm-gold: #f59e0b;
  --soft-gray: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--snow-white) 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Snowfall Animation */
.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  color: var(--snow-white);
  font-size: 1rem;
  animation: snowfall linear infinite;
  opacity: 0.8;
}

@keyframes snowfall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Age Verification Modal */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.verification-card {
  background: linear-gradient(145deg, var(--christmas-white), var(--christmas-cream));
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  margin: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--christmas-gold);
}

.christmas-bell {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bellSwing 2s ease-in-out infinite;
}

@keyframes bellSwing {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

.verification-card h2 {
  color: var(--christmas-red);
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.verification-card p {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.confirm-yes, .confirm-no {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.confirm-yes {
  background: linear-gradient(135deg, var(--christmas-green), var(--christmas-dark-green));
  color: var(--christmas-white);
}

.confirm-no {
  background: linear-gradient(135deg, var(--christmas-red), var(--christmas-dark-red));
  color: var(--christmas-white);
}

.confirm-yes:hover, .confirm-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Christmas Header */
.christmas-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--christmas-red), var(--christmas-dark-red));
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid var(--christmas-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.brand-logo .logo-link {
  text-decoration: none;
  color: var(--christmas-white);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Shantell Sans', monospace;
}

.logo-icon {
  animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

.desktop-navigation {
  display: flex;
  gap: 2rem;
}

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

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--christmas-gold);
  transform: translateY(-1px);
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--christmas-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--christmas-red), var(--christmas-dark-red));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding-top: 100px;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-link {
  color: var(--christmas-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--christmas-gold);
}

/* Christmas Hero Section */
.christmas-hero {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--snow-white) 50%, var(--christmas-cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.twinkling-lights {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, var(--christmas-gold), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--christmas-red), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--christmas-green), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

.hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.festive-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--christmas-green), var(--christmas-dark-green));
  color: var(--christmas-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'Shantell Sans', monospace;
}

.primary-text {
  display: block;
  color: var(--christmas-red);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.accent-text {
  display: block;
  color: var(--christmas-green);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-paragraph {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.festive-cta-button {
  background: linear-gradient(135deg, var(--christmas-gold), var(--warm-gold));
  color: var(--text-dark);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.festive-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.button-sparkle {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.5s;
}

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

.game-showcase-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--christmas-white), var(--soft-gray));
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--christmas-gold);
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.showcase-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--christmas-red), var(--christmas-dark-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--christmas-white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.frame-decoration {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
}

.decoration-star {
  position: absolute;
  color: var(--christmas-gold);
  font-size: 1.5rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.decoration-star:nth-child(1) { top: 5px; left: 5px; animation-delay: 0s; }
.decoration-star:nth-child(2) { top: 5px; right: 5px; animation-delay: 0.5s; }
.decoration-star:nth-child(3) { bottom: 5px; left: 5px; animation-delay: 1s; }
.decoration-star:nth-child(4) { bottom: 5px; right: 5px; animation-delay: 1.5s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Festive Overview Section */
.festive-overview {
  padding: 5rem 0;
  background: var(--snow-white);
}

.overview-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.overview-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.overview-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.overview-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.image-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(45deg, var(--christmas-red), var(--christmas-green), var(--christmas-gold));
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

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

.overview-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--christmas-red);
  font-family: 'Shantell Sans', monospace;
}

.overview-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Christmas Features Section */
.christmas-features {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--snow-white) 100%);
}

.features-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.features-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--christmas-red);
  margin-bottom: 1rem;
  font-family: 'Shantell Sans', monospace;
}

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

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-ornament {
  background: linear-gradient(145deg, var(--christmas-white), var(--soft-gray));
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--christmas-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-ornament:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ornament-top {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: ornamentSway 3s ease-in-out infinite;
}

@keyframes ornamentSway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.feature-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--christmas-green);
  margin-bottom: 1.5rem;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Christmas Gateway Section */
.christmas-gateway {
  padding: 5rem 0;
  background: var(--snow-white);
  text-align: center;
}

.gateway-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gateway-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--christmas-red);
  margin-bottom: 1rem;
  font-family: 'Shantell Sans', monospace;
}

.gateway-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.game-screen-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--christmas-gold);
}

.game-screen-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 600px;
}

.screen-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.christmas-start-button {
  background: linear-gradient(135deg, var(--christmas-green), var(--christmas-dark-green));
  color: var(--christmas-white);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.christmas-start-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
}

.start-button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.christmas-start-button:hover .start-button-glow {
  left: 100%;
}

.screen-holly-decoration {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 2rem;
  animation: hollyBounce 2s ease-in-out infinite;
}

@keyframes hollyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Company Information Section */
.company-information {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--snow-white) 100%);
}

.info-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.info-main-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--christmas-red);
  margin-bottom: 1rem;
  font-family: 'Shantell Sans', monospace;
}

.info-main-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.info-card {
  background: linear-gradient(145deg, var(--christmas-white), var(--soft-gray));
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--christmas-gold);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--christmas-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  text-align: left;
}

.card-description a {
  color: var(--christmas-red);
  text-decoration: none;
  font-weight: 600;
}

.card-description a:hover {
  text-decoration: underline;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
  padding: 5rem 0;
  background: var(--snow-white);
}

.disclaimer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.disclaimer-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--christmas-red);
  margin-bottom: 2rem;
  font-family: 'Shantell Sans', monospace;
}

.disclaimer-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.disclaimer-image-area {
  position: relative;
  text-align: center;
}

.disclaimer-graphic {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-glow-effect {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 18px;
  background: linear-gradient(45deg, var(--christmas-gold), var(--warm-gold));
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--christmas-cream) 0%, var(--snow-white) 100%);
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--christmas-red);
  margin-bottom: 1rem;
  font-family: 'Shantell Sans', monospace;
}

.contact-subheading {
  font-size: 1.2rem;
  color: var(--text-light);
}

.christmas-contact-form {
  background: linear-gradient(145deg, var(--christmas-white), var(--soft-gray));
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--christmas-gold);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-field.full-span {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.field-input, .field-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--christmas-white);
}

.field-input:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--christmas-gold);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.form-submit-button {
  background: linear-gradient(135deg, var(--christmas-red), var(--christmas-dark-red));
  color: var(--christmas-white);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  width: 100%;
}

.form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.submit-sparkle {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.form-submit-button:hover .submit-sparkle {
  left: 100%;
}

/* Trust Badges Section */
.trust-badges-section {
  padding: 3rem 0;
  background: var(--snow-white);
}

.badges-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  transition: all 0.3s ease;
  border-radius: 15px;
  padding: 1rem;
  background: rgb(255, 187, 0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.badge-graphic {
  height: 60px;
  width: auto;
  display: block;
}

/* Christmas Footer */
.christmas-footer {
  background: linear-gradient(135deg, var(--christmas-dark-green) 0%, var(--christmas-green) 100%);
  color: var(--christmas-white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-brand-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Shantell Sans', monospace;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

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

.footer-brand-info p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.newsletter-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--christmas-gold);
}

.newsletter-field-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 1rem;
}

.newsletter-field {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  background: var(--christmas-white);
  color: var(--text-dark);
}

.newsletter-submit {
  background: linear-gradient(135deg, var(--christmas-gold), var(--warm-gold));
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.footer-navigation {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav-link {
  color: var(--christmas-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--christmas-gold);
  opacity: 1;
}

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

.footer-copyright {
  font-size: 1rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-navigation {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-card-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-navigation {
    gap: 1rem;
  }

  .badges-wrapper {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    padding: 1rem;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .features-title, .gateway-heading, .info-main-heading, .contact-heading {
    font-size: 2rem;
  }

  .christmas-contact-form {
    padding: 2rem;
  }

  .newsletter-input-wrapper {
    flex-direction: column;
  }
}


  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #7c1301;
}

.content-block p,
ul {
    color: rgba(18, 18, 18, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}
