/* highflyerscasinno.com CSS Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables for design system */
:root {
  /* Colors */
  --primary-main: #b37b48;
  --primary-hover: #94623a;
  --primary-light: #fdf5eb;
  
  --secondary-main: #1a1a1a;
  --secondary-hover: #000000;
  --secondary-light: #4a4a4a;
  
  --accent-cream: #fdf5eb;
  --accent-dark-brown: #3e2f20;
  
  --bg-white: #ffffff;
  --bg-cream: #fbf7f2;
  --bg-dark-section: #1a1a1a;
  
  --text-dark: #1a1a1a;
  --text-medium: #444444;
  --text-muted: #777777;
  --text-white: #ffffff;
  
  /* Fonts */
  --font-primary: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Inter', Helvetica, Arial, sans-serif;
  
  /* Spacing */
  --space-base: 16px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --section-padding: 80px;
  --container-max-width: 1140px;
  --grid-gap: 30px;
}
.text-center {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: 80px; /* offset fixed header */
}

a {
  color: var(--primary-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-decoration 0.3s;
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utility Classes */
h1, .h1 {
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1px;
}

h2, .h2 {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h3, .h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-main);
  display: inline-block;
  margin-bottom: var(--space-md);
}

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

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

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

.highlight-text {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-dark-brown);
}

/* Layout Elements */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
}

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

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

.section-dark .text-large,
.section-dark .text-base {
  color: #cccccc;
}

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

.bg-cream-block {
  background-color: var(--bg-cream);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: center;
}

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

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

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
  height: 80px;
  transition: background-color 0.3s;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-dark);
}

.logo-link:hover {
  text-decoration: none;
}

.logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-main);
  text-decoration: none;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-main);
}

.header-phone {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  padding: 10px 20px;
  transition: all 0.3s;
}

.header-phone:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
  text-decoration: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--text-dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid #e5e5e5;
  padding: var(--space-lg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  z-index: 999;
}

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

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

.mobile-nav-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: var(--space-xs) 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-main);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}

.btn:hover {
  text-decoration: none;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(179, 123, 72, 0.3);
}

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

.btn-dark:hover {
  background-color: var(--secondary-hover);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* Cards System */
.card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

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

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

/* Image Stacking / Rotated frames */
.image-stack-container {
  position: relative;
  height: 450px;
  width: 100%;
}

.image-frame {
  position: absolute;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 12px solid var(--bg-white);
  transition: transform 0.4s ease, z-index 0.2s;
  background-color: var(--bg-white);
}

.image-frame:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 20;
}

.frame-1 {
  width: 280px;
  height: 350px;
  left: 0;
  top: 20px;
  transform: rotate(-5deg);
  z-index: 5;
}

.frame-2 {
  width: 280px;
  height: 350px;
  right: 20px;
  top: 40px;
  transform: rotate(5deg);
  z-index: 10;
}

.frame-3 {
  width: 250px;
  height: 300px;
  left: 120px;
  top: 100px;
  transform: rotate(0deg);
  z-index: 8;
}

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

/* SVG Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--primary-main);
  margin-bottom: var(--space-md);
  transition: background-color 0.3s, color 0.3s;
}

.icon-box svg {
  width: 32px;
  height: 32px;
}

.card:hover .icon-box {
  background-color: var(--primary-main);
  color: var(--text-white);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
}

.form-input, .form-textarea {
  background-color: var(--bg-white);
  border: 1px solid #e0e0e0;
  padding: 14px 16px;
  width: 100%;
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary-main);
  outline: none;
  box-shadow: 0 0 0 3px rgba(179, 123, 72, 0.15);
}

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

/* Footer layout */
.site-footer {
  background-color: var(--primary-main);
  color: var(--text-white);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xxl);
  margin-bottom: 60px;
}

.footer-column h3 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  font-size: 15px;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-link:hover {
  color: var(--text-white);
  padding-left: 4px;
  text-decoration: none;
}

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

