@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.woff2") format("woff2"), url("fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bungee";
  src: url("fonts/Bungee-Regular.woff2") format("woff2"), url("fonts/Bungee-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Primary Colors */
  --color-primary: #d7263d; /* vibrant cherry red */
  --color-primary-dark: #a31b2a; /* deeper red for hover/active */
  --color-accent: #ffb400; /* golden accent for spins/buttons */

  /* Backgrounds & Surfaces */
  --color-bg: #1e1f29; /* deep twilight background */
  --color-surface: #2a2b3c; /* card/panel background */
  --color-surface-alt: #3c3d4f; /* hover or alt surface */

  /* Text */
  --color-text: #f1f1f1; /* primary text */
  --color-text-muted: #b0b0c0; /* secondary text */

  /* Gradients & Highlights */
  --gradient-main: linear-gradient(135deg, #d7263d 0%, #ffb400 100%);
  --gradient-glow: linear-gradient(90deg, #ffb400 0%, #ffd700 50%, #ffb400 100%);

  /* Typography */
  --font-base: "Roboto", sans-serif;
  --font-heading: "Bungee", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;

  /* Spacing */
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

* {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.1;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.5;
  background: var(--color-bg);
  color: var(--color-text);
}

figure {
  margin: 0;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-lg);
  font-weight: bold;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-position 0.3s, transform 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-main) 0 0 / 200% 100%;
  color: var(--color-text);
  border: 2px solid #ffffff;
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-surface-alt);
  transform: translateY(-2px);
}

.section-title {
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 auto var(--space-xl);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-surface);
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
}

.logo-img {
  width: 50px;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-left: var(--space-lg);
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size-lg);
}

.nav-link:hover {
  color: var(--color-accent);
}

/* Hero */
.hero {
  position: relative;
  padding: var(--space-2xl) 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-main);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.hero-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.hero-spin {
  width: 100%;
}

/* Top Free Spins */
.top-spins {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.spin-card {
  flex: 0 0 calc(33.3333% - var(--space-md));
  margin-right: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}

.spin-card:hover {
  transform: translateY(-5px);
}

.spin-image {
  width: 100%;
}

.spin-content {
  padding: var(--space-md);
}

.spin-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.spin-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
}

.spin-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.slider-prev,
.slider-next {
  background: var(--color-surface);
  border: none;
  color: var(--color-accent);
  font-size: var(--font-size-xl);
  padding: 6px 10px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-accent);
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--color-surface-alt);
}

/* How It Works */
.how-works {
  padding: var(--space-2xl) 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.work-item {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s;
}

.work-item:hover {
  transform: translateY(-5px);
}

.work-icon {
  width: 60px;
  margin: 0 auto var(--space-md);
}

.work-item h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.work-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
}

.work-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.work-list li::before {
  content: "★";
  color: var(--color-accent);
}

