/* ==========================================================================
   Poker Page – Gather Avenue
   Redesigned mobile-first CSS for current poker HTML
   ========================================================================== */

/* ==========================================================================
   HERO – cinematic poker table intro
   ========================================================================== */

.hero--poker {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: var(--space-12);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(47, 47, 228, 0.34),
      transparent 36%
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(206, 38, 38, 0.24),
      transparent 38%
    ),
    linear-gradient(135deg, #050813 0%, #02030a 74%);
}

.hero--poker .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero--poker .hero__overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(2, 3, 10, 0.98) 0%,
      rgba(2, 3, 10, 0.82) 48%,
      rgba(2, 3, 10, 0.45) 100%
    ),
    linear-gradient(0deg, rgba(2, 3, 10, 0.96), transparent 48%);
}

.hero--poker::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

.hero--poker::after {
  content: 'POKER';
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(6rem, 25vw, 19rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.poker-hero__image-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.38;
  mix-blend-mode: normal;
}

.poker-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.hero--poker .hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.poker-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-7);
  align-items: center;
}

.poker-hero__copy {
  max-width: 54rem;
}

.poker-hero__copy h1 {
  margin-bottom: var(--space-4);
  font-size: clamp(2.35rem, 10vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.poker-hero__subtitle {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--color-gray-100);
  font-size: var(--font-size-lg);
}

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.poker-hero__meta {
  margin-top: var(--space-5);
}

.poker-hero__highlight {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 47, 228, 0.24),
      transparent 44%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(206, 38, 38, 0.16),
      transparent 44%
    ),
    rgba(5, 8, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-strong);
}

.poker-hero__highlight::before {
  content: '';
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  border: 1.2rem solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.poker-hero__highlight .card__content {
  position: relative;
  z-index: 1;
}

.poker-hero__list,
.poker-card__list,
.poker-feature-list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-hero__list li,
.poker-card__list li,
.poker-feature-list li {
  position: relative;
  padding-left: 1.4rem;
}

.poker-hero__list li::before,
.poker-card__list li::before,
.poker-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f2fe4, #ce2626);
  box-shadow: 0 0 14px rgba(47, 47, 228, 0.44);
}

@media (max-width: 560px) {
  .poker-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poker-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 980px) {
  .hero--poker {
    padding-top: 11rem;
    padding-bottom: var(--space-16);
  }

  .poker-hero__layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
    gap: var(--space-10);
  }
}

/* ==========================================================================
   SHARED CENTER HELPERS
   ========================================================================== */

.u-container--center {
  margin-left: auto;
  margin-right: auto;
}

.u-container--center.section__title,
.u-container--center.section__subtitle {
  max-width: 44rem;
}

/* ==========================================================================
   POKER FORMAT / PACKAGE CARDS
   ========================================================================== */

.poker-grid,
.poker-packages-grid,
.poker-testimonials-grid {
  align-items: stretch;
  gap: var(--space-5);
}

.poker-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(5, 8, 19, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.085);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.poker-card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f2fe4, #ce2626);
}

.poker-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 47, 228, 0.34);
  box-shadow: 0 24px 60px rgba(47, 47, 228, 0.14);
}

.poker-card .card__content {
  height: 100%;
}

.poker-card h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xl);
}

.poker-card p {
  color: var(--color-text-muted);
}

.poker-card--highlight {
  border-color: rgba(47, 47, 228, 0.55);
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 47, 228, 0.24), transparent 42%),
    radial-gradient(
      circle at 92% 100%,
      rgba(206, 38, 38, 0.16),
      transparent 42%
    ),
    rgba(5, 8, 19, 0.92);
  box-shadow:
    0 22px 58px rgba(47, 47, 228, 0.16),
    var(--shadow-glow-primary);
}

/* ==========================================================================
   FEATURE SECTIONS
   ========================================================================== */

.poker-feature-grid,
.poker-custom-grid,
.poker-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.poker-feature-grid--reverse {
  direction: ltr;
  margin-top: var(--space-12);
}

.poker-feature-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(5, 8, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-strong);
}

.poker-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(2, 3, 10, 0.58)),
    radial-gradient(circle at 20% 20%, rgba(47, 47, 228, 0.14), transparent 36%);
  pointer-events: none;
}

.poker-feature-media__image {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.poker-custom-card,
.poker-benefits-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 47, 228, 0.2),
      transparent 44%
    ),
    rgba(5, 8, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.poker-custom-card::before,
.poker-benefits-card::before {
  content: '';
  position: absolute;
  right: -2.75rem;
  top: -2.75rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  border: 1.1rem solid rgba(255, 255, 255, 0.035);
}

.poker-custom-card .card__content,
.poker-benefits-card .card__content {
  position: relative;
  z-index: 1;
}

.poker-custom-card__cta {
  margin-top: var(--space-5);
}

.poker-corporate__actions,
.poker-booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

@media (max-width: 560px) {
  .poker-corporate__actions,
  .poker-booking__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poker-corporate__actions .btn,
  .poker-booking__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .poker-feature-grid,
  .poker-custom-grid,
  .poker-booking-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: var(--space-10);
  }

  .poker-feature-grid--reverse {
    direction: rtl;
  }

  .poker-feature-grid--reverse > div {
    direction: ltr;
  }

  .poker-feature-media__image {
    height: 460px;
  }
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.poker-timeline {
  position: relative;
  display: grid;
  gap: var(--space-5);
  max-width: 64rem;
  margin: var(--space-8) auto 0;
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 47, 228, 0.18),
      transparent 44%
    ),
    rgba(5, 8, 19, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
}

