/* Frozen Magic Styles */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* CSS Variables - Frozen Color Palette */
:root {
  --ice-blue: #87ceeb;
  --crystal-blue: #467fb4;
  --deep-blue: #08a3fc;
  --frozen-white: #ffffff;
  --snow-white: #f0f8ff;
  --lavender: #e6e6fa;
  --light-purple: #dda0dd;
  --silver: #c0c0c0;
  --platinum: #b0c4de;
  --dark-slate: #2f4f4f;
  --midnight-blue: #0a4853;
  --magic-gradient: linear-gradient(
    135deg,
    var(--ice-blue),
    var(--crystal-blue),
    var(--deep-blue)
  );
  --frost-gradient: linear-gradient(135deg, var(--snow-white), var(--lavender));
  --ice-gradient: linear-gradient(
    135deg,
    rgba(135, 206, 235, 0.1),
    rgba(30, 144, 255, 0.2)
  );
  --shadow-ice: 0 8px 32px rgba(30, 144, 255, 0.3);
  --shadow-crystal: 0 4px 16px rgba(135, 206, 235, 0.4);
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h2 {
  margin: 15px 0;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--midnight-blue);
  color: var(--snow-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Frozen Animated Background */
.frozen-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #191970 0%, #08a3fc 50%, #467fb4 100%);
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: snowfall 15s infinite linear;
  text-shadow: 0 0 10px rgba(135, 206, 235, 0.8);
}

@keyframes snowfall {
  to {
    transform: translateY(110vh) rotate(360deg);
  }
}

.ice-crystal {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(135, 206, 235, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: crystalFloat 8s ease-in-out infinite;
}

.crystal-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.crystal-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.crystal-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes crystalFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0px);
    opacity: 0.3;
  }
  50% {
    transform: rotate(45deg) translateY(-20px);
    opacity: 0.7;
  }
}

.magic-sparkle {
  position: absolute;
  font-size: 1.2rem;
  animation: sparkleGlow 3s ease-in-out infinite;
}

.sparkle-1 {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}

.sparkle-2 {
  bottom: 40%;
  left: 15%;
  animation-delay: 2s;
}

.sparkle-3 {
  top: 70%;
  right: 30%;
  animation-delay: 0.5s;
}

@keyframes sparkleGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 20px rgba(135, 206, 235, 1);
  }
}

/* Frozen Modal (Age Gate) */
.frozen-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.frozen-modal {
  background: var(--frost-gradient);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-ice);
  border: 2px solid rgba(135, 206, 235, 0.3);
  text-align: center;
  max-width: 500px;
  margin: 2rem;
}

.modal-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--midnight-blue);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--dark-slate);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.modal-icon {
  font-size: 3rem;
  color: var(--crystal-blue);
  margin-bottom: 1.5rem;
  animation: spinSlow 4s linear infinite;
}

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

.modal-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--magic-gradient);
  color: white;
  box-shadow: var(--shadow-crystal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
  background: rgba(47, 79, 79, 0.8);
  color: var(--snow-white);
}

.btn-secondary:hover {
  background: rgba(47, 79, 79, 1);
  transform: translateY(-2px);
}

/* Magical Navigation */
.frozen-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0a4853;
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(135, 206, 235, 0.3);
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  font-size: 1.8rem;
  color: var(--ice-blue);
  animation: spinSlow 6s linear infinite;
}

.brand-text {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--snow-white);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ice-blue);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(135, 206, 235, 0.1);
  color: var(--snow-white);
  transform: translateY(-1px);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--magic-gradient);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-crystal);
}

/* Hero Realm */
.hero-realm {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin-top: 80px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  space-y: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ice-gradient);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--ice-blue);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.title-primary {
  display: block;
  background: linear-gradient(135deg, var(--snow-white), var(--ice-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  display: block;
  background: var(--magic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--platinum);
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-hero-primary {
  background: var(--magic-gradient);
  color: white;
  box-shadow: var(--shadow-ice);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--snow-white);
  border: 2px solid rgba(135, 206, 235, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--ice-blue);
  transform: translateY(-3px);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s;
}

.btn-hero-primary:hover .btn-glow {
  transform: rotate(45deg) translateX(100%);
}

/* Hero Showcase */
.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-window {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow-ice);
  max-width: 500px;
  width: 100%;
}

.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
  margin-bottom: 1rem;
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ff5f56;
}
.control.yellow {
  background: #ffbd2e;
}
.control.green {
  background: #27ca3f;
}

.window-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ice-blue);
  font-weight: 500;
}

.window-screen {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  group: hover;
}

.game-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 25, 112, 0.7),
    rgba(30, 144, 255, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.window-screen:hover .screen-overlay {
  opacity: 1;
}

.play-trigger {
  text-align: center;
  color: white;
}

.play-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
  animation: pulse 2s infinite;
}

.play-text {
  font-weight: 600;
  font-size: 1.1rem;
}

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

/* Section Containers */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: var(--magic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--platinum);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Realm */
.features-realm {
  padding: 8rem 0;
}

.magic-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--magic-gradient);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--magic-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: var(--shadow-crystal);
  z-index: 2;
}

.feature-card {
  display: flex;
  background: var(--ice-gradient);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 20px;
  padding: 2rem;
  width: calc(50% - 3rem);
  box-shadow: var(--shadow-crystal);
  transition: all 0.3s ease;
}

