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

:root {
  --red: rgb(225, 25, 25);
  --red-light: rgb(255, 100, 100);
  --red-dim: #8a1e1e;
  --black: #080808;
  --dark: #111111;
  --dark2: #1a1a1a;
  --cream: #f0e8d8;
  --muted: #888;
  --font-display: "Playfair Display", serif;
  --font-body: "Raleway", sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--red-dim);
  border-radius: 3px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    transparent 100%
  );
  transition: background var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 1px 0 rgba(207, 46, 46, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover {
  color: var(--red);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  background: var(--red);
  color: var(--black);
  padding: 11px 26px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--red-light);
  color: var(--black);
}
.nav-links .nav-cta::after {
  display: none;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-menu a:hover {
  color: var(--red);
}

/* ─── BOOKING MODAL ─── */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 200;
  overflow-y: auto;
  padding: 100px 24px 60px;
}
.booking-modal.open {
  display: block;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px;
  z-index: 201;
}
.modal-close span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: background var(--transition);
  transform-origin: center;
}
.modal-close span:nth-child(1) {
  transform: translateY(1px) rotate(45deg);
}
.modal-close span:nth-child(2) {
  transform: translateY(-1px) rotate(-45deg);
}
.modal-close:hover span {
  background: var(--red);
}

.modal-inner {
  max-width: 640px;
  margin: 0 auto;
}
.modal-inner .section-label {
  color: var(--red);
}
.modal-inner .section-title {
  color: var(--cream);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 3px solid rgba(207, 46, 46, 0.4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(240, 232, 216, 0.85);
  margin: 0 auto 44px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 16px 42px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-red {
  background: var(--red);
  color: var(--black);
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(207, 46, 46, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

/* ─── SECTION SHARED ─── */
section {
  padding: 96px 40px;
}

.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.red-rule {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 32px;
}

/* ─── EVENT TYPES ─── */
.events {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.events .section-label {
  color: var(--red);
}

.events .section-title {
  color: #111111;
}

.events-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.chip-card {
  background: #f7f7f7;
  border: 1px solid rgba(207, 46, 46, 0.2);
  padding: 48px 32px;
  text-decoration: none;
  color: #111111;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.chip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(207, 46, 46, 0.07) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.chip-card:hover {
  border-color: rgba(207, 46, 46, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.chip-card:hover::before {
  opacity: 1;
}

.chip-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}
.chip-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.chip-card p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}
.chip-arrow {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

/* ─── ABOUT ─── */
.about {
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.about .section-title {
  color: #111111;
}

.about-inner {
  padding: 80px 40px 80px 8%;
  margin-right: 50%;
}
.about-text p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #444444;
  margin-bottom: 20px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #050404;
  border: 1px solid rgba(207, 46, 46, 0.3);
  padding: 16px 24px;
  margin-top: 8px;
  margin-bottom: 32px;
}
.about-badge span {
  font-size: 2rem;
}
.about-badge p {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}

.about-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.about-image-wrap img {
  width: clamp(240px, 40vw, 620px);
  max-width: 100%;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat h4 {
  font-family: var(--font-display);
  font-size: 2.9rem;
  color: var(--red);
  font-weight: 700;
}
.stat p {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
  margin: 0;
  font-weight: 600;
}

/* ─── SERVICES STRIP ─── */
.services-strip {
  background: var(--red);
  padding: 20px 40px;
  overflow: hidden;
}
.strip-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.strip-dot {
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
}

/* ─── CONTACT ─── */
.contact {
  background:
    linear-gradient(rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.92)),
    url("media/Intersection-3.png") center / cover no-repeat;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(207, 46, 46, 0.12);
  border: 1px solid rgba(207, 46, 46, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color var(--transition);
}
.contact-detail-text a:hover {
  color: var(--red);
}
.contact-detail-text small {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.service-areas {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.service-areas p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
.service-areas strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

/* ─── FORM ─── */
.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(207, 46, 46, 0.15);
  padding: 44px 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
}

.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  text-align: center;
  min-height: 20px;
  transition: color var(--transition);
}
.form-status.success {
  color: #6fcf97;
}
.form-status.error {
  color: #eb5757;
}

/* ─── SOCIAL ─── */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(207, 46, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--black);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(207, 46, 46, 0.15);
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-members img {
  height: 80px;
  width: auto;
  object-fit: contain;
  object-position: left;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-members img:hover {
  opacity: 1;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--red);
}

.footer-col address {
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(136, 136, 136, 0.6);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding-top: 72px;
  height: 65vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.page-hero-content .section-label {
  color: var(--red);
  margin-bottom: 10px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}
.page-hero-content h1 em {
  font-style: normal;
  color: var(--red);
}
.page-hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(240, 232, 216, 0.85);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ─── SPLIT ROWS (game cards / event sections) ─── */
.split-section {
  padding: 0;
}
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-row.reverse .split-img { order: 2; }
.split-row.reverse .split-body { order: 1; }

.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.split-row:hover .split-img img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.split-body {
  background: var(--dark2);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-body.alt {
  background: #111111;
}

.split-number {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(207, 46, 46, 0.1);
  line-height: 1;
  margin-bottom: -10px;
}
.split-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
.split-body h2 em {
  font-style: normal;
  color: var(--red);
}
.split-desc {
  font-size: 1.07rem;
  color: rgba(240, 232, 216, 0.7);
  line-height: 1.85;
  margin-bottom: 24px;
}
.split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.split-tag {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(207, 46, 46, 0.35);
  padding: 5px 14px;
}

/* ─── GAMES INTRO ─── */
.games-intro {
  background: #ffffff;
  padding: 80px 40px;
  text-align: center;
}
.games-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}
.games-intro .section-title {
  color: #111111;
}
.games-intro p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.85;
  margin-top: 20px;
}

/* ─── LIGHT SPLIT BODY ─── */
.split-body.light {
  background: #f7f7f7;
}
.split-body.light h2 {
  color: #111111;
}
.split-body.light .split-desc {
  color: #555555;
}
.split-body.light .split-number {
  color: rgba(207, 46, 46, 0.12);
}
.split-body.light .split-tag {
  color: var(--red);
  border-color: rgba(207, 46, 46, 0.35);
}

/* ─── EVENT ANCHOR NAV ─── */
.event-anchor-nav {
  background: var(--dark2);
  border-bottom: 1px solid rgba(207, 46, 46, 0.15);
  padding: 0 40px;
  position: sticky;
  top: 72px;
  z-index: 50;
}
.event-anchor-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.event-anchor-link {
  padding: 20px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.event-anchor-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background:
    linear-gradient(rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.88)),
    url('media/group-of-elegant-young-people-that-playing-poker-i-2021-08-30-12-47-47-utc.jpg') center / cover no-repeat;
  padding: 96px 40px;
  text-align: center;
}
.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner .section-label {
  color: var(--red);
}
.cta-banner .section-title {
  color: var(--cream);
  margin-bottom: 20px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(240, 232, 216, 0.8);
  line-height: 1.85;
  margin-bottom: 40px;
}

/* ─── CREDENTIAL BADGES ─── */
.credential-bar {
  background: var(--black);
  border-top: 1px solid rgba(207, 46, 46, 0.12);
  border-bottom: 1px solid rgba(207, 46, 46, 0.12);
  padding: 40px 40px;
}
.credential-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.credential-item img {
  height: 52px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(1) brightness(1.5);
  transition: opacity var(--transition), filter var(--transition);
}
.credential-item img:hover {
  opacity: 1;
  filter: grayscale(0);
}
.credential-item span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.45);
}

/* ─── EVENT SECTION INTRO ─── */
.event-section-intro {
  padding: 80px 40px 0;
}
.event-section-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── FEATURE GRID (3-col cards) ─── */
.feature-pad {
  padding: 72px 40px;
}
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 36px 28px;
  border: 1px solid rgba(207, 46, 46, 0.15);
  text-align: center;
}
.feature-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.75;
}
.feature-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── HOW IT WORKS (3-col steps) ─── */
.how-it-works-pad {
  padding: 72px 40px;
}
.how-it-works-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  text-align: left;
}
.step-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(207, 46, 46, 0.15);
}
.step-item:last-child {
  border-right: none;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(207, 46, 46, 0.2);
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1;
}
.step-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.98rem;
  color: rgba(240, 232, 216, 0.65);
  line-height: 1.8;
}

