/* ===== HASH HOUSE — ELITE POKER CLUB ===== */
/* Typography: Cinzel (display/logo), Cormorant Garamond (editorial body), Outfit (UI/labels) */
/* Palette: Obsidian #0A0A0A | Imperial Blue #1C2841 | Forest Green #1B4D3E |
   Charcoal #333 | Burgundy #541F2C | Antique Gold #D4AF37 |
   Aged Cream #F4EBDC | Bronze Gold #9C7F45 */

:root {
  --black: #0A0A0A;
  --blue: #1C2841;
  --green: #1B4D3E;
  --charcoal: #333333;
  --burgundy: #541F2C;
  --gold: #D4AF37;
  --cream: #F4EBDC;
  --bronze: #9C7F45;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--bronze);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
em { font-style: italic; color: var(--gold); }

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(212, 175, 55, 0.12);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.logo:hover .logo-img { opacity: 0.85; }

/* Nav */
nav ul {
  display: flex;
  gap: 36px;
}
nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(244, 235, 220, 0.5);
  transition: color 0.4s;
  position: relative;
}
nav a:hover, nav a.active { color: var(--gold); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav a:hover::after, nav a.active::after { width: 100%; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* ===== ORNAMENTS & DIVIDERS ===== */
.hero-ornament, .testimonial-ornament, .footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-suit {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.6;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
}
.divider-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}
.divider-suit {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.3;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(28, 40, 65, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(27, 77, 62, 0.15) 0%, transparent 50%),
    var(--black);
  overflow: hidden;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating card suits */
.hero-suits { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.floating-suit {
  position: absolute;
  left: var(--x);
  bottom: -60px;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.04);
  animation: float-up var(--duration) var(--delay) infinite linear;
  pointer-events: none;
}
@keyframes float-up {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 1s 0.5s forwards;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 32px;
  letter-spacing: 2px;
  color: var(--cream);
}
.hero h1 .gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}
.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: reveal-line 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-line:nth-child(1) { animation-delay: 0.7s; }
.reveal-line:nth-child(2) { animation-delay: 0.9s; }
.reveal-line:nth-child(3) { animation-delay: 1.1s; }
@keyframes reveal-line {
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 1s 1.2s forwards;
  letter-spacing: 1px;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(244, 235, 220, 0.55);
  max-width: 550px;
  margin: 0 auto 48px;
  line-height: 1.9;
  opacity: 0;
  animation: fade-up 1s 1.5s forwards;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 1.7s forwards;
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 1s 2.2s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}
.scroll-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.btn-primary:hover {
  background: #6b2838;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(84, 31, 44, 0.5), 0 0 20px rgba(212, 175, 55, 0.08);
}
.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: none;
  animation: shimmer 4s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  30% { left: 100%; }
  100% { left: 100%; }
}
.btn-text { position: relative; z-index: 1; }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 235, 220, 0.15);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===== STATS ===== */
.stats {
  padding: 80px 40px;
  background: var(--blue);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 24.5%, rgba(212,175,55,0.04) 25%, transparent 25.5%
  );
  pointer-events: none;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.08);
}
.stat-item {
  background: var(--blue);
  padding: 40px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 235, 220, 0.35);
}

/* ===== SECTIONS ===== */
section { padding: 120px 40px; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: 1px;
  color: var(--cream);
}
.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.section-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(244, 235, 220, 0.55);
  max-width: 520px;
  line-height: 1.9;
}

/* ===== ABOUT ===== */
.about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}
.about-card-stack { position: relative; width: 200px; height: 280px; }
.about-card {
  position: absolute;
  width: 180px;
  height: 260px;
  background: linear-gradient(135deg, var(--blue), var(--charcoal));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.15);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.about-card-1 {
  transform: rotate(-8deg) translateX(-20px);
  z-index: 3;
}
.about-card-2 {
  transform: rotate(3deg) translateX(10px) translateY(-10px);
  z-index: 2;
  background: linear-gradient(135deg, var(--green), #0f3028);
  border-color: rgba(27, 77, 62, 0.4);
}
.about-card-2 { color: rgba(212, 175, 55, 0.1); }
.about-card-3 {
  transform: rotate(12deg) translateX(30px) translateY(-5px);
  z-index: 1;
  background: linear-gradient(135deg, var(--burgundy), #3a1520);
  border-color: rgba(84, 31, 44, 0.3);
}
.about-card-3 { color: rgba(212, 175, 55, 0.08); }
.about-card-stack:hover .about-card-1 { transform: rotate(-15deg) translateX(-40px); }
.about-card-stack:hover .about-card-2 { transform: rotate(0deg) translateX(0) translateY(-20px); }
.about-card-stack:hover .about-card-3 { transform: rotate(15deg) translateX(40px) translateY(0); }

/* ===== GAME SCHEDULE ===== */
.games {
  background: var(--blue);
  position: relative;
}
.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.game-card {
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.08);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.game-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}
.game-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.game-card-accent.accent-blue {
  background: linear-gradient(90deg, var(--burgundy), transparent);
}
.game-suit-watermark {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.03);
  pointer-events: none;
  line-height: 1;
}
.game-day {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.game-time {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--cream);
  letter-spacing: 2px;
}
.game-type {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(156, 127, 69, 0.15);
}
.game-desc {
  font-size: 1.05rem;
  color: rgba(244, 235, 220, 0.45);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== HOUSE RULES ===== */
.rules { background: var(--black); }
.rules-header { text-align: center; margin-bottom: 0; }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(212, 175, 55, 0.06);
}
.rule-item {
  background: var(--black);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.4s;
}
.rule-item:hover { background: rgba(28, 40, 65, 0.2); }
.rule-number {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
  opacity: 0.6;
}
.rule-item p {
  font-size: 1.05rem;
  color: rgba(244, 235, 220, 0.5);
  font-weight: 400;
  line-height: 1.6;
}