/* Featured Games */
.featured-games {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.game-card {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-image {
  width: 100%;
}

.game-content {
  padding: var(--space-md);
}

.game-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
}

.game-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.game-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Free Spin Meter */
.spin-meter {
  padding: var(--space-2xl) 0;
}

.meter-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.meter-bar {
  height: 20px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.meter-progress {
  height: 100%;
  width: 60%;
  background: var(--gradient-main);
  transition: width 1s ease;
}

.meter-milestones {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.milestone {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
}

.milestone.active {
  color: var(--color-accent);
}

.milestone span {
  display: block;
  font-size: var(--font-size-lg);
  color: var(--color-text);
}

/* Player Achievements */
.achievements {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.achievements-masonry {
  column-count: 2;
  column-gap: var(--space-md);
}

.achievement-card {
  break-inside: avoid;
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: transform 0.3s;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-icon {
  width: 150px;
  margin-bottom: var(--space-md);
}

.achievement-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.achievement-card p {
  color: var(--color-text-muted);
}

/* Game Modes */
.game-modes {
  padding: var(--space-2xl) 0;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.mode-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}

.mode-card:hover {
  transform: translateY(-5px);
}

.mode-image {
  width: 100%;
}

.mode-content {
  padding: var(--space-md);
}

.mode-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.mode-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.mode-list {
  list-style: decimal;
  padding-left: var(--space-md);
  color: var(--color-text-muted);
}

.mode-list li {
  margin-bottom: var(--space-sm);
}

/* Join Spinlore Club */
.join-club {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.join-content {
  padding: var(--space-md);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  text-align: center;
}

.club-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
}

.club-benefits li {
  margin-bottom: var(--space-sm);
}

.club-benefits strong {
  color: var(--color-text);
}

/* FAQ Summary */
.faq-summary {
  padding: var(--space-2xl) 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: var(--space-sm);
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  font-size: var(--font-size-lg);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-toggle:hover {
  background: var(--color-surface-alt);
}

.accordion-content {
  display: none;
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-accent);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.accordion-content p {
  color: var(--color-text-muted);
}

.accordion-item.active .accordion-content {
  display: block;
}

/* CTA Footer Banner */
.cta-banner {
  padding: var(--space-2xl) 0;
  background: var(--gradient-main);
}

.cta-content {
  text-align: center;
}

.cta-content p {
  color: var(--color-text);
}

/* Footer */
.footer {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.footer-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.footer-col p {
  color: var(--color-text-muted);
}

.footer-nav,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: var(--space-sm);
}

.footer-nav a,
.footer-contact a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

.age-warn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  color: var(--color-text);
}

.age-warn strong {
  font-size: var(--font-size-lg);
}

.age-warn figure {
  width: 100px;
}

/* Media Queries */
@media (max-width: 1023px) {
  .modes-grid,
  .works-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .spin-card {
    flex: 0 0 calc(50% - var(--space-md));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .nav-list {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .nav-item {
    margin-left: var(--space-md);
  }

  .spin-card {
    flex: 0 0 calc(100% - var(--space-md));
  }

  .achievements-masonry {
    column-count: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* All Games */
.all-games {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.games-filter {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.filter-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.filter-btn {
  background: var(--color-surface-alt);
  color: var(--color-text);
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-lg);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-accent);
  color: var(--color-bg);
}

.game-card {
  transition: opacity 0.3s;
}

.game-card.hidden {
  display: none;
}

.game-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.game-stats span strong {
  color: var(--color-text);
}

/* Random CTA */
.random-cta {
  padding: var(--space-2xl) 0;
  background: var(--gradient-main);
}

.cta-content {
  text-align: center;
}

.random-stats {
  margin-bottom: var(--space-lg);
}

.random-stats h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-list li {
  margin-bottom: var(--space-md);
  text-align: left;
  padding-left: var(--space-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-list li::before {
  content: "🎰";
  display: block;
  left: 0;
  font-size: var(--font-size-lg);
}

.stats-list strong {
  color: var(--color-text);
}

.random-btn {
  font-size: var(--font-size-xl);
  padding: var(--space-md) var(--space-xl);
}

/* Media Queries */
@media (max-width: 1023px) {
  .filter-list {
    flex-wrap: wrap;
  }

  .filter-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 767px) {
  .filter-btn {
    font-size: var(--font-size-base);
    padding: var(--space-sm);
  }
}

/* Vision */
.vision {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.vision-block {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-lg);
  align-items: center;
}

.vision-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.vision-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  color: var(--color-text-muted);
}

.vision-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.vision-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  font-size: var(--font-size-lg);
}

/* Highlights */
.highlights {
  padding: var(--space-2xl) 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.highlight-card {
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  width: 90px;
  margin: 0 auto var(--space-md);
}

.highlight-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.highlight-card p {
  color: var(--color-text-muted);
}

/* Why Free-to-Play */
.why-free {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.why-free-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-free-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.why-free-image {
  width: 100%;
}

.why-free-text h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.why-free-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.why-free-list {
  list-style: decimal;
  padding-left: var(--space-lg);
  color: var(--color-text-muted);
}

.why-free-list li {
  margin-bottom: var(--space-sm);
}

/* Community */
.community {
  padding: var(--space-2xl) 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.community-card {
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  transition: transform 0.3s;
}

.community-card:hover {
  transform: translateY(-5px);
}

.community-icon {
  width: 70px;
  border: 2px solid #fff;
  border-radius: 100%;
  margin-bottom: var(--space-sm);
}

.community-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.community-card cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  color: var(--color-accent);
}

/* Team */
.team {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-card {
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar {
  width: 100px;
  margin: 0 auto var(--space-md);
  border: 2px solid #fff;
  border-radius: 100%;
}

.team-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.team-role {
  color: var(--color-accent);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
}

.team-card p {
  color: var(--color-text-muted);
}

/* Behind the Games */
.behind-games {
  padding: var(--space-2xl) 0;
}

.behind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.behind-card {
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  transition: transform 0.3s;
}

.behind-card:hover {
  transform: translateY(-5px);
}

.behind-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.behind-card p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.behind-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
}

.behind-list li {
  margin-bottom: var(--space-sm);
  padding-left: 30px;
  position: relative;
}

.behind-list li::before {
  content: "🎮";
  position: absolute;
  left: 0;
  font-size: var(--font-size-lg);
  line-height: 1;
}

/* Responsible Fun */
.responsible {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.responsible-content {
  text-align: center;
}

.responsible-text h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.responsible-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.responsible-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.responsible-text a:hover {
  color: var(--color-primary);
}

.responsible-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) auto;
  max-width: 600px;
  text-align: left;
}

.responsible-list li {
  margin-bottom: var(--space-sm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.responsible-list li::before {
  content: "✔";
  display: block;
  color: var(--color-accent);
}

/* Explore CTA */
.explore-cta {
  padding: var(--space-2xl) 0;
  background: var(--gradient-main);
}

.cta-features {
  margin-bottom: var(--space-lg);
}

.cta-features h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-list li {
  margin-bottom: var(--space-md);
  text-align: left;
  padding-left: var(--space-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.features-list li::before {
  content: "🎰";
  display: block;
  font-size: var(--font-size-lg);
}

.features-list strong {
  color: var(--color-text);
}

/* Media Queries */
@media (max-width: 1023px) {
  .why-free-grid,
  .highlights-grid,
  .community-grid,
  .team-grid,
  .behind-grid {
    grid-template-columns: 1fr;
  }

  .vision-icon {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .vision-block {
    grid-template-columns: 1fr;
  }
  .vision-content,
  .why-free-text,
  .responsible-text {
    text-align: center;
  }

  .vision-list,
  .why-free-list,
  .responsible-list,
  .behind-list,
  .features-list {
    text-align: left;
  }
}

/* Message Form */
.message-form {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.form-panel {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-accent);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  font-size: var(--font-size-base);
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-checkbox label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.form-checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--color-primary);
}

.form-panel button {
  align-self: center;
  padding: var(--space-md) var(--space-xl);
}

/* Support FAQ */
.support-faq {
  padding: var(--space-2xl) 0;
}

/* Headquarters */
.headquarters {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.hq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
}

.hq-map iframe {
  border-radius: var(--radius-md);
}

.hq-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hq-details h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.hq-details p {
  color: var(--color-text-muted);
  margin: 0;
}

.hq-details strong {
  color: var(--color-text);
}

/* Contact Methods */
.contact-methods {
  padding: var(--space-2xl) 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.method-card {
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-icon {
  width: 50px;
  margin: 0 auto var(--space-md);
}

.method-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.method-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.method-card a {
  color: var(--color-accent);
  text-decoration: underline;
}

.method-card a:hover {
  color: var(--color-primary);
}

/* Message CTA */
.message-cta {
  padding: var(--space-2xl) 0;
  background: var(--gradient-main);
}

.hq-map {
  height: 300px;
}
.hq-map iframe {
  width: 100%;
  height: 100%;
}

/* Media Queries */
@media (max-width: 1023px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hq-content {
    grid-template-columns: 1fr;
  }
  .form-panel {
    padding: var(--space-md);
  }

  .form-group label {
    font-size: var(--font-size-base);
  }
}

/* Game Page */
.game-page {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.game-title {
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.game-iframe {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 2px solid #fff;
}

.game-iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-content {
  max-width: 800px;
  margin: 0 auto;
}

.game-content * {
  text-align: left;
}

.game-details h3 {
  font-size: var(--font-size-xl);
  margin: var(--space-md) 0 var(--space-sm);
}

.game-details p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.game-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
}

.game-features li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.game-features li::before {
  content: "🎰";
  position: absolute;
  left: 0;
  font-size: var(--font-size-lg);
}

.game-features strong {
  color: var(--color-text);
}

/* Media Queries */
@media (max-width: 767px) {
  .game-iframe iframe {
    height: 400px;
  }
}

/* Hero Variants */
.hero-privacy,
.hero-terms,
.hero-disclaimer,
.hero-thank-you {
  background: var(--color-surface-alt);
}

.hero-privacy .hero-content,
.hero-terms .hero-content,
.hero-disclaimer .hero-content,
.hero-thank-you .hero-content {
  justify-content: center;
  text-align: center;
  display: flex;
}

/* Policy, Terms, Disclaimer, Thank You */
.policy,
.terms,
.disclaimer,
.thank-you {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.policy-content,
.terms-content,
.disclaimer-content,
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content p a,
.terms-content p a,
.disclaimer-content p a,
.thank-you-content p a {
  color: #fff;
}

.policy *,
.terms *,
.disclaimer *,
.thank-you * {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h3,
.terms-content h3,
.disclaimer-content h3 {
  font-size: var(--font-size-xl);
  margin: var(--space-md) 0 var(--space-sm);
}

.policy-content p,
.terms-content p,
.disclaimer-content p,
.thank-you-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.thank-you-content .btn {
  margin-top: var(--space-md);
  display: inline-block;
}

/* Media Queries */
@media (max-width: 767px) {
  .policy-content,
  .terms-content,
  .disclaimer-content,
  .thank-you-content {
    text-align: center;
  }
}