/* ─── STATS + TEXT (2-col) ─── */
.stat-split-pad {
  padding: 72px 40px;
}
.stat-split-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.stat-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  padding: 32px 24px;
  background: #111;
  border: 1px solid rgba(207, 46, 46, 0.2);
  text-align: center;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  font-weight: 700;
}
.stat-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.5);
  margin-top: 6px;
}

/* ─── MOBILE MENU CTA ─── */
.mobile-menu a[href="#contact"] {
  color: var(--red);
}

/* ─── MODAL CENTERED LAYOUT ─── */
.modal-inner .section-label {
  text-align: center;
}
.modal-inner .section-title {
  text-align: center;
  margin-bottom: 20px;
}
.modal-inner .red-rule {
  margin: 0 auto 36px;
}

/* ─── SPLIT BODY SECTION LABEL ─── */
.split-body .section-label {
  margin-bottom: 8px;
}

/* ─── FEATURE PAD / CARD LIGHT VARIANTS ─── */
.feature-pad--white {
  background: #ffffff;
}
.feature-card--light {
  background: #f7f7f7;
}
.feature-card--light h3 {
  color: #111;
}
.feature-card--light p {
  color: #555;
}

/* ─── SPLIT ROW DARK ─── */
.split-row--dark {
  background: var(--black);
}

