@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --aw-teal: #0d7377;
  --aw-teal-deep: #095456;
  --aw-teal-soft: #14919b;
  --aw-gold: #c9a227;
  --aw-gold-soft: #e0c56a;
  --aw-ink: #121618;
  --aw-charcoal: #1c2426;
  --aw-slate: #2a3538;
  --aw-mist: #e8f1f1;
  --aw-cream: #f7f4ef;
  --aw-white: #ffffff;
  --aw-muted: #6b787a;
  --aw-overlay: rgba(12, 18, 20, 0.78);
  --aw-radius: 1.25rem;
  --aw-shadow: 0 18px 50px rgba(9, 40, 42, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--aw-ink);
  background:
    radial-gradient(circle at top left, rgba(20, 145, 155, 0.08), transparent 32%),
    linear-gradient(180deg, #f4f8f8 0%, var(--aw-cream) 48%, #eef5f5 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--aw-teal);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--aw-gold);
}

h1,
h2,
h3,
h4,
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--aw-ink);
}

.section-pad {
  padding: 5.5rem 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aw-teal);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 38rem;
  color: var(--aw-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.btn-aw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-aw:focus-visible {
  outline: 2px solid var(--aw-gold);
  outline-offset: 3px;
}

.btn-aw-primary {
  background: linear-gradient(135deg, var(--aw-teal), var(--aw-teal-soft));
  color: var(--aw-white);
  box-shadow: 0 12px 28px rgba(13, 115, 119, 0.28);
}

.btn-aw-primary:hover {
  color: var(--aw-white);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 115, 119, 0.36);
}

.btn-aw-gold {
  background: linear-gradient(135deg, var(--aw-gold), var(--aw-gold-soft));
  color: var(--aw-ink);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28);
}

.btn-aw-gold:hover {
  color: var(--aw-ink);
  transform: translateY(-2px);
}

.btn-aw-ghost {
  background: transparent;
  color: var(--aw-white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.btn-aw-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--aw-white);
}

.btn-aw-outline {
  background: transparent;
  color: var(--aw-teal-deep);
  border: 1px solid rgba(13, 115, 119, 0.35);
}

.btn-aw-outline:hover {
  background: rgba(13, 115, 119, 0.08);
  color: var(--aw-teal-deep);
}

.topbar {
  background: var(--aw-charcoal);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  padding: 0.65rem 0;
  position: relative;
  z-index: 30;
}

.topbar i {
  color: var(--aw-gold);
  margin-right: 0.45rem;
}

.site-navbar {
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 115, 119, 0.08);
  padding: 0.85rem 0;
  position: relative;
  z-index: 40;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--aw-ink);
}

.brand-lockup:hover {
  color: var(--aw-ink);
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--aw-teal), var(--aw-teal-deep));
  color: var(--aw-gold-soft);
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(13, 115, 119, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aw-muted);
  font-weight: 500;
}

.nav-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: 0.85rem;
  background: var(--aw-white);
  color: var(--aw-teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--aw-teal);
  color: var(--aw-white);
  border-color: var(--aw-teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--aw-slate);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aw-teal), var(--aw-gold));
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--aw-teal-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: var(--aw-white);
  background:
    linear-gradient(120deg, rgba(10, 24, 26, 0.88) 8%, rgba(13, 115, 119, 0.42) 52%, rgba(18, 22, 24, 0.72) 100%),
    url("../images/hero-banner.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22), transparent 68%);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(18, 22, 24, 0.35));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero h1 {
  color: var(--aw-white);
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 12ch;
  margin-bottom: 1.1rem;
  animation: riseIn 0.9s ease both;
}

.hero p {
  max-width: 34rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
  animation: riseIn 1s ease 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 1.05s ease 0.2s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--aw-gold-soft);
}

.hero-meta div span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: var(--aw-radius);
  overflow: hidden;
  box-shadow: var(--aw-shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.7s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.media-frame .frame-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(18, 22, 24, 0.78);
  color: var(--aw-white);
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
}

.media-frame .frame-badge i {
  color: var(--aw-gold);
  margin-right: 0.4rem;
}

.feature-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 115, 119, 0.08);
}

.feature-list i {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(13, 115, 119, 0.1);
  color: var(--aw-teal);
  flex-shrink: 0;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(13, 115, 119, 0.05), transparent 28%),
    var(--aw-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.menu-card {
  background: linear-gradient(180deg, #ffffff, #f4fafa);
  border: 1px solid rgba(13, 115, 119, 0.1);
  border-radius: 1.2rem;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aw-shadow);
}

.menu-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--aw-teal), var(--aw-teal-soft));
  color: var(--aw-white);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.menu-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.menu-card p {
  color: var(--aw-muted);
  margin-bottom: 1rem;
}

.menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(13, 115, 119, 0.18);
  font-size: 0.94rem;
}

.menu-card li span:last-child {
  color: var(--aw-teal-deep);
  font-weight: 600;
  white-space: nowrap;
}

