
/* Extracted Block */

    :root {
      --navy: #0d1230;
      --cyan: #00d4ff;
      --gold: #f5c518;
      --green: #2ecc71;
      --red: #e63946;
      --purple: #a855f7;
      --dark: #080c20;
      --card: rgba(255, 255, 255, .04);
      --border: rgba(255, 255, 255, .09);
      --muted: #7a84ab;
      --ease: cubic-bezier(.4, 0, .2, 1);
    }

    /* BG */
    .grd-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 70% 55% at 15% 20%, rgba(0, 212, 255, .07) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(46, 204, 113, .05) 0%, transparent 60%),
        linear-gradient(160deg, #060a1a 0%, #0d1230 55%, #060e18 100%);
    }

    .grd-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(0, 212, 255, .033) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, .033) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 100%);
    }

    /* ═══ FLOATING LOGO ═══ */



    /* ═══ HERO ═══ */
    .grd-hero {
      position: relative;
      z-index: 1;
      padding: 160px 32px 90px;
      text-align: center;
      overflow: hidden;
    }

    .grd-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, .1) 0%, transparent 70%);
    }

    .grd-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 212, 255, .1);
      border: 1px solid rgba(0, 212, 255, .25);
      color: #00d4ff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 40px;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .grd-hero-tag::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #00d4ff;
      animation: heroDot 1.6s ease-in-out infinite;
    }

    @keyframes heroDot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .3;
        transform: scale(.6)
      }
    }

    .grd-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 10vw, 110px);
      letter-spacing: 2px;
      line-height: .95;
      color: #fff;
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
    }

    .grd-hero h1 span {
      color: #00d4ff;
    }

    .grd-hero p {
      font-size: clamp(15px, 2vw, 18px);
      color: var(--muted);
      max-width: 580px;
      margin: 0 auto 36px;
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    .grd-hero-tabs {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .grd-tab-btn {
      padding: 12px 28px;
      border-radius: 40px;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      transition: all .25s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .grd-tab-btn.primary {
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: #080c20;
      box-shadow: 0 8px 28px rgba(0, 212, 255, .4);
    }

    .grd-tab-btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(0, 212, 255, .55);
    }

    .grd-tab-btn.ghost {
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .grd-tab-btn.ghost:hover {
      background: rgba(255, 255, 255, .12);
      color: #fff;
    }

    /* ═══ LAYOUT ═══ */
    .grd-wrap {
      position: relative;
      z-index: 1;
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 32px 120px;
    }

    @media(max-width:768px) {
      .grd-wrap {
        padding: 0 20px 80px;
      }
    }

    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .sec-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      border-radius: 4px;
    }

    .lc {
      color: var(--cyan);
    }

    .lc::before {
      background: var(--cyan);
    }

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

    .lg::before {
      background: var(--gold);
    }

    .lgr {
      color: var(--green);
    }

    .lgr::before {
      background: var(--green);
    }

    .lr {
      color: var(--red);
    }

    .lr::before {
      background: var(--red);
    }

    .lp {
      color: var(--purple);
    }

    .lp::before {
      background: var(--purple);
    }

    .sec-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 14px;
    }

    .sec-sub {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: 54px;
    }

    .sec-div {
      border-top: 1px solid rgba(0, 212, 255, .1);
      position: relative;
      margin: 0 0 80px;
    }

    .sec-div::before {
      content: '';
      position: absolute;
      top: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--cyan), var(--gold));
    }

    /* ═══ GROUND CARDS ═══ */
    .ground-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 28px;
      overflow: hidden;
      margin-bottom: 60px;
      transition: box-shadow .35s;
    }

    .ground-card:hover {
      box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    }

    .gc-image-wrap {
      position: relative;
      width: 100%;
      height: 380px;
      overflow: hidden;
    }

    .gc-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s var(--ease);
    }

    .ground-card:hover .gc-image-wrap img {
      transform: scale(1.04);
    }

    .gc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 12, 32, .9) 0%, rgba(8, 12, 32, .3) 50%, transparent 100%);
    }

    .gc-tag {
      position: absolute;
      top: 22px;
      left: 26px;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, .18);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 30px;
    }

    .gc-badge {
      position: absolute;
      top: 22px;
      right: 26px;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .gc-badge.green {
      background: rgba(46, 204, 113, .2);
      border: 1px solid rgba(46, 204, 113, .4);
      color: #2ecc71;
    }

    .gc-badge.gold {
      background: rgba(245, 197, 24, .2);
      border: 1px solid rgba(245, 197, 24, .4);
      color: #f5c518;
    }

    .gc-image-title {
      position: absolute;
      bottom: 28px;
      left: 28px;
    }

    .gc-image-title h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 58px);
      letter-spacing: 2px;
      color: #fff;
      line-height: 1;
    }

    .gc-image-title h2 span {
      color: #00d4ff;
    }

    .gc-image-title p {
      color: rgba(255, 255, 255, .65);
      font-size: 14px;
      margin-top: 6px;
    }

    /* Ground body content */
    .gc-body {
      padding: 40px 44px 44px;
    }

    @media(max-width:768px) {
      .gc-body {
        padding: 28px 22px 32px;
      }

      .gc-image-wrap {
        height: 260px;
      }
    }

    .gc-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.8;
      margin-bottom: 32px;
      max-width: 800px;
    }

    /* Info chips */
    .gc-info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }

    .gc-info-chip {
      display: flex;
      align-items: center;
      gap: 9px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 12px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .75);
    }

    .gc-info-chip i {
      font-size: 14px;
    }

    /* Specs grid */
    .gc-specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 16px;
      margin-bottom: 36px;
    }

    .gc-spec-item {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 16px;
      padding: 20px 22px;
      transition: border-color .25s, background .25s;
    }

    .gc-spec-item:hover {
      border-color: rgba(0, 212, 255, .25);
      background: rgba(0, 212, 255, .04);
    }

    .gc-spec-key {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .gc-spec-val {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
    }

    .gc-spec-unit {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      margin-top: 3px;
    }

    /* Facilities list */
    .gc-facilities {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
      margin-bottom: 36px;
    }

    .gc-fac-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 14px;
      padding: 16px 18px;
    }

    .gc-fac-icon {
      width: 40px;
      height: 40px;
      border-radius: 11px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
    }

    .gc-fac-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px;
    }

    .gc-fac-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* Formats */
    .gc-formats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }

    .gc-format-tag {
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* Booking CTA */
    .gc-cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .gc-cta-book {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: #080c20;
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 15px;
      padding: 15px 36px;
      border-radius: 50px;
      box-shadow: 0 8px 28px rgba(0, 212, 255, .4);
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
    }

    .gc-cta-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(0, 212, 255, .55);
    }

    .gc-cta-wa {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: rgba(255, 255, 255, .65);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: color .2s;
    }

    .gc-cta-wa i {
      color: #25D366;
      font-size: 18px;
    }

    .gc-cta-wa:hover {
      color: #fff;
    }

    .gc-cta-map {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: rgba(255, 255, 255, .65);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: color .2s;
    }

    .gc-cta-map i {
      color: #2ecc71;
      font-size: 18px;
    }

    .gc-cta-map:hover {
      color: #fff;
    }

    /* ═══ HOW TO BOOK ═══ */
    .how-to-book {
      margin-bottom: 80px;
    }

    .htb-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .htb-step {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 20px;
      padding: 28px 24px;
      text-align: center;
      position: relative;
      transition: border-color .3s, transform .3s;
    }

    .htb-step:hover {
      border-color: rgba(0, 212, 255, .3);
      transform: translateY(-5px);
    }

    .htb-step-num {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: #080c20;
      font-size: 16px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(0, 212, 255, .4);
    }

    .htb-step-icon {
      font-size: 28px;
      margin-bottom: 14px;
      margin-top: 8px;
    }

    .htb-step h4 {
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .htb-step p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ═══ MAP SECTION ═══ */
    .map-section {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .09);
      margin-bottom: 80px;
    }

    .map-header {
      padding: 28px 36px 24px;
      background: rgba(255, 255, 255, .04);
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .map-header h3 {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
    }

    .map-header p {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    .map-frame {
      width: 100%;
      height: 380px;
      border: none;
      display: block;
    }

    /* ═══ PRICING SECTION ═══ */
    .pricing-section {
      margin-bottom: 80px;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .pricing-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 22px;
      padding: 32px 28px;
      transition: transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    }

    .pricing-card.featured {
      border-color: rgba(0, 212, 255, .4);
      background: rgba(0, 212, 255, .05);
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: 16px;
      right: -28px;
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: #080c20;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 40px;
      transform: rotate(38deg);
      transform-origin: center;
    }

    .pc-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .pc-name {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .pc-desc {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .pc-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: #fff;
      line-height: 1;
    }

    .pc-price span {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      color: var(--muted);
      font-weight: 500;
    }

    .pc-features {
      list-style: none;
      margin: 20px 0 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pc-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(255, 255, 255, .75);
    }

    .pc-features li i {
      font-size: 12px;
      width: 16px;
    }

    .pc-cta {
      display: block;
      text-align: center;
      padding: 13px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }

    .pc-cta.primary {
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: #080c20;
    }

    .pc-cta.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 212, 255, .45);
    }

    .pc-cta.ghost {
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .pc-cta.ghost:hover {
      background: rgba(255, 255, 255, .13);
      color: #fff;
    }

    /* ═══ FAQ ═══ */
    .faq-section {
      margin-bottom: 80px;
    }

    .faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      transition: background .2s;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      gap: 16px;
    }

    .faq-q:hover {
      background: rgba(255, 255, 255, .04);
    }

    .faq-q i {
      font-size: 13px;
      color: var(--cyan);
      flex-shrink: 0;
      transition: transform .3s;
    }

    .faq-item.open .faq-q i {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s var(--ease), padding .3s;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      padding: 0 24px;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 24px 22px;
    }

    /* ═══ SCROLL REVEAL ═══ */
    .rv {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .75s var(--ease), transform .75s var(--ease);
    }

    .rv.vis {
      opacity: 1;
      transform: none;
    }

    .stg>*:nth-child(1) {
      transition-delay: .04s
    }

    .stg>*:nth-child(2) {
      transition-delay: .10s
    }

    .stg>*:nth-child(3) {
      transition-delay: .16s
    }

    .stg>*:nth-child(4) {
      transition-delay: .22s
    }

    .stg>*:nth-child(5) {
      transition-delay: .28s
    }

    .stg>*:nth-child(6) {
      transition-delay: .34s
    }

    /* ══════════════════ LEFT FLOATING DOCK ══════════════════ */

    @media(max-width:768px) {
      .grd-hero {
        padding: 120px 20px 60px;
      }

      .gc-image-wrap {
        height: 220px;
      }

      .gc-body {
        padding: 22px 18px 26px;
      }
    }

    /* ── VENUE SLIDER (Glass Upgrade) ── */
    .venue-slider-section {
      position: relative;
      padding: 10px 0 100px;
    }

    .venue-swiper {
      width: 100%;
      padding: 20px 0 60px !important;
      overflow: visible !important;
    }

    .venue-swiper .swiper-slide {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
      position: relative;
      cursor: pointer;
      transition: box-shadow .35s;
    }

    .venue-swiper .swiper-slide:hover {
      box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    }

    .venue-slide-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    }

    .venue-swiper .swiper-slide:hover .venue-slide-img {
      transform: scale(1.04);
    }

    .venue-slide-overlay {
      position: absolute;
      inset: 0;
      padding: 32px 34px;
      background: linear-gradient(to top, rgba(8, 12, 32, .95) 0%, rgba(8, 12, 32, .4) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: background .4s;
    }

    .venue-swiper .swiper-slide:hover .venue-slide-overlay {
      background: linear-gradient(to top, rgba(8, 12, 32, 1) 0%, rgba(8, 12, 32, .6) 45%, rgba(8, 12, 32, .1) 100%);
    }

    .venue-slide-tag {
      position: absolute;
      top: 22px;
      left: 26px;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, .18);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 30px;
    }

    .venue-slide-overlay h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 4vw, 42px);
      letter-spacing: 1.5px;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .venue-slide-overlay p {
      font-size: 14px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .venue-slide-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .vsm-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .75);
    }

    .vsm-item i {
      font-size: 13px;
    }

    .venue-slide-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 26px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
      width: fit-content;
    }

    .venue-slide-btn.primary {
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: #080c20;
      box-shadow: 0 8px 28px rgba(0, 212, 255, .4);
    }

    .venue-slide-btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(0, 212, 255, .55);
    }

    .venue-slide-btn.ghost {
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .9);
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .venue-slide-btn.ghost:hover {
      background: rgba(255, 255, 255, .15);
      color: #fff;
    }

    /* Ticker Effect Smoothness */
    .venue-swiper .swiper-wrapper {
      transition-timing-function: linear !important;
    }