/* Google Fonts - Inter & DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@100..900&display=swap');

/* CSS Variables for design system */
:root {
  --primary-teal: #114E4C;
  --primary-teal-dark: #0B3836;
  --primary-teal-light: #1E6B68;
  --accent-rose: #F6ECED;
  --accent-rose-dark: #E8D7D9;
  --accent-coral: #E26D62;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F0F2F5;
  --gray-200: #E2E8F0;
  --gray-400: #A0AEC0;
  --gray-600: #718096;
  --text-dark: #1A202C;
  --text-body: #4A5568;
  --text-white: #FFFFFF;
  --text-on-dark: #A0BFC4;

  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(17, 78, 76, 0.04);
  --shadow-medium: 0 8px 24px rgba(17, 78, 76, 0.08);
  --shadow-large: 0 16px 48px rgba(17, 78, 76, 0.12);
  --shadow-glow-coral: 0 6px 14px rgba(226, 109, 98, 0.35);

  /* Fonts */
  --font-sans: 'Inter', 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.narrow-container {
  max-width: 800px;
}

/* Headers / Typography */
h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-dark);
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-dark);
}

h5 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-dark);
}

.text-large {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-body);
}

.text-default {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-body);
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray-600);
}

.caption {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.copyright-details {
  font-size: 11px;
  opacity: 0.7;
}

/* Layout Utilities */
section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.bg-gray {
  background-color: var(--gray-50);
}

.bg-rose {
  background-color: var(--accent-rose);
}

.bg-teal {
  background-color: var(--primary-teal);
  color: var(--white);
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--primary-teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:focus {
  outline: 2px solid var(--primary-teal);
  outline-offset: 3px;
}

.btn-submit {
  width: 100%;
  border: none;
}

.contact-intro-text {
  margin-bottom: var(--space-xl);
}

.margin-bottom-md {
  margin-bottom: var(--space-md);
}

.play-session-card {
  align-items: flex-start;
  text-align: left;
}

.card-heading {
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.play-card-btn {
  padding: 10px 20px;
  font-size: 14px;
  margin-top: auto;
  width: 100%;
}

.badge-rose {
  background-color: var(--accent-rose-dark);
  color: var(--primary-teal-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--gray-50);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

/* Navbar component */
.navbar {
  background-color: var(--white);
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid var(--gray-100);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-teal);
  text-decoration: underline;
}

.navbar-cta {
  padding: 10px 24px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: var(--space-xs);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile navigation drawer */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-medium);
  display: none;
  z-index: 999;
  padding: var(--space-md) var(--space-lg);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: var(--space-xs) 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-teal);
}

.mobile-nav-cta {
  margin-top: 10px;
  display: inline-block;
}

/* Header Layout Templates */
.page-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.center-header {
  max-width: 800px;
  margin: 0 auto var(--space-2xl) auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Hero Section */
.hero {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-header {
  max-width: 800px;
  margin: 0 auto var(--space-2xl) auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
}

/* Cards */
.card-intro {
  background-color: var(--accent-rose);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-intro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.card-intro-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-intro-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-light);
  color: var(--primary-teal);
}

.card-intro-icon svg {
  width: 24px;
  height: 24px;
}

.card-intro h4 {
  margin-bottom: var(--space-sm);
}

/* Value Highlight Cards (Teal Background) */
.card-highlight {
  background-color: var(--primary-teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-light);
  display: flex;
  gap: var(--space-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card-highlight-icon {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
  color: var(--white);
}

.card-highlight:hover .card-highlight-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.card-highlight-icon svg {
  width: 24px;
  height: 24px;
}

.card-highlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-highlight-content h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.card-highlight-content p {
  color: var(--text-on-dark);
  font-size: 14px;
}

/* Grids */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* Stat Card */
.card-stat {
  background-color: transparent;
  text-align: center;
  padding: 24px;
  transition: transform 0.2s ease;
}

.card-stat:hover {
  transform: scale(1.02);
}

.card-stat .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.card-stat:hover .stat-number {
  color: var(--primary-teal);
}

.card-stat .stat-label {
  font-size: 14px;
  color: var(--text-body);
  margin-top: var(--space-sm);
}

/* Showcase layout */
.showcase-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  height: 400px;
}

.showcase-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Split content layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Service Tiles */
.service-tile {
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all 0.2s ease;
}

.service-tile:hover {
  background-color: var(--accent-rose);
  border-color: var(--primary-teal-light);
  transform: translateY(-2px);
}

.service-tile-icon {
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tile-icon svg {
  width: 20px;
  height: 20px;
}

.service-tile h5 {
  font-weight: 500;
  color: var(--text-dark);
}

/* Process Step Card */
.process-step {
  background-color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.process-step:hover {
  background-color: var(--accent-rose);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.process-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-teal);
  opacity: 0.2;
  margin-bottom: var(--space-xs);
  transition: opacity 0.2s ease;
}

.process-step:hover .process-number {
  opacity: 1;
}

.process-step h4 {
  margin-bottom: var(--space-xs);
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--accent-rose);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-light);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: var(--accent-coral);
  margin-bottom: var(--space-md);
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author-role {
  font-size: 14px;
  color: var(--text-body);
}

/* Game Reviews / Blog Card */
.game-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--gray-100);
  cursor: pointer;
}

.game-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
}

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

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