.casino-section {
  position: relative;
  color: var(--aw-white);
  background:
    linear-gradient(135deg, rgba(12, 24, 26, 0.92), rgba(13, 115, 119, 0.78)),
    url("../images/casino-tables.jpg") center / cover no-repeat;
}

.casino-section .section-eyebrow,
.casino-section .section-title,
.casino-section .section-lead {
  color: var(--aw-white);
}

.casino-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.15rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.pillar i {
  color: var(--aw-gold-soft);
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.pillar h3 {
  color: var(--aw-white);
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 2.4rem;
}

.game-tile {
  background: var(--aw-white);
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(13, 115, 119, 0.1);
  box-shadow: 0 10px 28px rgba(18, 40, 42, 0.06);
  transition: transform 0.3s ease;
}

.game-tile:hover {
  transform: translateY(-5px);
}

.game-tile .tile-media {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.game-tile .tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(12, 22, 24, 0.45));
}

.game-tile .tile-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.game-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.game-tile p {
  margin: 0;
  color: var(--aw-muted);
  font-size: 0.92rem;
}

.events-section {
  background: linear-gradient(180deg, transparent, rgba(13, 115, 119, 0.04));
}

.event-stack {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.event-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 115, 119, 0.1);
}

.event-date {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, var(--aw-teal), var(--aw-teal-deep));
  color: var(--aw-white);
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.event-date span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.event-row h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.event-row p {
  margin: 0;
  color: var(--aw-muted);
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  color: #8a6d12;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.contact-band {
  background:
    linear-gradient(120deg, var(--aw-charcoal), var(--aw-teal-deep));
  color: var(--aw-white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-band h2 {
  color: var(--aw-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.contact-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 0.9rem;
}

.contact-points div {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-points i {
  color: var(--aw-gold-soft);
  margin-top: 0.15rem;
}

.disclaimer-section {
  background: var(--aw-mist);
}

.disclaimer-box {
  background: var(--aw-white);
  border-radius: 1.3rem;
  padding: 2rem;
  border: 1px solid rgba(13, 115, 119, 0.12);
  box-shadow: 0 12px 30px rgba(18, 40, 42, 0.05);
}

.disclaimer-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.disclaimer-box p,
.disclaimer-box li {
  color: var(--aw-muted);
}

.disclaimer-box ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.site-footer {
  background: var(--aw-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.8rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--aw-white);
}

.footer-brand p {
  max-width: 26rem;
  margin-top: 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--aw-gold-soft);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.overlay-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 14, 16, 0.72);
  backdrop-filter: blur(7px);
}

.overlay-layer.active {
  display: flex;
}

.overlay-card {
  width: min(100%, 440px);
  background: linear-gradient(180deg, #ffffff, #f3f8f8);
  border-radius: 1.35rem;
  padding: 1.8rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: riseIn 0.35s ease both;
}

.overlay-card .icon-badge {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--aw-teal), var(--aw-teal-deep));
  color: var(--aw-gold-soft);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.overlay-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.65rem;
}

.overlay-card p {
  color: var(--aw-muted);
  margin-bottom: 1.4rem;
}

.overlay-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.overlay-actions .btn-aw {
  width: 100%;
}

.age-restricted .overlay-card {
  text-align: left;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1500;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(18, 22, 24, 0.96);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cookie-bar.active {
  display: block;
  animation: riseIn 0.35s ease both;
}

.cookie-bar p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.cookie-bar a {
  color: var(--aw-gold-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.policy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-hero {
  padding: 4rem 0 2.5rem;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 35%),
    linear-gradient(135deg, var(--aw-charcoal), var(--aw-teal-deep));
  color: var(--aw-white);
}

.policy-hero h1 {
  color: var(--aw-white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.7rem;
}

.policy-hero p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
}

.policy-content {
  flex: 1;
  padding: 3.5rem 0 4.5rem;
}

.policy-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 115, 119, 0.1);
  border-radius: 1.3rem;
  padding: 2rem;
  box-shadow: 0 14px 36px rgba(18, 40, 42, 0.06);
}

.policy-panel h2 {
  font-size: 1.7rem;
  margin: 1.8rem 0 0.7rem;
}

.policy-panel h2:first-child {
  margin-top: 0;
}

.policy-panel p,
.policy-panel li {
  color: var(--aw-muted);
}

.policy-panel ul {
  padding-left: 1.15rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.05);
  }
}

@media (max-width: 991.98px) {
  .site-nav-wrap {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0.75rem;
    right: 0.75rem;
    background: var(--aw-white);
    border: 1px solid rgba(13, 115, 119, 0.12);
    border-radius: 1.1rem;
    box-shadow: var(--aw-shadow);
    padding: 0.85rem;
    display: none;
  }

  .site-nav-wrap.open {
    display: block;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
  }

  .site-nav a:hover {
    background: rgba(13, 115, 119, 0.06);
  }

  .site-nav a::after {
    display: none;
  }

  .split-grid,
  .menu-grid,
  .pillars,
  .contact-band,
  .event-row {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-tag {
    justify-self: start;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    min-height: 78vh;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .overlay-actions {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: 1rem;
  }

  .contact-band {
    padding: 1.6rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
