/* ═══════════════════════════════════════════
   BULLETS SPORTS BAR — MASTER STYLESHEET
   Location: /assets/css/bullets.css
   ═══════════════════════════════════════════ */

/* ───────────────── ROOT VARIABLES ───────────────── */
:root {
    --gold: #D4AF37;
    --gold-light: #F5E27E;
    --gold-dark: #9A7B1A;
    --bg: #080808;
    --surface: #111111;
    --surface2: #181818;
    --border: #2a2a2a;
    --text: #e8e8e8;
    --text-dim: #888;
}

/* ───────────────── GLOBAL ───────────────── */
* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
	text-decoration: none;
}

h1,h2,h3,h4,h5 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.navbar-dark {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ───────────────── CONTENT WRAPPER ───────────────── */

.b-content {
    position: relative;
    padding: 80px 0;
}

.b-content:first-of-type {
    padding-top: 100px;
}

.b-content:last-of-type {
    padding-bottom: 100px;
}

.gold-text { color: var(--gold); }

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-dim);
    max-width: 560px;
    line-height: 1.7;
}

/* =========================
   MEMBERSHIP PAGE STYLING
========================= */

.membership-image {
  max-height: 380px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.membership-tier-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.membership-tier-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.membership-tier-price span {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.membership-tier-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.membership-tier-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.membership-tier-list li:last-child {
  border-bottom: none;
}

.membership-cta p {
  font-size: 0.95rem;
}

.membership-cta a {
  text-decoration: none;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* ───────────────── TICKER ───────────────── */
.ticker {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    color: #000;
    padding: 6px 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
}

.ticker-track {
    white-space: nowrap;
    display: inline-block;
    animation: ticker-scroll 25s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ───────────────── NAVBAR ───────────────── */
.custom-navbar {
    background: rgba(8,8,8,0.97);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #ccc !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.2s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.brand-logo-img {
    height: 100px;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    padding: 8px 22px;
    transition: 0.2s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

/* ───────────────── B-CARD (Generic Card) ───────────────── */

.b-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: 0.3s ease;
    height: 100%;
}

.b-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.b-card h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.b-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.btn-hero-outline {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ───────────────── PAGE HERO (Non-Carousel) ───────────────── */

.b-page-hero {
    position: relative;
    padding: 120px 20px 100px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.85) 60%,
        rgba(0,0,0,0.75) 100%
    );
    overflow: hidden;
}

/* Ensure hero content sits above overlays and is clickable */
.b-page-hero > * {
  position: relative;
  z-index: 2;
}

/* Safety: never allow hero overlays to capture clicks */
.b-page-hero::before,
.b-page-hero::after {
  pointer-events: none;
}

.closed-dot {
  background: #e74c3c;
}

.b-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(212,175,55,0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.b-page-hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.b-page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 18px;
    line-height: 1;
}

.b-page-hero h1 span {
    color: var(--gold);
}

.b-page-hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ───────────────── GOLD DIVIDER ───────────────── */

.b-divider {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        var(--gold-light),
        var(--gold),
        transparent
    );
    box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

/* ───────────────── HERO CAROUSEL ───────────────── */

.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-inner {
  position: relative;
}

.hero-carousel .carousel-item {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark overlay over image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.2) 100%
  );
  display: flex;
  align-items: center;
  z-index: 2;
}

/* Main hero text area */
.hero-content {
  position: relative;
  z-index: 50;
  max-width: 620px;
  padding: 0 60px;
}

/* Hero text */
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Button wrapper */
.hero-buttons {
  position: relative;
  z-index: 100;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary hero button */
.btn-hero {
  position: relative;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.btn-hero:hover {
  transform: translateY(-2px);
  color: #000 !important;
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

/* Secondary outline hero button */
.btn-hero-outline {
  position: relative;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  color: #fff !important;
  text-decoration: none;
  transition: 0.2s ease;
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

/* General outline button */
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 2px;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.2s ease;
  text-align: center;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* ───────────────── CAROUSEL CONTROLS ───────────────── */

/*
  Important fix:
  Bootstrap carousel arrows create a tall invisible clickable area.
  This reduces them to small actual arrow buttons only.
*/

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: auto;
  height: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 20;
  padding: 0;
}

.hero-carousel .carousel-control-prev {
  left: 18px;
}

.hero-carousel .carousel-control-next {
  right: 18px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 44px;
  height: 44px;
  background-size: 55%;
  background-color: rgba(0,0,0,0.55);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 50%;
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(212,175,55,0.9);
}

/* Indicators */
.hero-carousel .carousel-indicators {
  z-index: 30;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
}

.hero-carousel .carousel-indicators .active {
  background: var(--gold);
}

/* ───────────────── MOBILE HERO FIX ───────────────── */

@media (max-width: 768px) {
  .hero-carousel .carousel-item {
    min-height: 43vh;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn-hero,
  .btn-hero-outline {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }
}

.hero-carousel .carousel-control-prev {
  left: 10px;
}

.hero-carousel .carousel-control-next {
  right: 10px;
}

.carousel-indicators {
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
}

.carousel-indicators .active {
  background: var(--gold);
}
/* ───────────────── STATS ───────────────── */
.stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ───────────────── SCHEDULE GRID ───────────────── */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s ease;
  position: relative;
}

.schedule-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.schedule-time {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.schedule-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* =========================
   EVENT IMAGES
========================= */

.event-img {
  width: 100%;
  max-width: 420px;       /* prevents image being too wide */
  height: auto;          /* consistent visual height */
  object-fit: cover;      /* crops nicely */
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.b-card:hover .event-img {
  transform: scale(1.02);
}

/* =========================
   SPORTS SCHEDULE PREMIUM
========================= */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.schedule-card {
  position: relative;
  background: linear-gradient(145deg, #111, #1a1a1a);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.schedule-time {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.schedule-card h4 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.schedule-meta {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Tonight Highlight */
.schedule-card.tonight {
  border: 1px solid var(--gold);
  box-shadow: 0 0 25px rgba(212,175,55,0.25);
}

.tonight-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Channel Badges */
.channel-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.channel-sky {
  background: #0055ff;
  color: #fff;
}

.channel-tnt {
  background: #e30613;
  color: #fff;
}

.channel-default {
  background: #333;
  color: #fff;
}

/* =========================
   LIVE SPORTS GRID
========================= */

.live-sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.live-sport-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.live-sport-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.live-overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}

.live-sport-card:hover img {
  transform: scale(1.05);
}

.live-sport-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212,175,55,0.3);
}


/* Membership */

.membership-price-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.membership-price-large span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ───────────────── MEMBERSHIP TIERS ───────────────── */

.membership-tier-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.membership-tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.membership-tier-price span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.membership-tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-tier-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* ───────────────── CHANNEL BADGES ───────────────── */

.channel-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.channel-sky {
  background: rgba(0,123,255,0.15);
  border: 1px solid rgba(0,123,255,0.4);
  color: #4da3ff;
}

.channel-tnt {
  background: rgba(155,89,182,0.15);
  border: 1px solid rgba(155,89,182,0.4);
  color: #d28cff;
}

.channel-default {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
}

/* ───────────────── ICON COLOUR ───────────────── */

.schedule-card h4 i {
  color: var(--gold);
}

/* ───────────────── RADIO SECTION ───────────────── */
.radio-section {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.radio-player {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 12px;
    padding: 20px 28px;
    flex-wrap: wrap;
}

.radio-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: 0.2s;
}

.radio-play-btn:hover {
    transform: scale(1.08);
}

.radio-track-info h3 {
    font-size: 1.4rem;
}

.on-air {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.3);
    color: #e74c3c;
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.on-air-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e74c3c;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.radio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 6px;
}

/* ───────────────── LIVE BANNER ───────────────── */
.live-banner {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

.live-badge {
    display: inline-block;
    background: #c0392b;
    padding: 4px 10px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* ───────────────── SPORT CARD (ICON SERVICE CARDS) ───────────────── */

.sport-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

/* Gold top accent */
.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0;
    transition: 0.3s ease;
}

.sport-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.sport-card:hover::before {
    opacity: 1;
}

/* Inner spacing wrapper */
.sport-card-inner {
    padding: 40px 32px;
}

/* Icon wrapper */
.sport-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: 0.3s ease;
}

.sport-card:hover .sport-icon-wrap {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

.sport-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.sport-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.card-link:hover {
    color: var(--gold-light);
    gap: 14px;
}

/* ===============================
   POOL HERO
================================ */

.hero--pool {
  position: relative;
  min-height: 30vh;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('../images/pool-hero.jpg') center/cover no-repeat;
}

.hero--pool::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.15)
  );
}

.hero--pool .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero--pool h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero--pool .hero-sub {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-dim);
}

/* ===============================
   SECTION HEADER
================================ */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* Layout */
.pool-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Cards */
.pool-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.pool-card-grid h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.pool-card-grid p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* League Tags */
.pool-league-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pool-league-tags span {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* CTA */
.pool-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pricing */
.b-pricing-row.highlight {
  background: rgba(212,175,55,0.05);
}

.member-label {
  color: var(--gold);
}

.discount {
  color: #27ae60;
}

/* Member Card */
.pool-member-card {
  margin-top: 16px;
  text-align: center;
}

.pool-member-card .emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}

.pool-member-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.pool-member-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
  .pool-layout {
    grid-template-columns: 1fr;
  }

  .pool-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   FEATURES GRID
================================ */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px 25px;
  border-radius: 16px;
  transition: all .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.section--alt {
  background: var(--surface2);
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 30px rgba(0,0,0,.4);
}

/* =========================
   LIVE INFO BOX
========================= */

.live-info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 10px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.live-info-box h4 {
  margin: 0 0 8px 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.live-info-box p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.live-info-box:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.hero--darts {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('../images/darts-hero.jpg') center/cover no-repeat;
}

.hero--snooker {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('../images/snooker-hero.jpg') center/cover no-repeat;
}

/* ───────────────── AVAILABILITY INDICATOR ───────────────── */

.availability-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.4);
  color: #27ae60;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #27ae60;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* ───────────────── FOOTER ───────────────── */
.site-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.site-footer h5 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.site-footer a {
    display: block;
    color: var(--text-dim);
    margin-bottom: 6px;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-right: 8px;
    color: var(--text-dim);
    transition: 0.2s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ───────────────── FOOTER LOGO ───────────────── */

.footer-logo {
  max-height: 70px;
  width: auto;
  display: block;
  transition: 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ───────────────── RESPONSIVE ───────────────── */
@media (max-width: 768px) {
    .hero-content { padding: 0 24px; }
    .hero-content h1 { font-size: 2.4rem; }
	.hero-carousel .carousel-item {
      min-height: 43vh;
	}
	.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{
    display: none;
}
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .stat-item:last-child { border-bottom: none; }
	
	 .hero--pool {
    min-height: 60vh;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}