/* ================================================================
   ACES FULL — POKER & BILLIARDS
   Stylesheet: neon-noir card room aesthetic
   Palette: matte black, aces red, bone white, dim gold accent
   ================================================================ */

:root {
  --black:        #0a0a0a;
  --black-2:      #121212;
  --black-3:      #181818;
  --ink:          #1e1e1e;
  --red:          #e63946;
  --red-hot:      #ff2d3d;
  --red-deep:     #8b0000;
  --bone:         #f3ede3;
  --bone-dim:     #c9c2b5;
  --muted:        #7a7369;
  --gold:         #c9a449;
  --gold-dim:     #8a7030;

  --font-display: "Playfair Display", Georgia, serif;
  --font-accent:  "Bebas Neue", Impact, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
  --font-body:    "Playfair Display", Georgia, serif;

  --ease:         cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--bone);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ================================================================
   SPLASH — NEON FLICKER
   ================================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at center, #1a0408 0%, #0a0000 55%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.splash--gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1rem;
}

.splash__logo {
  width: min(46vw, 320px);
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 0 28px rgba(230, 57, 70, .65))
          drop-shadow(0 0 60px rgba(230, 57, 70, .35));
  animation: neonFlicker 2.8s steps(1, end) forwards;
}

.splash__logo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  animation: logoPop 2.8s var(--ease) forwards;
}

.splash__tagline {
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: .45em;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.6s forwards;
  text-shadow: 0 0 14px rgba(230,57,70,.4);
}

.splash__tagline span { display: inline-block; }
.splash__bullet {
  color: var(--red);
  margin: 0 .8em;
  transform: translateY(-2px);
}

.splash__city {
  margin-top: .8rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .6em;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 2s forwards;
}

.splash__skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  padding: .6rem 1rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  z-index: 4;
}
.splash__skip:hover { color: var(--bone); border-color: var(--bone-dim); }