.game-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.game-card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--gray-600);
  font-size: 14px;
}

.card-caption {
  font-size: 11px;
}

.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.game-card h4 {
  transition: color 0.2s ease;
}

.game-card:hover h4 {
  color: var(--primary-teal);
}

.game-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--accent-coral);
  font-weight: 600;
}

.game-card-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.game-card-btn {
  color: var(--primary-teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: auto;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.game-card-btn:hover {
  text-decoration: underline;
}

/* CTA Section Banner */
.cta-banner {
  background-color: var(--white);
  padding: 80px 20px;
  overflow: hidden;
}

.cta-banner-container {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.cta-banner-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-banner-buttons {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.2s ease;
}

.cta-phone-link:hover {
  color: var(--primary-teal);
}

.cta-phone-link svg {
  width: 18px;
  height: 18px;
}

.cta-banner-img {
  width: 50%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Footer component */
.footer {
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 60px 20px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-col h5 {
  color: var(--white);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-on-dark);
}

.footer-hours-list, .footer-links-list, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-hours-list li, .footer-contact-list li {
  font-size: 14px;
  color: var(--text-on-dark);
  line-height: 2;
}

.footer-links-list li a {
  font-size: 14px;
  color: var(--text-on-dark);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-3xl);
  padding-top: 24px;
  font-size: 14px;
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-copyright a {
  color: var(--text-on-dark);
  text-decoration: none;
}

.footer-copyright a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Feature List Item */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: 12px 0;
}

.feature-item-icon {
  background-color: var(--accent-rose);
  border-radius: var(--radius-full);
  padding: 12px;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.feature-item-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item-content {
  display: flex;
  flex-direction: column;
}

.feature-item-content h4 {
  margin-bottom: var(--space-xs);
}

/* Modal for Game Reviews */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 32, 44, 0.8);
  backdrop-filter: blur(4px);
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.review-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 768px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-large);
  border: 1px solid var(--gray-200);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.review-modal.active .modal-container {
  transform: translateY(0);
}

.modal-header-img {
  position: relative;
  width: 100%;
  height: 260px;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  padding: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
  background-color: var(--white);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
}

.modal-body {
  padding: 32px;
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.modal-genre {
  font-size: 14px;
  background-color: var(--accent-rose);
  color: var(--primary-teal);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.modal-platform {
  font-size: 14px;
  color: var(--gray-600);
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.modal-rating-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  color: var(--accent-coral);
}

.modal-rating-stars {
  display: flex;
  gap: 4px;
}

.modal-rating-stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.modal-rating-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-teal);
}

.modal-content-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
}

.modal-content-text p {
  margin-bottom: var(--space-md);
}

/* Contact Form & Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.contact-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-input, .contact-textarea {
  width: 100%;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-input:focus, .contact-textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  background-color: var(--white);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  background-color: var(--accent-rose);
  border-radius: var(--radius-md);
  padding: 12px;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-details h4 {
  margin-bottom: var(--space-xs);
}

/* Privacy sections */
.privacy-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.privacy-section {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.privacy-number {
  background-color: var(--accent-rose);
  color: var(--primary-teal);
  font-weight: 700;
  border-radius: var(--radius-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-text h3 {
  margin-bottom: var(--space-sm);
}

/* Game review columns formatting on desktop/tablet */
.reviews-grid-two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
  .navbar-container {
    padding: 0 var(--space-md);
  }
  .nav-links, .navbar .btn-primary {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .logo-text {
    font-size: 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-banner-container {
    flex-direction: column;
  }
  .cta-banner-text {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-buttons .btn-primary {
    width: 100%;
  }
  .cta-banner-img {
    width: 100%;
    height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* CRITICAL: Reviews, Stats, and Testimonials must NOT repeat columns in mobile (must stack as 1 column) */
  .reviews-grid-two-cols {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .play-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
}
