/* ==========================================================================
   TechNova Design System & Theme Stylesheet
   Project: Tickets Ontario Lotto (ticketsontariolotto.com)
   ========================================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --primary-dark: #1C2A26;
  --primary-green: #0E453A;
  --accent-lime: #D0F24A;
  --bg-light-green: #EAF5EA;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --border-light: #E2E8F0;
  --text-dark: #1A1A1A;
  --text-body: #4B5563;
  --text-light-gray: #9AA4A8;
  --text-on-dark: #B0C4C1;
  --bg-gradient: linear-gradient(135deg, #1C2A26 0%, #0E453A 100%);
  --accent-lime-dark: #b8d936;

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 24px rgba(14, 69, 58, 0.15);
}

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

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--off-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-family: 'Poppins', 'Inter', sans-serif;
  margin-bottom: var(--space-sm);
}

/* Heading Sizes */
h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
}

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

h3 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

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

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

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

.caption {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Typography Color Helper classes */
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent-lime) !important; }
.text-on-dark { color: var(--text-on-dark) !important; }
.text-muted { color: var(--text-light-gray) !important; }

/* Grid & Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

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

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

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

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

/* Flex utilities */
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

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

.space-between {
  justify-content: space-between;
}

.center-align {
  justify-content: center;
  align-items: center;
}

/* Grid layout rules */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

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

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

/* Navigation Navbar (Component) */
.navbar {
  background-color: var(--white);
  padding: var(--space-md) var(--space-lg);
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link.active {
  color: var(--primary-green);
  font-weight: 700;
}

.navbar-cta {
  display: flex;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: var(--radius-pill);
}

.btn-primary {
  background-color: var(--accent-lime);
  color: var(--primary-dark);
  padding: 12px 28px;
  border: none;
  box-shadow: 0 4px 6px rgba(208, 242, 74, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(208, 242, 74, 0.4);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-green);
  padding: 12px 24px;
  border: 1px solid var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

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

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

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
  padding: var(--space-lg);
  z-index: 999;
  border-top: 1px solid var(--border-light);
}

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

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

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

/* Hero Section (Component) */
.hero {
  background-color: var(--primary-dark);
  padding: 140px 0 var(--space-4xl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(14, 69, 58, 0.4) 0%, transparent 60%);
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  align-self: flex-start;
  background-color: rgba(208, 242, 74, 0.1);
  color: var(--accent-lime);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(208, 242, 74, 0.3);
}

.hero-subtext {
  color: var(--text-on-dark);
  font-size: 18px;
  line-height: 1.6;
}

.hero-image-area {
  width: 50%;
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-medium);
}

/* Stats overlay */
.stats-overlay {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-medium);
  display: flex;
  gap: var(--space-md);
  z-index: 3;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  min-width: 130px;
  text-align: center;
}

.stat-item-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.stat-item-accent {
  background-color: var(--accent-lime);
  color: var(--text-dark);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--space-xs);
  opacity: 0.8;
}

/* Circular Infographic Component */
.info-section {
  background-color: var(--white);
  padding: var(--space-4xl) 0;
}