/* Scanline overlay */
.splash__scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}
.splash__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230,57,70,.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(230,57,70,.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Neon flicker keyframes — simulates a sign powering on */
@keyframes neonFlicker {
  0%   { filter: drop-shadow(0 0 0 rgba(230,57,70,0)); opacity: 0; }
  4%   { opacity: 1; filter: drop-shadow(0 0 20px rgba(230,57,70,.9)); }
  6%   { opacity: 0.2; }
  8%   { opacity: 1; filter: drop-shadow(0 0 25px rgba(230,57,70,.95)); }
  10%  { opacity: 0.4; }
  12%  { opacity: 1; }
  14%  { opacity: 0.1; }
  16%  { opacity: 1; filter: drop-shadow(0 0 30px rgba(230,57,70,1)) drop-shadow(0 0 60px rgba(230,57,70,.5)); }
  22%  { opacity: 0.6; }
  25%  { opacity: 1; filter: drop-shadow(0 0 24px rgba(230,57,70,.85)) drop-shadow(0 0 50px rgba(230,57,70,.45)); }
  100% { opacity: 1; filter: drop-shadow(0 0 22px rgba(230,57,70,.75)) drop-shadow(0 0 50px rgba(230,57,70,.4)); }
}

@keyframes logoPop {
  0%   { opacity: 0; transform: scale(.92); }
  4%   { opacity: 1; }
  8%   { opacity: .2; }
  12%  { opacity: 1; }
  16%  { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

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

@media (prefers-reduced-motion: reduce) {
  .splash__logo, .splash__logo img, .splash__tagline, .splash__city {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Mobile splash refinements — new square logo needs breathing room */
@media (max-width: 720px) {
  .splash__logo {
    width: min(58vw, 260px);
  }
  .splash__tagline {
    margin-top: 1.25rem;
    letter-spacing: .32em;
    font-size: .95rem;
  }
  .splash__bullet {
    margin: 0 .55em;
  }
  .splash__city {
    margin-top: .7rem;
    font-size: .65rem;
    letter-spacing: .5em;
  }
  .splash__skip {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: .5rem .75rem;
    font-size: .65rem;
  }
}

/* ================================================================
   SITE (hidden until splash completes)
   ================================================================ */
.site {
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.site--visible { opacity: 1; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(10,10,10,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-family: var(--font-accent);
  font-size: .95rem;
  letter-spacing: .24em;
}
.nav__links a {
  color: var(--bone-dim);
  transition: color .2s;
  position: relative;
  padding: .25rem 0;
}
.nav__links a:hover { color: var(--red); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .15em;
  color: var(--bone);
  padding: .6rem 1rem;
  border: 1px solid rgba(230,57,70,.5);
  transition: background .2s, border-color .2s, color .2s;
}
.nav__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

@media (max-width: 720px) {
  .nav {
    padding: .75rem 1rem;
    justify-content: center;
  }
  .nav__links { display: none; }
  .nav__cta { font-size: .7rem; padding: .5rem .9rem; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(139,0,0,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(201,164,73,.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  z-index: 0;
}

.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: .08;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero__layout {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero__content {
  position: relative;
  min-width: 0;
}


/* Tablet — shrink logo a bit */
@media (max-width: 960px) {
  .hero__layout {
    gap: 2.5rem;
  }
}

/* Mobile — stack: logo on top, content below */
@media (max-width: 720px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--bone-dim);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  color: var(--bone);
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease) forwards;
}
.hero__line--1 { animation-delay: .2s; }
.hero__line--2 { animation-delay: .5s; }
.hero__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
  text-shadow: 0 0 30px rgba(230,57,70,.45);
}

.hero__sub {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--bone-dim);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .8s forwards;
}

.hero__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: .22em;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 rgba(230,57,70,0);
}
.btn--primary:hover {
  background: var(--red-hot);
  box-shadow: 0 0 30px rgba(230,57,70,.55);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover {
  border-color: var(--bone);
  background: rgba(255,255,255,.04);
}
.phone-icon { font-size: 1.1em; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.stat__value {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--bone);
  margin-bottom: .25rem;
  letter-spacing: .05em;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .stat__value { font-size: 1.4rem; }
}

/* Decorative corner suits */
.hero__suits { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.suit {
  position: absolute;
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(255,255,255,.025);
  font-family: serif;
}
.suit--spade   { top: 12%; right: 8%; transform: rotate(-12deg); }
.suit--heart   { bottom: 18%; left: 5%; color: rgba(230,57,70,.06); transform: rotate(8deg); }
.suit--diamond { top: 30%; right: 20%; color: rgba(230,57,70,.04); transform: rotate(-6deg); font-size: clamp(2rem, 5vw, 4rem); }
.suit--club    { bottom: 8%; right: 12%; transform: rotate(15deg); font-size: clamp(2.5rem, 6vw, 5rem); }

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee {
  background: var(--red);
  color: var(--black);
  padding: .9rem 0;
  overflow: hidden;
  position: relative;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: .3em;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
  animation: scroll 27s linear infinite; /* v1.0.14: 36s -> 27s (+25% faster) */
  will-change: transform;
}
.marquee__track > * { flex-shrink: 0; }
.marquee__dot { font-family: serif; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 1.25rem)); }
}

/* ================================================================
   SECTIONS — SHARED
   ================================================================ */
.section {
  padding: 7rem 2rem;
  position: relative;
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section__label {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .3em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.suit-inline { color: var(--red); font-size: 1.2em; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--bone);
}
.section__lede {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--bone-dim);
  margin-bottom: 3rem;
}

/* POKER section */
.section--poker {
  background: linear-gradient(180deg, #0a0a0a 0%, #0c0607 100%);
  border-top: 1px solid rgba(255,255,255,.04);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  border-color: rgba(230,57,70,.3);
  transform: translateY(-2px);
}
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1rem;
  opacity: .85;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--bone);
}
.card p {
  font-size: .98rem;
  color: var(--bone-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card__tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: inline-block;
  padding: .3rem .6rem;
  border: 1px dashed rgba(201,164,73,.3);
}

/* BILLIARDS */
.section--billiards {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(20,60,35,.18) 0%, transparent 60%),
    #0a0a0a;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) { .split { grid-template-columns: 1fr; } }
.split__block {
  padding: 2.5rem;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.06);
}
.split__block h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bone);
}
.split__block p {
  color: var(--bone-dim);
  margin-bottom: 1rem;
  line-height: 1.65;
}

/* HOURS */
.section--hours {
  background: var(--black-2);
}
.hours-table {
  max-width: 640px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.hours-row:hover { background: rgba(230,57,70,.04); }
.hours-row .day {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  letter-spacing: .15em;
  color: var(--bone);
}
.hours-row .time {
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--bone-dim);
  letter-spacing: .05em;
}
.hours-row--closed .day { color: var(--muted); }
.hours-row--closed .time {
  color: var(--red);
  font-weight: 500;
  letter-spacing: .2em;
}

/* MEMBERSHIP / CLUB */
.section--membership {
  background:
    linear-gradient(180deg, #0a0a0a 0%, #120608 60%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.04);
}
.section--membership::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(230,57,70,.08) 0%, transparent 60%);
  pointer-events: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.08);
}
.pillar {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,10,.4);
  transition: background .3s var(--ease);
}
.pillar:hover { background: rgba(230,57,70,.04); }
.pillar__icon {
  font-family: serif;
  font-size: 2.4rem;
  color: var(--red);
  opacity: .55;
  margin-bottom: 1rem;
  line-height: 1;
}
.pillar h3 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  letter-spacing: .12em;
  color: var(--bone);
  margin-bottom: .75rem;
}
.pillar p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--bone-dim);
}

