/* CSS Design System for baaggybet.com */

/* 1. CSS VARIABLES & THEMING */
:root {
  /* Color Tokens */
  --primary-main: #4e6b42;
  --primary-hover: #3d5534;
  --primary-light: #f4f7f2;
  --secondary-main: #2b2a29;
  --secondary-hover: #1a1918;
  
  --accent-sand: #e9e4d6;
  --accent-gold: #c49a45;
  --accent-wood-dark: #3e2f20;
  
  --bg-white: #ffffff;
  --bg-light-beige: #f5f2eb;
  --bg-dark-section: #2b2a29;
  --bg-dark-overlay: rgba(43, 42, 41, 0.85);
  
  --text-dark: #1a1a1a;
  --text-medium: #444444;
  --text-light: #808080;
  --text-white: #ffffff;
  --border-color: #f0f0f0;
  --border-dark: #3e2f20;
  
  /* Fonts */
  --font-primary: 'Inter', Arial, Helvetica, sans-serif;
  --font-headings: 'Outfit', Arial, Helvetica, sans-serif;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-xxxl: 64px;
  --section-padding: 90px;
  --container-max-width: 1140px;
  --grid-gap: 30px;
}

/* 2. BASE RESET & ACCESSIBILITY */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-medium);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-dark);
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

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

.section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  display: block;
}

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

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

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

.badge-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Links */
a {
  color: var(--primary-main);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

a:hover {
  border-bottom: 1px solid var(--primary-main);
}

/* Focus Indicators */
a:focus-visible, 
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-main);
  outline-offset: 3px;
}

/* 3. LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-md);
  padding-left: var(--space-md);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-dark {
  background-color: var(--bg-dark-section);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-white);
}

.section-light-beige {
  background-color: var(--bg-light-beige);
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.text-gradient-primary {
  color: var(--primary-main);
}

.text-accent-gold {
  color: var(--accent-gold);
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-xxl { margin-bottom: var(--space-xxl); }
.mb-xxxl { margin-bottom: var(--space-xxxl); }

/* 4. BUTTONS & INTERACTIVE COMPONENT STYLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px; /* minimum mobile target 44px */
  padding: 0 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-main);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 107, 66, 0.4);
  border-bottom: 1px solid transparent;
}

.btn-primary:active {
  transform: scale(0.96);
}

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

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--secondary-main);
  border-bottom: 2px solid var(--text-white);
}

.btn-text {
  color: var(--primary-main);
  font-weight: 600;
  text-decoration: underline;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}

.btn-text:hover {
  color: var(--primary-hover);
}

/* Header & Navigation */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(43, 42, 41, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  height: 80px;
  display: flex;
  align-items: center;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-white);
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 22px;
  letter-spacing: 1px;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.navbar-brand:hover {
  border-bottom: 1px solid transparent;
}

.navbar-brand span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--accent-gold);
  border-bottom: 2px solid transparent;
}

.nav-link.active {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.nav-phone {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-headings);
  transition: all 0.3s;
}

.nav-phone:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile menu toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark-section);
  z-index: 999;
  padding: var(--space-xl);
  overflow-y: auto;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: var(--space-lg);
}

.mobile-menu-list .nav-link {
  font-size: 20px;
  padding: var(--space-sm) 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list .nav-link.active {
  border-bottom: 1px solid var(--accent-gold);
}

.mobile-menu-phone {
  margin-top: var(--space-xl);
  display: block;
  text-align: center;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  border-radius: 4px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark-section);
  padding: 140px 0 var(--space-xxl) 0;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(78, 107, 66, 0.15) 0%, rgba(43, 42, 41, 0.95) 80%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(78, 107, 66, 0.2);
  border: 1px solid var(--primary-main);
  color: var(--accent-sand);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-desc {
  color: var(--accent-sand);
  margin-bottom: var(--space-xl);
  font-size: 18px;
  line-height: 1.6;
}

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

/* Cards (Standard Specification) */
.card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-dark {
  background: var(--accent-wood-dark);
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}

.card-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.card-dark .card-title {
  color: var(--text-white);
}

.card-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.card-dark .card-text {
  color: var(--accent-sand);
}

/* Grid layout options for games on Review page */
.games-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

/* Stats metrics block */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: var(--space-xl);
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-family: var(--font-headings);
}

.stat-number-accent {
  color: var(--primary-main);
}

.stat-label {
  font-size: 14px;
  color: var(--accent-sand);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Accordion Component */
.faq-accordion-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.accordion-item {
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: #f9f9f9;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 0;
  min-height: 44px; /* accessibility height target */
}

.accordion-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  padding-right: var(--space-md);
}

.accordion-indicator {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-main);
  transition: transform 0.3s ease;
  line-height: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin-top 0.3s;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* Expanded state for FAQ Accordion */
.accordion-item.expanded {
  border-left: 4px solid var(--primary-main);
  background: var(--primary-light);
}

.accordion-item.expanded .accordion-content {
  max-height: 200px;
  margin-top: var(--space-md);
}

.accordion-item.expanded .accordion-indicator {
  transform: rotate(180deg);
}

/* Testimonial component (dark background, quotes, no avatar images) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.testimonial-card {
  background: var(--accent-wood-dark);
  color: var(--text-white);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  fill: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  color: var(--accent-sand);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.testimonial-star-svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-main);
}

.testimonial-author {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--accent-sand);
}

/* Interactive Forms (Contact Page) */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xxl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 16px 20px;
  width: 100%;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-main);
  outline: none;
  box-shadow: 0 0 0 3px rgba(78, 107, 66, 0.15);
  background: var(--bg-white);
}

.form-input:disabled,
.form-textarea:disabled {
  background: #e0e0e0;
  opacity: 0.6;
  cursor: not-allowed;
}

