/* ===== Take A Break Ghana — Premium Game-Inspired Multi-Page Site ===== */

/* --- Brand Palette (derived from TAB logo — warm gold, deep green, cream) --- */
:root {
  --tile-cream: #f5edd6;
  --tile-border: #8b7d6b;
  --tile-shadow: rgba(60, 40, 20, 0.25);
  --board-green: #1a3c2a;
  --board-green-light: #2a5a3e;
  --board-green-dark: #0f281a;
  --ink: #1a1814;
  --ink-light: #5a5042;
  --cream: #f8f3e6;
  --cream-dark: #ede3d0;
  --gold: #c9a84c;
  --gold-light: #e0c66a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --deep: #2c1810;
  --muted: #7a6f5e;
  --rule: #d4c8b4;
  --card-bg: var(--cream);
  --card-border: var(--tile-border);
  --nav-bg: rgba(15, 40, 26, 0.97);
  --body-bg: var(--board-green);
  --text: var(--ink);
  --text-light: var(--ink-light);
  --heading-font: "Georgia", "Times New Roman", "Iowan Old Style", serif;
  --body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.35);
  --transition: 0.2s ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --board-green: #0d1f15;
    --board-green-light: #1a3c2a;
    --board-green-dark: #08120c;
    --cream: #1e1a14;
    --cream-dark: #2a241c;
    --tile-cream: #2a241c;
    --tile-border: #5a5042;
    --tile-shadow: rgba(0,0,0,0.5);
    --ink: #e8dfd0;
    --ink-light: #9a8f7e;
    --gold: #b8942e;
    --gold-light: #c9a84c;
    --deep: #0a0604;
    --muted: #7a6f5e;
    --rule: #3a342c;
    --card-bg: #1e1a14;
    --card-border: #3a342c;
    --nav-bg: rgba(8, 18, 12, 0.97);
  }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--body-font);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
::selection { background: var(--gold); color: var(--deep); }

/* --- Scrabble board grid texture (homepage only) --- */
body.homepage::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.015) 79px,
      rgba(255,255,255,0.015) 80px
    );
  pointer-events: none;
  z-index: 0;
}

/* --- Navigation --- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 0;
}
.nav-logo-img {
  height: 2rem;
  width: auto;
  display: block;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}
.nav-links li a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a:focus-visible {
  border-bottom-color: var(--gold);
  color: var(--gold-light);
}
.nav-links li a.active {
  border-bottom-color: var(--gold);
  color: var(--gold-light);
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* --- Page wrapper --- */
.page-wrap {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 60px);
}

/* --- Hero (shared) --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
}

/* --- Logo display (homepage hero) — MASSIVE, tight to headline --- */
.logo-tiles {
  display: flex;
  justify-content: center;
  margin-bottom: 0;  /* no gap — headline margin handles it */
  line-height: 0;    /* kill any inline spacing */
}
.hero-logo-img {
  max-width: 900px;
  width: 90%;
  height: auto;
  display: block;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--cream);
  margin: 0.1rem 0 0.75rem;  /* tiny gap — just enough breathing room */
  line-height: 1.2;
  max-width: 700px;
}
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--cream);
  opacity: 0.85;
  max-width: 600px;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
}
.hero .hero-sub {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--deep);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s;
  box-shadow: var(--shadow-sm);
  font-family: var(--body-font);
}
.btn:hover, .btn:focus-visible {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* --- Sections --- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--cream);
  margin: 0 0 0.25rem;
  text-align: center;
}
.section .section-sub {
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 2.5rem;
  font-weight: 500;
  text-align: center;
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card .card-photo {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--board-green-dark);
}
.card .card-body {
  padding: 1.75rem;
}
.card h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--deep);
}
.card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.5;
}
.card .card-meta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.card:hover .card-meta {
  border-bottom-color: var(--gold);
}