.timeline-item:not(.reverse) .feature-card {
  margin-left: auto;
  margin-right: 3rem;
}

.timeline-item.reverse .feature-card {
  margin-right: auto;
  margin-left: 3rem;
  flex-direction: row-reverse;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 144, 255, 0.3);
}

.card-visual {
  /* flex: 1; */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card-visual:hover .feature-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.1),
    rgba(135, 206, 235, 0.2)
  );
}

.card-content {
  flex: 1;
  padding: 1rem;
}

.timeline-item.reverse .card-content {
  padding-right: 2rem;
}

.timeline-item:not(.reverse) .card-content {
  padding-left: 2rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--snow-white);
  margin-bottom: 1rem;
}

.card-title i {
  color: var(--ice-blue);
  font-size: 1.25rem;
}

.card-description {
  color: var(--platinum);
  line-height: 1.6;
  font-size: 1rem;
}

/* About Realm */
.about-realm {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.05),
    rgba(135, 206, 235, 0.05)
  );
}

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

.about-card {
  background: var(--ice-gradient);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-crystal);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 144, 255, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.card-icon {
  font-size: 1.8rem;
  color: var(--ice-blue);
}

.card-heading {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--snow-white);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-card .card-body {
  flex-direction: column;
}

.creators-card .card-body {
  flex-direction: column-reverse;
}

.card-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

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

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

/* Disclaimer Realm */
.disclaimer-realm {
  padding: 8rem 0;
}

.disclaimer-panel {
  background: var(--ice-gradient);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-crystal);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.panel-icon {
  font-size: 2rem;
  color: var(--ice-blue);
}

.panel-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--snow-white);
}

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

.disclaimer-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.disclaimer-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-crystal);
  border-color: var(--ice-blue);
}

.item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--magic-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.item-content h4 {
  color: var(--snow-white);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.item-content p {
  color: var(--platinum);
  line-height: 1.6;
  font-size: 0.95rem;
}

.panel-visual {
  text-align: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.disclaimer-image {
  width: 100%;
  max-width: 400px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* Contact Realm */
.contact-realm {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.05),
    rgba(135, 206, 235, 0.05)
  );
}

.contact-palace {
  background: var(--ice-gradient);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-crystal);
}

.palace-header {
  text-align: center;
  margin-bottom: 3rem;
}

.palace-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--snow-white);
  margin-bottom: 1rem;
}

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

.palace-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-widget {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-widget:hover {
  transform: translateX(5px);
  border-color: var(--ice-blue);
  box-shadow: var(--shadow-crystal);
}

.widget-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--magic-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.widget-info h4 {
  color: var(--snow-white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.widget-info p {
  color: var(--platinum);
  font-size: 0.95rem;
}

.contact-reasons {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 12px;
}

.contact-reasons h4 {
  color: var(--snow-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--platinum);
  font-size: 0.9rem;
}

.reason-icon {
  color: var(--ice-blue);
  font-size: 0.8rem;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-icon {
  font-size: 2rem;
  color: var(--ice-blue);
  margin-bottom: 1rem;
}

.form-header h3 {
  color: var(--snow-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--platinum);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.input-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--snow-white);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.input-label i {
  color: var(--ice-blue);
  font-size: 0.8rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 8px;
  color: var(--snow-white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ice-blue);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--platinum);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--magic-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-ice);
}

/* Trust Realm */
.trust-realm {
  padding: 4rem 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  width: 170px;
  height: 135px;
  background: var(--ice-gradient);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-crystal);
  border-color: var(--ice-blue);
}

.badge-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
}

/* Footer Kingdom */
.footer-kingdom {
  background: linear-gradient(135deg, #0a4853, rgba(30, 144, 255, 0.7));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(135, 206, 235, 0.3);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-brand {
  max-width: 500px;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brand-header .brand-icon {
  font-size: 2rem;
  color: var(--ice-blue);
  animation: spinSlow 8s linear infinite;
}

.brand-header h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--snow-white);
}

.footer-brand p {
  color: var(--platinum);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-newsletter {
  text-align: right;
}

.footer-newsletter h4 {
  color: var(--snow-white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  color: var(--platinum);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 8px;
  color: var(--snow-white);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--ice-blue);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
  color: var(--platinum);
}

.newsletter-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--magic-gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-crystal);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ice-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--snow-white);
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: var(--platinum);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    flex-direction: column !important;
  }
  .timeline-item.reverse .feature-card {
    flex-direction: column-reverse;
  }
  .timeline-marker {
    position: relative;
    left: auto;
    transform: none;
    margin: 1rem 0;
  }
  .card-visual {
    width: 60%;
  }
  .feature-card {
    width: 55%;
    margin: 0 !important;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .card-content {
    padding: 1rem 0 0 0 !important;
  }
}

@media (max-width: 768px) {
  .frozen-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .trust-badges {
    gap: 1rem;
  }

  .badge-item {
    width: 60px;
    height: 60px;
  }
}

/* Animation on Scroll (Basic) */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Hidden class for age gate */
.hidden {
  display: none !important;
}

.content {
  padding: 7% 10%;
}
.content * {
  line-height: 26px;
}
.content-block h2 {
  color: #21dff9;
}

.content-block p {
  color: white;
}

.content-block ul {
  color: white;
}
.play-ground-area {
  padding: 2rem;
  background: black;
  margin-top: 30px;
}

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