/* Extracted Block */

/* ─── GLOBALS ─── */
html {
  scroll-behavior: smooth;
}

/* ── Welcome Popup — bottom-left, with video, delayed ──────── */
#welcomePopup {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999998;
  width: min(360px, calc(100vw - 40px));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 212, 255, .18);
  background: #0a1220;
  opacity: 0;
  transform: translateX(-28px) scale(.97);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

#welcomePopup.popup-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* Top accent bar */
#welcomePopup::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #2ecc71, #f5c518);
}

/* Video thumbnail wrapper */
.popup-vid-wrap {

  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.popup-vid-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Play button overlay — shown before video loads */
.popup-vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .1) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.popup-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #e63946;
  padding-left: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
}

.popup-vid-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(230, 57, 70, .85);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Close X */
.popup-x {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background .2s;
  line-height: 1;
}

.popup-x:hover {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

/* Info body */
.popup-inner {
  padding: 16px 18px 18px;
}

.popup-inner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 5px;
}

.popup-inner h3 span {
  color: #00d4ff;
}

.popup-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  margin-bottom: 14px;
}

.popup-actions {
  display: flex;
  gap: 8px;
}

.popup-book {
  flex: 1;
  background: linear-gradient(135deg, #00d4ff, #0099bb);
  color: #020e1e;
  font-weight: 700;
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.popup-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 212, 255, .4);
}

.popup-close-btn {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: background .2s;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

/* Live dot */
.popup-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2ecc71;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.popup-live-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  flex-shrink: 0;
  animation: dotPulse 1.6s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.7);
  }
}

@media (max-width: 420px) {
  #welcomePopup {
    bottom: 14px;
    left: 14px;
    width: calc(100vw - 28px);
  }
}



@media(max-width:540px) {
  .rtb-wrap {
    display: none;
  }
}

/* ─── NAVBAR DROPDOWN — Gallery ─────────────────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown-trigger:hover {
  color: #fff;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: rgba(8, 12, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #00d4ff !important;
  padding-left: 30px;
}

/* Small triangle for dropdown */
.dropdown-content::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ─── CONTACT V2 ───────────────────────────────────────── */
.contact-v2 {
  padding: 100px 0;
  background: linear-gradient(to bottom, #080c20, #0a1220);
  position: relative;
}

.contact-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-info-card {
  padding: 50px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon-v2 {
  width: 54px;
  height: 54px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00d4ff;
}

.info-text h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.info-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.info-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.info-text a:hover {
  color: #00d4ff;
}

.contact-form-card {
  padding: 50px;
}

.modern-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #00d4ff;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.submit-btn-v2 {
  width: 100%;
  background: linear-gradient(135deg, #00d4ff, #0099bb);
  color: #020e1e;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.success-icon {
  font-size: 60px;
  color: #2ecc71;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .contact-split-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 600px) {
  .modern-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 20px;
  }
}

/* Respect user reduced-motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Featured card */
.hl-feat {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  transition: border-color .3s, box-shadow .3s;
}

.hl-feat:hover {
  border-color: rgba(230, 57, 70, .4);
  box-shadow: 0 20px 60px rgba(230, 57, 70, .15);
}

.hl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: border-color .25s, transform .25s;
}

.hl-row:hover {
  border-color: rgba(0, 212, 255, .35);
  transform: translateX(5px);
}

.hl-mini {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.hl-mini:hover {
  border-color: rgba(245, 197, 24, .35);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .35);
}