.poker-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: flex-start;
  margin: 0;
}

.poker-timeline__item::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 3.35rem;
  bottom: calc(-1 * var(--space-5));
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(47, 47, 228, 0.55),
    rgba(206, 38, 38, 0.2)
  );
}

.poker-timeline__item:last-child::before {
  display: none;
}

.poker-timeline__step {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f2fe4, #ce2626);
  box-shadow:
    0 0 0 7px rgba(47, 47, 228, 0.1),
    0 14px 30px rgba(47, 47, 228, 0.22);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 850;
  font-size: var(--font-size-md);
}

.poker-timeline__body {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.026);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.poker-timeline__body h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-lg);
}

.poker-timeline__body p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

@media (max-width: 560px) {
  .poker-timeline {
    padding: var(--space-4);
  }

  .poker-timeline__item {
    grid-template-columns: minmax(0, 1fr);
  }

  .poker-timeline__item::before {
    display: none;
  }
}

/* ==========================================================================
   PACKAGES MEDIA
   ========================================================================== */

.poker-packages-media {
  margin-top: var(--space-8);
}

.poker-packages-media__image {
  width: min(100%, 560px);
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-strong);
}

/* ==========================================================================
   BOOKING
   ========================================================================== */

.poker-booking-steps {
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
  display: grid;
  gap: var(--space-3);
  counter-reset: poker-booking;
}

.poker-booking-steps li {
  position: relative;
  margin: 0;
  padding: var(--space-4) var(--space-4) var(--space-4) 3.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-booking-steps li::before {
  counter-increment: poker-booking;
  content: counter(poker-booking);
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f2fe4, #ce2626);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.poker-booking-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-gray-50);
}

.poker-booking-steps p {
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS + FINAL CTA
   ========================================================================== */

.poker-testimonials-grid .testimonial {
  position: relative;
  height: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(5, 8, 19, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.poker-testimonials-grid .testimonial::before {
  content: '“';
  display: block;
  margin-bottom: var(--space-2);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  line-height: 0.7;
  color: #2f2fe4;
  opacity: 0.48;
}

.testimonial__quote {
  margin: 0;
  color: var(--color-gray-100);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
}

.testimonial__meta {
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

section[aria-labelledby='poker-testimonials-heading'] .cta-strip,
section[aria-labelledby='poker-formats-heading'] .cta-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(47, 47, 228, 0.24),
      transparent 42%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(206, 38, 38, 0.16),
      transparent 42%
    ),
    rgba(7, 11, 26, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

section[aria-labelledby='poker-testimonials-heading'] .cta-strip__title,
section[aria-labelledby='poker-formats-heading'] .cta-strip__title {
  margin-bottom: var(--space-2);
  font-size: clamp(1.45rem, 5vw, 2.35rem);
}

section[aria-labelledby='poker-testimonials-heading'] .cta-strip__text,
section[aria-labelledby='poker-formats-heading'] .cta-strip__text {
  color: var(--color-text-muted);
}

section[aria-labelledby='poker-testimonials-heading'] .cta-strip .u-flex,
section[aria-labelledby='poker-formats-heading'] .cta-strip .u-flex {
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  section[aria-labelledby='poker-testimonials-heading'] .cta-strip .u-flex,
  section[aria-labelledby='poker-formats-heading'] .cta-strip .u-flex {
    flex-direction: column;
    align-items: stretch;
  }

  section[aria-labelledby='poker-testimonials-heading'] .cta-strip .btn,
  section[aria-labelledby='poker-formats-heading'] .cta-strip .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  section[aria-labelledby='poker-testimonials-heading'] .cta-strip,
  section[aria-labelledby='poker-formats-heading'] .cta-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) auto;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-8);
  }

  section[aria-labelledby='poker-testimonials-heading'] .cta-strip__text,
  section[aria-labelledby='poker-formats-heading'] .cta-strip__text {
    margin-bottom: 0;
    max-width: 42rem;
  }
}

/* ==========================================================================
   MOBILE SAFETY
   ========================================================================== */

@media (max-width: 560px) {
  .poker-hero__subtitle {
    font-size: var(--font-size-md);
  }

  .poker-feature-media__image {
    height: 240px;
  }

  .poker-card .card__content {
    padding: var(--space-5);
  }
}