/* --- Why Choose (CSS icon shapes) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--board-green-dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
}
.why-item .why-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.why-item .why-icon span {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.icon-affordable::before {
  content: 'GH¢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--heading-font);
}
.icon-games::before {
  content: '++';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--heading-font);
}
.icon-screen::before {
  content: '[]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--heading-font);
}
.icon-community::before {
  content: 'OO';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--heading-font);
  letter-spacing: -0.05em;
}
.icon-booking::before {
  content: '[]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--heading-font);
}
.why-item h4 {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  color: var(--cream);
  margin: 0 0 0.25rem;
}
.why-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial .quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-light);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.testimonial .author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep);
}
.testimonial .author span {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}

/* --- Featured Experiences Grid (with photo) --- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.exp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.exp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.exp-card .exp-photo {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--board-green-dark);
}
.exp-card .exp-card-body {
  padding: 1.25rem;
}
.exp-card .exp-card-body h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--deep);
  margin: 0 0 0.3rem;
}
.exp-card .exp-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Upcoming Events Preview --- */
.event-preview-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.event-preview-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.event-preview-item:hover {
  transform: translateX(4px);
}
.event-preview-item .event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.5rem;
  padding: 0.5rem;
  background: var(--gold);
  color: var(--deep);
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
}
.event-preview-item .event-date-badge .day {
  font-size: 1.3rem;
}
.event-preview-item .event-date-badge .mon {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.event-preview-item .event-info h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--deep);
  margin: 0 0 0.2rem;
}
.event-preview-item .event-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.event-preview-item .event-info .event-meta {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* --- Page Header (inner pages) --- */
.page-header {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}
.page-header h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
}
.page-header p {
  color: var(--gold-light);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Forms --- */
.form-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--deep);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-status {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 0.5rem;
  border-radius: 4px;
}
.form-status.success {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.1);
}
.form-status.error {
  color: #c62828;
  background: rgba(198, 40, 40, 0.1);
}

/* --- Games List (with photo) --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.game-card .game-photo {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: var(--board-green-dark);
}
.game-card .game-card-body {
  padding: 1.25rem;
}
.game-card h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--deep);
  margin: 0 0 0.3rem;
}
.game-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.game-card .game-meta {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--deep);
  margin: 0 0 1rem;
}
.contact-info-card .info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-info-card .info-row:last-child {
  border-bottom: none;
}
.contact-info-card .info-row .info-icon {
  width: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-card .info-row a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-card .info-row a:hover {
  text-decoration: underline;
}
.contact-info-card .info-row span {
  color: var(--ink-light);
  font-size: 0.9rem;
}
.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: none;
}

/* --- Gallery Grid --- */
.gallery-heading {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1rem;
  text-align: left;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  background: var(--board-green-dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  transition: border-color var(--transition);
}
.gallery-item:hover {
  border-color: var(--gold);
}
.gallery-item.photo-placeholder {
  background: linear-gradient(135deg, var(--board-green-dark), var(--board-green-light));
  border: 1px dashed rgba(201, 168, 76, 0.3);
}
.gallery-item.photo-placeholder span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-section h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
}
.cta-section p {
  color: var(--cream);
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--board-green-dark);
  position: relative;
  z-index: 1;
}
footer .footer-brand {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
footer .footer-links a:hover {
  color: var(--gold-light);
}
footer .footer-address {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  margin-bottom: 1rem;
}
footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
footer .social-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
footer .social-links a:hover {
  color: var(--gold-light);
}
footer .attribution {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}
footer .attribution a {
  color: var(--muted);
  text-decoration: none;
}
footer .attribution a:hover {
  color: var(--gold-light);
}

/* --- Monopoly-inspired Events Page --- */
.events-page .page-header {
  position: relative;
}
.events-page .page-header::before {
  content: '■■■■■■■■';
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.event-card-monopoly {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.event-card-monopoly:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.event-card-monopoly .event-color-bar {
  height: 6px;
  background: var(--gold);
}
.event-card-monopoly .event-photo {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--board-green-dark);
}
.event-card-monopoly .event-body {
  padding: 1.5rem;
}
.event-card-monopoly .event-body h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--deep);
  margin: 0 0 0.3rem;
}
.event-card-monopoly .event-body .event-detail {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.2rem 0;
}
.event-card-monopoly .event-body .event-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* --- Ludo-inspired Booking Page --- */
.booking-page .page-header {
  position: relative;
}
.booking-page .page-header::before {
  content: '◆◆◆◆◆◆◆◆';
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pricing-card .price {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.5rem 0;
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--ink-light);
  border-bottom: 1px solid var(--rule);
}
.pricing-card ul li:last-child {
  border-bottom: none;
}

/* --- UNO-inspired Community Page --- */
.community-page .page-header {
  position: relative;
}
.community-page .page-header::before {
  content: '●●●●●●●●';
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

/* --- Chess-inspired Games Page --- */
.games-page .page-header {
  position: relative;
}
.games-page .page-header::before {
  content: 'RNBQKBNR';
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.5rem 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    padding: 0.75rem 1.5rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    border-left-color: var(--gold);
    border-bottom: none;
  }
  .nav-inner {
    flex-wrap: wrap;
  }
  .hero-logo-img {
    max-width: 600px;
    width: 90%;
  }
  .hero { min-height: 60vh; padding: 3rem 1rem 2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-preview-item { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-logo-img {
    max-width: 400px;
    width: 92%;
  }
  .games-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