/* Highlights modal */
.hl-modal {
  position: fixed;
  inset: 0;
  z-index: 999997;
  background: rgba(0, 0, 0, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hl-modal.open {
  display: flex;
}

.hl-modal-box {
  width: min(920px, 96vw);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
}

.hl-modal-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.hl-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  font-size: 28px;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}

.hl-modal-close:hover {
  color: #fff;
}


/* Mobile sub-links moved to style.css */

/* ══════════════════════════════════════════════════
       ABOUT TEASER STRIP
    ══════════════════════════════════════════════════ */
.about-teaser-strip {
  background: linear-gradient(135deg, #0d2b1e 0%, #0a1a3a 60%, #0d2b1e 100%);
  border-top: 1px solid rgba(0, 212, 255, .12);
  border-bottom: 1px solid rgba(0, 212, 255, .12);
  padding: 56px 0;
}

.ats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ats-left {
  flex: 1;
  min-width: 260px;
}

.ats-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ats-left h2 span {
  color: #00d4ff;
}

.ats-left p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

.ats-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
       SPONSORS SECTION
    ══════════════════════════════════════════════════ */
.sponsors-section {
  background: var(--dark);
  padding: 70px 0 60px;
  overflow: hidden;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
}

.sponsors-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.sponsors-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: sponsorScroll 28s linear infinite;
}

.sponsors-track:hover {
  animation-play-state: paused;
}

@keyframes sponsorScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sponsor-logo-item {
  flex-shrink: 0;
  width: 200px;
}

.spl-inner {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 22px 28px;
  text-align: center;
  transition: border-color .3s, background .3s, transform .3s;
  cursor: default;
}

.spl-inner:hover {
  border-color: rgba(0, 212, 255, .3);
  background: rgba(0, 212, 255, .06);
  transform: translateY(-4px);
}

.spl-inner span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .5px;
}

@media (max-width: 820px) {
  .social-cards-grid {
    grid-template-columns: 1fr;
  }
}

.insta-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
}

.yt-icon {
  background: #ff0000;
}

/* ── VENUES & GALLERY SPLIT SECTION ── */
.venues-gallery-split {
  background: var(--dark);
  padding: 40px 0 80px;
}

.vg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media(max-width: 820px) {
  .vg-grid {
    grid-template-columns: 1fr;
  }
}

.vg-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  min-height: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #080c20;
}

.vg-card.vg-venue:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 212, 255, .25);
  border-color: rgba(0, 212, 255, .4);
}

.vg-card.vg-gallery:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(168, 85, 247, .25);
  border-color: rgba(168, 85, 247, .4);
}

.vg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1);
}


.vg-card:hover .vg-bg {
  transform: scale(1.06);
}

.vg-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(8, 12, 32, .95) 0%, rgba(8, 12, 32, .4) 50%, transparent 100%);
  transition: background .4s;
}

.vg-card:hover .vg-overlay {
  background: linear-gradient(to top, rgba(8, 12, 32, 1) 0%, rgba(8, 12, 32, .5) 50%, rgba(8, 12, 32, .1) 100%);
}

.vg-pill {
  position: absolute;
  top: 26px;
  left: 30px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
}

.vg-venue .vg-pill {
  color: #00d4ff;
  border-color: rgba(0, 212, 255, .3);
  background: rgba(0, 212, 255, .1);
}

.vg-gallery .vg-pill {
  color: #a855f7;
  border-color: rgba(168, 85, 247, .3);
  background: rgba(168, 85, 247, .1);
}

.vg-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.vg-venue .vg-title span {
  color: #00d4ff;
}

.vg-gallery .vg-title span {
  color: #a855f7;
}

.vg-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
}

.vg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: color .3s;
}

.vg-venue .vg-btn {
  color: #00d4ff;
}

.vg-gallery .vg-btn {
  color: #a855f7;
}

.vg-card:hover .vg-btn {
  color: #fff;
}

.vg-btn i {
  font-size: 14px;
  transition: transform .3s;
}

.vg-card:hover .vg-btn i {
  transform: translateX(6px);
}

/* Extracted Block */

/* ── Social Widgets Section ───────────────────────────────── */
.social-widgets-section {
  background: var(--dark);
  padding: 80px 0 90px;
}

.social-widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media(max-width: 1100px) {
  .social-widgets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 900px) {
  .social-widgets-grid {
    grid-template-columns: 1fr;
  }
}

/* Platform header above each widget */
.sw-platform-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sw-platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.sw-insta-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
  box-shadow: 0 6px 20px rgba(221, 42, 123, .4);
}

.sw-fb-icon {
  background: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, .4);
}

.sw-yt-icon {
  background: #ff0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, .4);
}

.sw-platform-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
}

/* The actual widget wrapper */
.sw-widget-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  border: 3px solid rgba(255, 255, 255, .12);
  min-height: 600px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.sw-widget-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .6);
}