.club-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--black-2);
  border: 1px solid rgba(230,57,70,.25);
  margin-top: 1rem;
  position: relative;
}
.club-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}
.club-cta p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bone);
  margin: 0;
  font-style: italic;
}
@media (max-width: 520px) {
  .club-cta { flex-direction: column; align-items: flex-start; padding: 1.75rem; }
  .club-cta p { font-size: 1.1rem; }
}

/* VISIT */
.section--visit {
  background: var(--black);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}
.info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.info-block:first-child { padding-top: 0; }
.info-block__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.info-block__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--bone);
}
.info-block__value a { transition: color .2s; }
.info-block__value a:hover { color: var(--red); }

.visit-map {
  aspect-ratio: 4/3;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  filter: grayscale(.6) contrast(1.1) brightness(.88);
  transition: filter .5s var(--ease);
}
.visit-map:hover { filter: grayscale(0) contrast(1) brightness(1); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #050505;
  padding: 4rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
}
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: .02em;
  color: var(--bone);
  line-height: 1;
  margin-bottom: .75rem;
}
.footer__tagline {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 520px) { .footer__columns { grid-template-columns: 1fr; } }
.footer__col h4 {
  font-family: var(--font-accent);
  font-size: .9rem;
  letter-spacing: .28em;
  color: var(--red);
  margin-bottom: .75rem;
}
.footer__col p {
  color: var(--bone-dim);
  font-size: .95rem;
  line-height: 1.6;
}
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--bone); }
.footer__base {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__built a { color: var(--red); transition: color .2s; }
.footer__built a:hover { color: var(--red-hot); }

/* v1.0.5 mobile gap tighten */
@media (max-width: 720px) {
  .section { padding: 5rem 1.25rem; }
  .hero { padding: 6rem 1.25rem 3.5rem; }
}


/* v1.0.10 today-highlight (Hours section) */
.hours-row--today {
  border-left: 3px solid var(--red);
  padding-left: calc(1rem - 3px);
  background: rgba(230, 57, 70, 0.04);
}
.hours-row--today .day,
.hours-row--today .time {
  color: var(--bone);
}
.today-label {
  display: inline-block;
  background: var(--red);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.15rem 0.5rem;
  margin-right: 0.75rem;
  border-radius: 2px;
  vertical-align: middle;
  transform: translateY(-1px);
}


/* v1.0.10 marquee positioning (now below nav, above hero) */
.marquee {
  margin-top: 0;
  position: sticky;
  top: 68px; /* approx nav height */
  z-index: 90;
}
@media (max-width: 720px) {
  .marquee {
    top: 52px;
  }
}


/* v1.0.11 hero banner */
.hero__banner {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.3s forwards;
}
.hero__banner-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.hero__banner-glow {
  position: absolute;
  inset: -18%;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(230, 57, 70, 0.35) 0%,
    rgba(230, 57, 70, 0.15) 40%,
    rgba(230, 57, 70, 0) 72%
  );
  filter: blur(32px);
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero__banner {
    width: min(640px, 100%);
    margin-bottom: 2rem;
  }
}
@media (max-width: 720px) {
  .hero__banner {
    width: 100%;
    margin-bottom: 2rem;
  }
  .hero__banner-img {
    border-radius: 12px;
  }
}


/* v1.0.12 room card backgrounds */
.card--room {
  background-color: var(--black-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 360px;
  isolation: isolate;
}
.card--room::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.85) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  pointer-events: none;
  z-index: 0;
  transition: background .4s var(--ease);
}
.card--room > * {
  position: relative;
  z-index: 1;
}
.card--cash-games {
  background-image: url("assets/acesfull-cash-games.jpg");
}
.card--tournaments {
  background-image: url("assets/acesfull-tournaments.jpg");
}
.card--house-rules {
  background-image: url("assets/acesfull-house-rules.jpg");
}
.card--membership {
  background-image: url("assets/acesfull-membership-byob.jpg");
}
@media (max-width: 720px) {
  /* v1.0.14 mobile fix applied */
  .card--room {
    min-height: 320px;
    background-position: left bottom;
  }
  .card--room::after {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.80) 40%,
      rgba(10, 10, 10, 0.55) 100%
    );
  }
}

/* v1.0.15 room card hover */
@media (hover: hover) {
  .card--room:hover::after {
    background: linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.30) 0%,
      rgba(10, 10, 10, 0.47) 50%,
      rgba(10, 10, 10, 0.55) 100%
    );
  }
}