/* ─── HOW IT WORKS DARK VARIANT ─── */
.how-it-works-pad--dark {
  background: var(--dark2);
}
.how-it-works-pad--dark .section-title {
  color: var(--cream);
}
.how-it-works-inner .red-rule {
  margin: 0 auto;
}

/* ─── STAT SPLIT LIGHT VARIANT ─── */
.stat-split-pad--light {
  background: #f0f0f0;
}
.stat-split-pad--light .section-title {
  color: #111;
}
.stat-split-desc {
  font-size: 1.08rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ─── CTA BANNER RED RULE ─── */
.cta-banner .red-rule {
  margin: 0 auto;
}

/* ─── FAQ ACCORDION ─── */
.faq-section {
  background: var(--dark2);
  padding: 96px 40px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid rgba(207, 46, 46, 0.15);
}
.faq-item:first-child {
  border-top: 1px solid rgba(207, 46, 46, 0.15);
}
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  user-select: none;
  transition: color var(--transition);
}
details.faq-item > summary::-webkit-details-marker {
  display: none;
}
details.faq-item[open] > summary {
  color: var(--red);
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid rgba(207, 46, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1rem;
  color: var(--red);
  line-height: 1;
  font-style: normal;
}
details.faq-item[open] .faq-icon {
  background: var(--red);
  color: var(--black);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 48px 28px 0;
  font-size: 1.07rem;
  color: rgba(240, 232, 216, 0.7);
  line-height: 1.85;
}

/* ─── RESOURCES INTRO ─── */
.resources-intro {
  background: #ffffff;
  padding: 80px 40px;
  text-align: center;
}
.resources-intro-inner {
  max-width: 780px;
  margin: 0 auto;
}
.resources-intro .section-title {
  color: #111111;
}
.resources-intro > .resources-intro-inner > p {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.85;
  margin-top: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  section {
    padding: 72px 24px;
  }

  .chips-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-inner {
    padding: 60px 24px;
    margin: 0 auto;
    max-width: 560px;
  }
  .about-image-wrap {
    display: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-hero {
    height: auto;
    min-height: 380px;
  }
  .page-hero-content {
    padding: 0 24px 60px;
  }

  .split-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-img {
    height: 260px;
  }
  .split-row.reverse .split-img { order: 0; }
  .split-row.reverse .split-body { order: 0; }
  .split-body {
    padding: 48px 24px;
  }

  .event-anchor-nav {
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .event-anchor-link {
    padding: 16px 14px;
  }

  .credential-bar-inner {
    gap: 32px;
  }
  .games-intro {
    padding: 64px 24px;
  }
  .cta-banner {
    padding: 72px 24px;
  }
  .feature-pad,
  .how-it-works-pad,
  .stat-split-pad {
    padding: 56px 24px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-item {
    border-right: none;
    border-bottom: 1px solid rgba(207, 46, 46, 0.15);
    padding: 28px 0;
  }
  .step-item:last-child {
    border-bottom: none;
  }
  .stat-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-section {
    padding: 72px 24px;
  }
  details.faq-item > summary {
    font-size: 1.1rem;
  }
  .faq-body {
    padding-right: 0;
  }
  .resources-intro {
    padding: 64px 24px;
  }
}