.form-input.error,
.form-textarea.error {
  border-color: #d32f2f;
  background: #fff6f6;
}

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

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

.contact-info-icon-container {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon-container svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-main);
  stroke-width: 2;
  fill: none;
}

.contact-info-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-info-details p,
.contact-info-details a {
  font-size: 15px;
  color: var(--text-medium);
}

/* Modals (Game reviews popups) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(43, 42, 41, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header-banner {
  height: 140px;
  background: linear-gradient(135deg, var(--accent-wood-dark) 0%, var(--secondary-main) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg) var(--space-xl);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.modal-badge {
  background-color: var(--primary-main);
  color: var(--text-white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-body {
  padding: var(--space-xl);
}

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

.modal-game-title {
  font-size: 28px;
  font-weight: 800;
}

.modal-rating-pill {
  background-color: var(--primary-light);
  border: 1px solid var(--primary-main);
  color: var(--primary-main);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-headings);
}

.modal-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
}

.modal-specs {
  background: var(--bg-light-beige);
  border-radius: 4px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 14px;
}

.modal-spec-item {
  display: flex;
  margin-bottom: 6px;
}

.modal-spec-item:last-child {
  margin-bottom: 0;
}

.modal-spec-label {
  font-weight: 700;
  width: 120px;
  color: var(--text-dark);
}

.modal-spec-val {
  color: var(--text-medium);
}

.modal-verdict-box {
  border-left: 4px solid var(--accent-gold);
  background-color: var(--bg-light-beige);
  padding: var(--space-md);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Services directory detailed layout */
.services-dir-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xxl);
  align-items: center;
}

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

.services-dir-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: var(--space-xl);
  border-radius: 4px;
}

.services-dir-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.services-dir-title svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-main);
  stroke-width: 2;
  fill: none;
}

.services-dir-desc {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Play Now Session Recommendations */
.play-session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.play-session-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.play-session-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-main);
  font-weight: 700;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: var(--space-md);
  align-self: flex-start;
}

.play-session-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.play-session-desc {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex: 1;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--accent-sand);
  margin-bottom: var(--space-lg);
}

/* Footer layout */
.site-footer {
  background-color: var(--bg-dark-section);
  color: var(--text-white);
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-column h3 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer-column p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand {
  font-size: 22px;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand span {
  color: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-white);
  border-bottom: 1px solid transparent;
}

.footer-social-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social-link {
  fill: var(--text-white);
  transition: fill 0.3s, transform 0.3s;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  fill: var(--accent-gold);
  transform: scale(1.1);
  border-bottom: 1px solid transparent;
}

.footer-social-link svg {
  width: 100%;
  height: 100%;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: var(--space-xl);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
}

/* 5. RESPONSIVE BREAKPOINTS */

/* Tablet layout (768px - 1199px) */
@media (max-width: 1199px) {
  :root {
    --section-padding: 70px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-accordion-group {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile layout (< 768px) */
@media (max-width: 767px) {
  :root {
    --section-padding: 50px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 var(--space-xl) 0;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  /* Hide desktop menu items, show hamburger */
  .nav-menu, .nav-phone {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .games-review-grid {
    grid-template-columns: 1fr !important; /* Force single column on mobile */
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .services-dir-row {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .play-session-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 6. UTILITY CLASSES (To eliminate inline styles completely) */
.align-items-center {
  align-items: center;
}

.bg-primary-light-card {
  background-color: var(--primary-light);
  padding: var(--space-xxl);
  border-radius: 4px;
  border: 1px solid var(--accent-sand);
}

.bg-primary-light-card-small {
  background-color: var(--primary-light);
  padding: var(--space-lg);
  border-radius: 4px;
  border: 1px solid var(--accent-sand);
}

.color-primary-main {
  color: var(--primary-main);
}

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

.svg-shrink-0 {
  flex-shrink: 0;
}

.color-text-dark-block {
  color: var(--text-dark);
  display: block;
}

.margin-top-sm {
  margin-top: var(--space-sm);
}

.margin-top-xxl {
  margin-top: var(--space-xxl);
}

.width-height-44 {
  width: 44px;
  height: 44px;
}

.color-accent-gold {
  color: var(--accent-gold);
}

.color-accent-sand {
  color: var(--accent-sand);
}

.color-text-light {
  color: var(--text-light) !important;
}

.bg-wood-dark-card {
  background-color: var(--accent-wood-dark);
  padding: var(--space-xxl);
  border-radius: 4px;
  color: var(--text-white);
}

.testimonial-star-row {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.align-self-start-height-44 {
  align-self: flex-start;
  height: 44px;
  padding: 0 var(--space-lg);
}

.display-inline-flex-width-auto {
  display: inline-flex;
  width: auto;
}

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

.align-self-start-height-48 {
  align-self: flex-start;
  height: 48px;
}

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

.hero-height-45vh {
  min-height: 45vh;
  padding: 120px 0 var(--space-xl) 0;
}

.hero-max-width-650 {
  max-width: 650px;
  margin-bottom: 0;
}

.bg-white-card-padding-xl {
  padding: var(--space-xl);
  background: var(--bg-white);
}

.margin-bottom-sm-align-self-start {
  margin-bottom: var(--space-sm);
  align-self: flex-start;
}

.badge-tag-highlight {
  color: var(--primary-main);
  background: var(--primary-light);
  padding: 4px 8px;
  border-radius: 4px;
}

.font-weight-600 {
  font-weight: 600;
}

.flex-align-center-gap-xs {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.width-height-20-fill-gold {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.font-weight-700-color-dark {
  font-weight: 700;
  color: var(--text-dark);
}

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