/* Instagram embed */
.sw-insta-wrap {
  border-color: rgba(221, 42, 123, .25);
}

/* Facebook embed */
.sw-fb-wrap {
  border-color: rgba(24, 119, 242, .25);
}

.sw-insta-inner {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insta-stat-num {
  font-size: 15px;
  font-weight: 800;
  color: #000;
}

/* ── YouTube Live Feed ─────────────────────────────────────── */
.sw-yt-wrap {
  border-color: rgba(255, 0, 0, .25);
}

.sw-yt-inner {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  font-family: 'Outfit', sans-serif;
}

.yt-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.yt-widget-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-widget-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.yt-widget-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}

.yt-widget-info p {
  font-size: 11px;
  color: #aaa;
}

.yt-subscribe-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.yt-subscribe-btn:hover {
  background: #cc0000;
}

/* Video list feed */
.yt-video-feed {
  flex: 1;
  overflow: hidden;
}

.yt-feed-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #aaa;
  font-size: 14px;
  gap: 10px;
}

.yt-feed-loading .spin {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 0, 0, .3);
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: ytSpin .8s linear infinite;
}

@keyframes ytSpin {
  to {
    transform: rotate(360deg);
  }
}

.yt-video-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  align-items: flex-start;
}

.yt-video-item:hover {
  background: rgba(255, 255, 255, .05);
}

.yt-video-item:first-child {
  padding-top: 14px;
}

.yt-thumb-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}

.yt-video-item:hover .yt-play-overlay {
  opacity: 1;
}

.yt-play-overlay i {
  color: #fff;
  font-size: 24px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
}

.yt-video-meta {
  flex: 1;
  min-width: 0;
}

.yt-video-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-video-date {
  font-size: 11px;
  color: #888;
}

/* YT channel footer */
.yt-channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  color: #ff4444;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s;
}

.yt-channel-link:hover {
  background: rgba(255, 0, 0, .06);
}

/* Error state */
.yt-feed-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  color: #888;
  font-size: 13px;
  text-align: center;
  gap: 10px;
}

.yt-feed-error i {
  font-size: 28px;
  color: #ff4444;
}

/* Extracted Block */

/* YouTube embed iframe */
.yt-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  flex-shrink: 0;
}

