/* RoyalTuiClub — Layout B (Light Elegant) */
/* Fonts: Montserrat + Open Sans */

:root {
  --bg-primary: #f8f5f0;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #faf8f5;
  --bg-dark: #1a1a2e;
  --accent: #1a237e;
  --accent-light: #283593;
  --secondary: #c9a84c;
  --secondary-light: #d4b85a;
  --text-primary: #1a1a2e;
  --text-secondary: #555566;
  --text-muted: #888899;
  --white: #ffffff;
  --black: #000000;
  --border: rgba(26,35,126,0.1);
  --border-light: #e8e4df;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }

/* --- Top Bar --- */
.top-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --- Header --- */
.header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.logo span { color: var(--secondary); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  display: block;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248,245,240,0.93) 0%, rgba(248,245,240,0.80) 50%, rgba(248,245,240,0.93) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,35,126,0.08);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(26,35,126,0.15);
}
.hero h1 { margin-bottom: 20px; color: var(--text-primary); }
.hero h1 span { color: var(--secondary); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,35,126,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,35,126,0.35);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: rgba(26,35,126,0.05);
  color: var(--accent);
}
.btn-gold {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* --- Section --- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* --- Game Cards --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}
.game-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.game-card__body { padding: 20px; }
.game-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.game-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.game-card__tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--secondary);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.feature-card__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- About Block --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}
.testimonial-card__text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-card__text::before { content: '\201C'; font-size: 2rem; color: var(--secondary); line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-card__author { font-weight: 700; color: var(--text-primary); }
.testimonial-card__role { color: var(--text-muted); font-size: 0.85rem; }
.testimonial-card__stars { color: var(--secondary); margin-bottom: 12px; font-size: 1.1rem; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--secondary);
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; }

/* --- Newsletter --- */
.newsletter {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
}
.newsletter h2 { color: var(--white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input[type="email"]:focus { box-shadow: 0 0 0 3px rgba(201,168,76,0.4); }
.form-success {
  display: none;
  color: var(--secondary-light);
  margin-top: 12px;
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo { color: var(--white); }
.footer .logo span { color: var(--secondary); }
.footer-brand p { color: #999; font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #999; font-size: 0.9rem; }
.footer-links a:hover { color: var(--secondary); }

.footer-disclaimer {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.footer-disclaimer p {
  color: #888;
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: center;
}
.footer-disclaimer strong { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: #666;
  font-size: 0.82rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 200;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.cookie-banner p { color: var(--text-secondary); font-size: 0.9rem; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.85rem; }

/* --- Age Modal --- */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
.age-modal__box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.age-modal__box h2 { margin-bottom: 12px; }
.age-modal__box p { color: var(--text-secondary); margin-bottom: 24px; }
.age-modal__buttons { display: flex; gap: 16px; justify-content: center; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* --- Content Pages --- */
.content-section { padding: 60px 0; }
.content-body { max-width: 800px; margin: 0 auto; }
.content-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.content-body h3 { font-size: 1.2rem; margin: 24px 0 12px; color: var(--accent); }
.content-body p { color: var(--text-secondary); margin-bottom: 16px; }
.content-body ul, .content-body ol { color: var(--text-secondary); margin: 12px 0 20px 24px; }
.content-body li { margin-bottom: 8px; }
.content-body a { color: var(--accent); text-decoration: underline; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-item__text h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item__text p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Game Detail Page --- */
.game-detail { padding: 60px 0; }
.game-detail__banner { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-lg); }
.game-detail__banner img { width: 100%; height: 400px; object-fit: cover; }
.game-detail__info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.game-detail__info-item { background: var(--bg-card); border-radius: var(--radius-sm); padding: 20px; text-align: center; border: 1px solid var(--border-light); box-shadow: var(--shadow); }
.game-detail__info-label { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.game-detail__info-value { font-weight: 700; font-family: var(--font-heading); font-size: 1.1rem; }
.game-detail__content h2 { margin: 32px 0 16px; }
.game-detail__content p { color: var(--text-secondary); margin-bottom: 16px; }
.game-detail__disclaimer { background: rgba(201,168,76,0.08); border-left: 4px solid var(--secondary); padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 32px 0; }
.game-detail__disclaimer p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.more-games { padding: 60px 0; }
.more-games h2 { text-align: center; margin-bottom: 32px; }

/* --- Values Grid --- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.value-card { background: var(--bg-card); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border-light); box-shadow: var(--shadow); }
.value-card h3 { color: var(--accent); margin-bottom: 12px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Stats Counter --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-card__value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.stat-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.stat-card__desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* --- Parallax Section --- */
.parallax-section {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.80) 0%, rgba(26,26,46,0.90) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-section__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.parallax-section__content .section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.parallax-section__content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--white);
}
.parallax-section__content p {
  color: #b0b0c0;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.breadcrumbs a {
  color: var(--text-secondary);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; color: var(--text-muted); }
.breadcrumbs span:last-child { margin: 0; color: var(--text-primary); font-weight: 600; }

/* --- Page Hero Compact --- */
.page-hero--compact {
  padding: 60px 0 40px;
}
.page-hero--compact h1 {
  margin-bottom: 0;
}

/* --- Text Accent --- */
.text-accent { color: var(--secondary); }

/* --- Game Player (iframe) --- */
.game-player {
  padding: 40px 0;
  background: var(--bg-dark);
}
.game-player__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 62.5%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.game-player__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.game-player__disclaimer {
  text-align: center;
  color: #888899;
  font-size: 0.85rem;
  margin-top: 16px;
  padding: 0 16px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .hero { min-height: 480px; padding: 60px 0; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .parallax-section { height: 300px; background-attachment: scroll; }
  .game-player__wrapper { padding-bottom: 75%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .about-img img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .game-detail__info { grid-template-columns: 1fr; }
  .newsletter { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