.info-layout {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

.info-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-graphics {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-infographic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 400px;
  height: 400px;
}

.info-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

.info-circle:hover {
  transform: scale(1.05);
}

.circle-primary {
  width: 200px;
  height: 200px;
  background-color: var(--primary-green);
  color: var(--white);
  z-index: 3;
}

.circle-accent {
  width: 160px;
  height: 160px;
  background-color: var(--accent-lime);
  color: var(--text-dark);
  top: 15px;
  right: 15px;
  z-index: 2;
}

.circle-light {
  width: 140px;
  height: 140px;
  background-color: var(--bg-light-green);
  color: var(--text-dark);
  bottom: 25px;
  left: 20px;
  z-index: 1;
}

.circle-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.circle-subtitle {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 4px;
}

/* Service Card (Component) */
.service-card {
  background-color: var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: var(--white);
  box-shadow: var(--shadow-light);
  min-height: 180px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
  margin-bottom: var(--space-xs);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h4 {
  color: var(--white);
}

.service-card p {
  color: var(--text-on-dark);
  font-size: 14px;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background-color: #125548; /* Slightly lighter primary green */
}

/* Project / Game Review Card (Component) */
.project-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.project-card:hover .project-card-img {
  transform: scale(1.03);
}

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

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

.project-card-tag {
  background-color: var(--bg-light-green);
  color: var(--primary-green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.project-card-rating {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 14px;
}

.project-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-self: flex-end;
  margin-top: auto;
  transition: all 0.3s ease;
}

.project-card-arrow svg {
  width: 14px;
  height: 14px;
}

.project-card:hover .project-card-arrow {
  background-color: var(--accent-lime);
  color: var(--text-dark);
}

/* Call To Action Banner (Component) */
.cta-banner {
  background-color: var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  margin: 0 var(--space-md);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  position: relative;
}

.cta-banner-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 2;
}

.cta-banner-content h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: var(--space-xs);
}

.cta-banner-content p {
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.cta-banner-img {
  width: 45%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  z-index: 2;
}

/* Footer Section (Component) */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

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

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

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

.footer-col-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

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

.footer-link-item a {
  color: var(--text-on-dark);
  font-size: 14px;
}

.footer-link-item a:hover {
  color: var(--accent-lime);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  color: var(--text-on-dark);
  font-size: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-lime);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Page Headers (Subpages layout) */
.page-header {
  background-color: var(--primary-dark);
  padding: 140px 0 var(--space-xl) 0;
  color: var(--white);
  position: relative;
}

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

.page-header-desc {
  color: var(--text-on-dark);
  font-size: 18px;
  max-width: 700px;
}

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

.contact-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

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

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

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

.form-input {
  background-color: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 69, 58, 0.08);
}

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

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

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

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

.info-item-icon svg {
  width: 20px;
  height: 20px;
}

.info-item-content h3 {
  font-size: 18px;
  margin-bottom: var(--space-xs);
}

.info-item-content p {
  color: var(--text-body);
  font-size: 15px;
}

/* Modal details review (Game Reviews Page) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 42, 38, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

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

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(28, 42, 38, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-dark);
  z-index: 10;
  transition: all 0.3s ease;
}

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

.modal-image-wrapper {
  height: 240px;
  width: 100%;
  overflow: hidden;
}

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

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

.modal-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-tag {
  background-color: var(--bg-light-green);
  color: var(--primary-green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.modal-rating {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.modal-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-lime);
  color: var(--accent-lime);
}

.modal-title {
  font-size: 26px;
  color: var(--text-dark);
}

.modal-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  white-space: pre-line;
}

/* Play Now & Sessions cards (Play Page) */
.session-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
  height: 100%;
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-green);
}

.session-badge {
  background-color: var(--bg-light-green);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.session-title {
  font-size: 22px;
  color: var(--text-dark);
}

.session-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.session-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.session-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-body);
}

.session-highlight-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet (768px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 32px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
  }
  .hero-text {
    width: 100%;
    align-items: center;
  }
  .hero-image-area {
    width: 80%;
    margin: 0 auto;
  }
  .stats-overlay {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: max-content;
  }
  
  .info-layout {
    flex-direction: column-reverse;
    gap: var(--space-2xl);
  }
  .info-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .info-graphics {
    width: 100%;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-banner {
    flex-direction: column;
    padding: var(--space-2xl);
    gap: var(--space-xl);
    text-align: center;
  }
  .cta-banner-content {
    width: 100%;
    align-items: center;
  }
  .cta-banner-img {
    width: 80%;
    height: 220px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile (480px) */
@media (max-width: 768px) {
  /* Toggle navbar elements */
  .nav-links {
    display: none;
  }
  .navbar-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .hero-image-area {
    width: 100%;
  }
  .stats-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .stat-item {
    min-width: 120px;
  }
  
  .circular-infographic {
    width: 320px;
    height: 320px;
  }
  .circle-primary {
    width: 160px;
    height: 160px;
  }
  .circle-accent {
    width: 130px;
    height: 130px;
    right: 5px;
    top: 5px;
  }
  .circle-light {
    width: 110px;
    height: 110px;
    bottom: 10px;
    left: 5px;
  }
  .circle-title {
    font-size: 14px;
  }
  .circle-subtitle {
    font-size: 10px;
  }

  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr; /* Stacking game reviews columns into 1 for mobile */
  }

  .cta-banner-img {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility Helper Classes (to avoid inline styles) */
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

.max-w-500 { max-width: 500px; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }

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

.img-about-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.img-about-tag {
  width: 100%;
  object-fit: cover;
}

.svg-close-icon {
  width: 18px;
  height: 18px;
}

.btn-full {
  width: 100%;
}

.bg-green-badge {
  background-color: var(--primary-green) !important;
  color: var(--white) !important;
}

.privacy-title {
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