.instagram-thumb {
  width: 100%;
  aspect-ratio: 1;
  background-color: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.instagram-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.instagram-thumb:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  background-color: var(--accent-dark-brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

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

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

.modal-content-wrapper {
  background-color: var(--bg-white);
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 1px solid var(--primary-main);
  animation: modalScaleUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalScaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header-image {
  height: 260px;
  position: relative;
  background-color: var(--secondary-main);
}

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

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

.modal-close-btn:hover {
  background-color: var(--primary-main);
  color: var(--text-white);
  transform: rotate(90deg);
}

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

.modal-genre-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-main);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.modal-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.modal-meta-row {
  display: flex;
  gap: var(--space-lg);
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid #eeeeee;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
}

.modal-rating {
  font-weight: 700;
  color: var(--accent-dark-brown);
}

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

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

/* Page Specific layouts */

/* Hero grid layout on index */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.hero-stats-row {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.hero-stat-item {
  border-left: 2px solid var(--primary-main);
  padding-left: var(--space-md);
}

.hero-stat-number {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Frame wrapper for single large landscape on index about */
.framed-landscape {
  border: 16px solid var(--bg-white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* Contacts info block */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.contact-info-text h4 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

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

/* Map frame placeholder */
.map-frame-placeholder {
  border: 12px solid var(--bg-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  background-color: var(--bg-cream);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-main);
  text-align: center;
  padding: var(--space-xl);
}

/* Game Card specifically on reviews page */
.game-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

.game-card-item {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.game-card-img-wrapper {
  height: 220px;
  position: relative;
  background-color: #222222;
}

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

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

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

.game-card-genre {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-main);
  letter-spacing: 0.5px;
}

.game-card-platform {
  font-size: 11px;
  font-weight: 600;
  background-color: #f0f0f0;
  padding: 2px 8px;
  border-radius: 20px;
  color: var(--text-medium);
}

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

.game-card-summary {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: var(--space-md);
  margin-top: auto;
}

.game-card-rating {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark-brown);
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-card-rating svg {
  width: 18px;
  height: 18px;
  color: var(--primary-main);
  fill: var(--primary-main);
}

/* Play Now specific items */
.session-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: var(--space-xl);
  border-top: 4px solid var(--primary-main);
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.session-duration {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-main);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.session-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

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

.session-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.session-list li {
  font-size: 14px;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.session-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-main);
  flex-shrink: 0;
}

/* General Page Headers */
.page-header-section {
  padding: 100px 0 60px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.page-header-section.dark {
  background-color: var(--bg-dark-section);
  color: var(--text-white);
  border-bottom: none;
}

.page-header-section.dark h1 {
  color: var(--text-white);
}

.page-header-section h1 {
  margin-bottom: var(--space-sm);
}

.page-header-desc {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Privacy list alignment */
.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.privacy-item {
  display: flex;
  gap: var(--space-lg);
}

.privacy-num {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  background-color: var(--primary-light);
  color: var(--primary-main);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.privacy-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* Responsiveness adjustments */
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: 54px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 992px) {
  h1, .h1 {
    font-size: 44px;
  }
  
  h2, .h2 {
    font-size: 34px;
  }
  
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }
  
  .image-stack-container {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .frame-1 {
    width: 220px;
    height: 280px;
  }
  
  .frame-2 {
    width: 220px;
    height: 280px;
  }
  
  .frame-3 {
    width: 200px;
    height: 240px;
    left: 90px;
    top: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  h1, .h1 {
    font-size: 36px;
  }
  
  h2, .h2 {
    font-size: 28px;
  }
  
  h3, .h3 {
    font-size: 22px;
  }
  
  .nav-menu, .header-phone {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .grid-2, .grid-3, .grid-4, .game-card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .image-stack-container {
    display: none; /* Hide complex stacking layouts on mobile as specified */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .privacy-item {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .privacy-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* Telemetry Utility Classes (Removing Inline CSS) */
.lead-paragraph {
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.max-width-600 {
  max-width: 600px;

  margin: 30px 0;
}

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

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

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-auto {
  margin-top: auto !important;
}

.map-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.map-title {
  font-family: var(--font-primary);
  font-size: 18px;
  margin-bottom: 2px;
}

.map-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.modal-close-icon {
  width: 20px;
  height: 20px;
}