.yt-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Extracted Block */

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
}

  .yt-subscribe-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s;
  }

  .yt-subscribe-btn:hover {
    background: #cc0000;
  }

  /* Video list feed */
  .yt-video-feed {
    flex: 1;
    overflow: hidden;
  }

  .yt-feed-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #aaa;
    font-size: 14px;
    gap: 10px;
  }

  .yt-feed-loading .spin {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 0, 0, .3);
    border-top-color: #ff0000;
    border-radius: 50%;
    animation: ytSpin .8s linear infinite;
  }

  @keyframes ytSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .yt-video-item {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    align-items: flex-start;
  }

  .yt-video-item:hover {
    background: rgba(255, 255, 255, .05);
  }

  .yt-video-item:first-child {
    padding-top: 14px;
  }

  .yt-thumb-wrap {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
  }

  .yt-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .yt-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
  }

  .yt-video-item:hover .yt-play-overlay {
    opacity: 1;
  }

  .yt-play-overlay i {
    color: #fff;
    font-size: 24px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
  }

  .yt-video-meta {
    flex: 1;
    min-width: 0;
  }

  .yt-video-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .yt-video-date {
    font-size: 11px;
    color: #888;
  }

  /* YT channel footer */
  .yt-channel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    color: #ff4444;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    transition: background .2s;
  }

  .yt-channel-link:hover {
    background: rgba(255, 0, 0, .06);
  }

  /* Error state */
  .yt-feed-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: #888;
    font-size: 13px;
    text-align: center;
    gap: 10px;
  }

  .yt-feed-error i {
    font-size: 28px;
    color: #ff4444;
  }

  /* Extracted Block */

  /* YouTube embed iframe */
  .yt-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    flex-shrink: 0;
  }

  .yt-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }

  /* Extracted Block */

  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
  }

  /* ── COMPACT FACILITIES PREVIEW BOX ── */
  .fac-preview-box {
    height: 540px;
    /* Fixed height to show exactly 1 row of cards */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 12px;
    margin-top: 56px;
    scroll-behavior: smooth;
    /* Firefox Support */
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.05);
  }

  .fac-preview-box::-webkit-scrollbar {
    width: 6px;
  }

  .fac-preview-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .fac-preview-box::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  }

  /* Ensure cards are visible inside the scrollable container */
  .fac-preview-box .fac-card.reveal, .fac-preview-box .infra-card.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.4s ease-out !important;
  }

  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* ── FACILITY CARDS (Ported from Facilities Page) ── */
  .fac-card {
    position: relative;
    background: rgba(13, 18, 48, 0.75);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    contain: layout style paint;
    text-align: left;
  }

  .fac-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.15);
  }

  .fac-img-frame {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: rgba(8, 12, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .fac-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
  }

  .fac-card:hover .fac-card-img {
    transform: scale(1.06);
  }

  .fac-img-placeholder {
    display: flex;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(168, 85, 247, 0.04) 100%), rgba(8, 12, 32, 0.7);
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    gap: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 16px;
  }

  .fac-img-placeholder i {
    font-size: 24px;
    color: rgba(0, 212, 255, 0.5);
  }

  .fac-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  }

  .fac-card:hover .fac-icon-box {
    transform: scale(1.1) rotate(6deg);
    background: var(--cyan);
    color: var(--dark);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  }

  .fac-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    color: #fff;
    transition: color 0.3s ease;
    line-height: 1.1;
  }

  .fac-card:hover h3 {
    color: var(--cyan);
  }

  .fac-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 991px) {
    .fac-preview-box {
      height: 540px;
      overflow-y: auto;
    }

    .facilities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .fac-preview-box {
      height: 500px;
      overflow-y: auto;
      padding-right: 8px;
    }

    .facilities-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .fac-card {
      padding: 20px;
    }

    .fac-img-frame {
      height: 160px;
      margin-bottom: 16px;
    }
  }

  /* ════════════════════════════════════════════════════════════
     CRICKET INFRASTRUCTURE GRID
  ════════════════════════════════════════════════════════════ */
  .cricket-infra-section {
    background: var(--dark);
    padding: 80px 0 100px;
  }

  /* Infrastructure Grid Layout */
  .infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 20px;
  }

  /* Infrastructure Card - Matches Facilities Card Styling */
  .infra-card {
    position: relative;
    background: rgba(13, 18, 48, 0.75);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    contain: layout style paint;
  }

  .infra-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.15);
    will-change: transform;
  }

  /* Image Frame */
  .infra-img-frame {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: rgba(8, 12, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .infra-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
    content-visibility: auto;
  }

  .infra-card:hover .infra-card-img {
    transform: scale(1.06);
  }

  .infra-img-placeholder {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(168, 85, 247, 0.04) 100%), rgba(8, 12, 32, 0.7);
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    gap: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 16px;
  }

  .infra-img-placeholder i {
    font-size: 28px;
    color: rgba(0, 212, 255, 0.5);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
  }

  /* Icon Box */
  .infra-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  }

  .infra-card:hover .infra-icon {
    transform: scale(1.1) rotate(6deg);
    background: var(--cyan);
    color: var(--dark);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  }

  /* Title */
  .infra-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    color: #fff;
    transition: color 0.3s ease;
    line-height: 1.1;
  }

  .infra-card:hover h3 {
    color: var(--cyan);
  }

  /* Description */
  .infra-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  /* Responsive Grid */
  @media (max-width: 1200px) {
    .infrastructure-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 991px) {
    .infrastructure-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .cricket-infra-section {
      padding: 70px 0 90px;
    }
  }

  @media (max-width: 600px) {
    .infrastructure-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .cricket-infra-section {
      padding: 60px 0 80px;
    }

    .infra-card {
      padding: 20px;
    }

    .infra-img-frame {
      height: 160px;
      margin-bottom: 16px;
    }

    .infra-card h3 {
      font-size: 18px;
    }

    .infra-card p {
      font-size: 12px;
    }
  }