/* ===== CLUB PILLARS ===== */
.pillars { background: var(--blue); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-card {
  background: rgba(10, 10, 10, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.06);
  padding: 48px 36px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateY(-6px);
  background: rgba(10, 10, 10, 0.5);
}
.pillar-card:hover::before { opacity: 0.5; }
.pillar-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.pillar-card:hover .pillar-icon { opacity: 1; }
.pillar-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--cream);
  letter-spacing: 1px;
}
.pillar-card p {
  font-size: 1.05rem;
  color: rgba(244, 235, 220, 0.4);
  font-weight: 400;
  line-height: 1.8;
}

/* ===== MEMBERSHIP ===== */
.membership { background: var(--black); }
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.membership-benefits {
  margin-top: 28px;
  margin-bottom: 36px;
}
.membership-benefits li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: rgba(244, 235, 220, 0.6);
  font-weight: 400;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.membership-benefits li:last-child { border-bottom: none; }
.benefit-suit {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Membership card */
.membership-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}
.membership-card {
  width: 380px;
  aspect-ratio: 1.586/1;
  background: linear-gradient(135deg, #1a2035 0%, var(--charcoal) 40%, #1a2035 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.membership-card:hover {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}
.membership-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(212, 175, 55, 0.03) 45%,
    rgba(212, 175, 55, 0.06) 50%,
    rgba(212, 175, 55, 0.03) 55%,
    transparent 60%
  );
  pointer-events: none;
  transition: transform 0.5s;
}
.membership-card:hover .membership-card-shine {
  transform: translateX(100px);
}
.membership-card::before {
  content: '\2660';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 10rem;
  color: rgba(212, 175, 55, 0.025);
  pointer-events: none;
  line-height: 1;
}
.membership-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.membership-card-logo-img {
  height: 18px;
  width: auto;
}
.membership-card-suit {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
}
.membership-card-center { text-align: center; }
.membership-card-label {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--gold);
}
.membership-card-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(244, 235, 220, 0.25);
  margin-top: 8px;
}
.membership-card-bottom {
  display: flex;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 235, 220, 0.2);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--blue);
  text-align: center;
  padding: 140px 40px;
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(244, 235, 220, 0.8);
}
.testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
}
.testimonial-role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: rgba(244, 235, 220, 0.3);
  margin-top: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== PRIVATE TABLES ===== */
.private-tables { background: var(--black); }
.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.private-image {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.private-felt {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #1d5a40, var(--green), #0f3028);
  border-radius: 100px / 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 12px rgba(156, 127, 69, 0.2),
    0 0 0 14px rgba(10, 10, 10, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.5);
}
.felt-rail {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 90px / 52px;
  pointer-events: none;
}
.private-image-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: rgba(212, 175, 55, 0.2);
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--green), #0d2e24);
  padding: 60px 40px 40px;
}
.footer-ornament { margin-bottom: 48px; }
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-img { height: 28px; }
.footer-brand p {
  font-size: 1rem;
  color: rgba(244, 235, 220, 0.35);
  font-weight: 400;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.7;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(244, 235, 220, 0.4);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: rgba(244, 235, 220, 0.2);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 1px;
  color: rgba(212, 175, 55, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .header-inner { padding: 0 24px; }
  section { padding: 80px 24px; }
  .about-grid, .membership-grid, .private-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .game-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid, .rules-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-visual { height: 300px; }
}
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    gap: 28px;
    transform: translateY(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  }
  nav ul.open { transform: translateY(0); }
  .menu-toggle { display: flex; }
  .logo-divider, .logo-tagline { display: none; }
  .hero { min-height: 100svh; padding: 120px 24px 80px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-scroll-indicator { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-card { width: 300px; padding: 24px 28px; }
  .membership-card-label { font-size: 1.4rem; letter-spacing: 5px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .game-card { padding: 36px 28px; }
  .private-felt { border-radius: 60px / 40px; }
  .about-card-stack { transform: scale(0.85); }
}
@media (max-width: 480px) {
  .hero-badge { padding: 8px 20px; font-size: 0.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stat-item { padding: 28px 16px; }
  .game-card { padding: 28px 24px; }
  .membership-card { width: 260px; padding: 20px 22px; }
}
