:root {
    --accent: #0b74d1;
    --white: #fff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background-color: #161616;
}

/* HEADER */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 12px 40px;
    border-bottom: 1px solid #ddd;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.brand img {
    height: 28px
}

.main-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex: 1;
}

.main-nav a {
    color: #222;
    font-size: 14px;
    text-decoration: none
}

.top-actions {
    display: flex;
    gap: 10px
}

.btn-ghost {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 14px
}

.btn-primary {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600
}

/* SUBNAV */
.subnav {
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 10px 20px;
}

.subnav .left {
    margin-right: auto;
    font-weight: 600
}

.subnav a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: .9
}

.subnav .cta {
    background: var(--accent);
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 600
}

/* HERO VIDEO */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    /* adjust for header+subnav */
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    padding: 20px;
}

.eyebrow {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px
}

h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.sub {
    font-size: 18px;
    margin-bottom: 20px
}

.btn-outline {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px 18px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.flight-time-section {
    text-align: center;
    padding: 60px 20px;
}

.flight-time-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 14px 0;
}

.flight-time-section h2 sup {
    font-size: 12px;
    font-weight: 400;
}

.flight-time-section p {
    font-size: 16px;
    color: #aaa;
    margin: 0;
}

.myh2 {
    margin: 0;
    font-size: 14px;
    color: white;
    background-color: #474747;
    width: fit-content;
    padding: 2px 8px 2px 8px;
    border-radius: 5px;
    font-weight: 100;
}

/* Show hamburger for <= 900px and hide center nav */
@media (max-width:900px) {
    #centerNav {
        display: none !important;
    }

    #desktopPills {
        display: block !important;
    }

    #hamburgerBtn {
        display: inline-flex !important;
    }
}

@media (min-width:901px) {
    #mobileMenu {
        display: none !important;
    }

    #hamburgerBtn {
        display: none !important;
    }

    #mobileClose {
        display: none !important;
    }
}

/* small pill scroller style */
.pill-scroll::-webkit-scrollbar {
    height: 8px;
}

.pill-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

@media (max-width:900px) {
    #centerNav {
        display: none !important;
    }

    #desktopPills {
        display: none !important;
    }

    #hamburgerBtn {
        display: inline-flex !important;
    }
}

@media (min-width:901px) {
    #mobileMenu {
        display: none !important;
    }
}

/* pill scroll cosmetic */
#mobilePills::-webkit-scrollbar,
.mobile-sub>div::-webkit-scrollbar {
    height: 8px;
}

#mobilePills::-webkit-scrollbar-thumb,
.mobile-sub>div::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}


    /* show/hide elements and make pills pretty on small widths */
    @media (max-width:900px){
      #centerNav{ display:none !important; }
      #hamburger{ display:inline-flex !important; }
      /* ensure header's right actions stay visible */
      header div[style*="margin-left:auto"]{ margin-left: 60px; } /* avoid overlap with hamburger */
      /* subnav pills get a softer scrollbar on webkit */
      #subnav::-webkit-scrollbar, #mobilePills::-webkit-scrollbar { height:8px; }
      #subnav::-webkit-scrollbar-thumb, #mobilePills::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.12); border-radius:10px; }
    }
    @media (min-width:901px){
      #hamburger{ display:none !important; }
      #mobileOverlay{ display:none !important; }
    }



  /* ===== Namespaced tft- styles (inline) ===== */
  :root{
    --tft-bg: #080808;
    --tft-max: 1100px;
    --tft-text: #cfcfcf;
    --tft-white: #fff;
    --tft-accent: #f57c00;
  }
  html,body{height:100%;margin:0;/* background:var(--tft-bg); */font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--tft-white)}
  .tft-section{padding:60px 20px;max-width:var(--tft-max);margin:0 auto;text-align:center;box-sizing:border-box}
  .tft-heading{font-size:36px;font-weight:700;color:var(--tft-accent);margin:0 0 40px 0}
  .tft-row{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;margin-bottom:30px;text-align:left}
  .tft-col-left{flex:1;min-width:260px;max-width:260px}
  .tft-col-right{flex:2;min-width:280px;max-width:720px}
  .tft-h3{font-size:22px;font-weight:700;margin:0 0 10px 0;color:var(--tft-white)}
  .tft-p{margin:0;font-size:15px;line-height:1.6;color:var(--tft-text)}

  .tft-media-wrap{position:relative;display:inline-block;width:100%;max-width:1000px;overflow:hidden;border-radius:6px;background:#000;box-shadow:0 10px 30px rgba(0,0,0,0.6)}
  /* video element styles:
     include autoplay/muted/playsinline attributes in markup for best autoplay success */
  .tft-video{width:100%;height:auto;display:block;object-fit:cover;vertical-align:middle}
  .tft-stats{position:absolute;bottom:20px;left:0;width:100%;display:flex;justify-content:space-around;flex-wrap:wrap;color:var(--tft-white);padding:0 12px 8px;box-sizing:border-box;text-shadow:0 6px 24px rgba(0,0,0,0.6)}
  .tft-stat{text-align:center;margin:6px}
  .tft-stat-value{font-size:22px;font-weight:700}
  .tft-stat-label{font-size:14px;margin-top:4px;color:var(--tft-text)}

  .tft-play-overlay{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);display:none;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;background:rgba(0,0,0,0.65);color:var(--tft-white);font-weight:700;border:1px solid rgba(255,255,255,0.04);cursor:pointer;z-index:12}
  .tft-play-overlay.tft-visible{display:flex}
  .tft-dot{width:10px;height:10px;border-radius:50%;background:var(--tft-white)}

  /* responsive */
  @media(max-width:900px){ .tft-col-right{max-width:100%} }
  @media(max-width:640px){ .tft-heading{font-size:28px} .tft-stats{bottom:12px} }

  /* reduced motion preference */
  @media (prefers-reduced-motion: reduce) { .tft-video{transition:none} }



  /* top controls row */
  .top-row{display:flex;align-items:center;justify-content:space-between;color:var(--muted);margin-bottom:8px;font-size:13px}
  .left-controls{display:flex;gap:12px;align-items:center}
  .icon-btn{width:36px;height:28px;background:#111;border-radius:4px;display:flex;align-items:center;justify-content:center;color:#ddd;font-weight:700}
  .mode-pill{background:#101010;padding:8px 10px;border-radius:3px;color:#ddd;font-weight:600}
  /* video container to keep aspect ratio */
  .video-wrap{width:100%;height:0;padding-bottom:56.25%;position:relative;overflow:hidden;border-radius:4px;background:#000;border:1px solid rgba(255,255,255,0.03)}
  video{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover;border-radius:4px}
  /* tab bar */
  .tab-bar{display:flex;gap:14px;justify-content:center;margin-top:18px;flex-wrap:wrap}
  .tab-btn{
    padding:10px 18px;border-radius:4px;border:0;background:transparent;color:var(--muted);cursor:pointer;font-weight:600;
  }
  .tab-btn[aria-pressed="true"]{
    color:#fff;background:var(--tab-active-bg);box-shadow:inset 0 -2px 0 rgba(0,0,0,0.35);
  }
  /* description */
  .desc{ text-align:center;color:#cfcfcf;padding:16px 20px;margin-top:12px;font-size:15px;line-height:1.5;min-height:48px}
  /* play overlay visible when autoplay blocked */
  .play-overlay{
    position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
    background:rgba(0,0,0,0.6);padding:14px 18px;border-radius:30px;display:none;align-items:center;gap:10px;cursor:pointer;
    border:1px solid rgba(255,255,255,0.06);
  }
  .play-overlay.visible{display:flex}
  .play-overlay .dot{width:12px;height:12px;border-radius:50%;background:#fff}
  /* responsive */
  @media(max-width:720px){
    h1{font-size:30px}
    .tab-btn{padding:8px 12px}
  }


  /* Basic reset & base */
  *{box-sizing:border-box}
  html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;/* background:#040404; */color:#eee}
  .wrap{max-width:1100px;margin:0 auto;padding:40px 24px}

  /* Two-column layout */
  .panel{display:grid;grid-template-columns:1fr 420px;gap:36px;align-items:start}
  @media(max-width:900px){.panel{grid-template-columns:1fr}}

  /* LEFT: large image + content */
  .left {
    display:flex;flex-direction:column;gap:22px;
  }
  .main-image{
    background:#070707;border-radius:6px;overflow:hidden;border:1px solid rgba(255,255,255,0.03);
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  }
  .main-image img{width:100%;height:340px;object-fit:cover;display:block}

  .content{
    max-width:640px;
  }
  .title{font-size:18px;font-weight:800;margin:0 0 12px;color:#fff}
  .desc{color:#c9c9c9;font-size:13px;line-height:1.5;margin:0 0 16px;text-align: left;margin-left: -22px}
  .cta-row{display:flex;gap:12px;align-items:center}
  .buy{
    display:inline-block;padding:8px 14px;border-radius:20px;background:#fff;color:#111;font-weight:700;text-decoration:none;font-size:13px;
    box-shadow:none;border:0
  }
  /* minimal CTA style (small button) */
  .buy.minimal{padding:8px 12px;border-radius:999px;font-size:13px}

  /* RIGHT: cards grid (2x2) */
  .cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .card{
    background:#262626;
    border:1px solid rgba(255,255,255,0.03);
    padding:14px;
    border-radius:4px;
    height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    cursor:pointer;
    transition:transform .14s ease, box-shadow .14s ease;
    outline:none;
  }
  .card:hover{transform:translateY(-6px);box-shadow:0 24px 50px rgba(0,0,0,0.6)}
  .card:focus{box-shadow:0 18px 36px rgba(0,188,212,0.08);transform:translateY(-4px)}
  .card-top{flex:1;display:flex;align-items:center;justify-content:center;padding:10px}
  .card-top img{max-width:70%;max-height:110px;object-fit:contain;display:block;filter:brightness(.95)}
  .card-bottom{border-top:1px solid rgba(255,255,255,0.02);padding-top:10px;margin-top:10px}
  .card-title{font-size:12px;font-weight:800;margin:0;color:#fff}
  .card-sub{font-size:11px;color:#9f9f9f;margin:6px 0 0}

  /* selected card visual */
  .card.selected{border-color:rgba(247,178,76,0.16);box-shadow:0 20px 40px rgba(247,178,76,0.04);transform:translateY(-4px)}
  .card.selected .card-title{color:#f7b24c}

  /* small screens */
  @media(max-width:540px){
    .main-image img{height:260px}
    .card{height:180px}
  }



    /* show/hide elements and make pills pretty on small widths */
    @media (max-width:900px) {
      #centerNav {
        display: none !important;
      }

      #hamburger {
        display: inline-flex !important;
      }

      /* ensure header's right actions stay visible */
      header div[style*="margin-left:auto"] {
        margin-left: 60px;
      }

      /* avoid overlap with hamburger */
      /* subnav pills get a softer scrollbar on webkit */
      #subnav::-webkit-scrollbar,
      #mobilePills::-webkit-scrollbar {
        height: 8px;
      }

      #subnav::-webkit-scrollbar-thumb,
      #mobilePills::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 10px;
      }
    }

    @media (min-width:901px) {
      #hamburger {
        display: none !important;
      }

      #mobileOverlay {
        display: none !important;
      }
    }

    @media (max-width:900px) {
      #centerNav {
        display: none !important;
      }

      #desktopPills {
        display: none !important;
      }

      #hamburgerBtn {
        display: inline-flex !important;
      }
    }

    @media (min-width:901px) {
      #mobileMenu {
        display: none !important;
      }
    }

    /* pill scroll cosmetic */
    #mobilePills::-webkit-scrollbar,
    .mobile-sub>div::-webkit-scrollbar {
      height: 8px;
    }

    #mobilePills::-webkit-scrollbar-thumb,
    .mobile-sub>div::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.12);
      border-radius: 6px;
    }

      /* ===== Namespaced tft- styles (inline) ===== */
      :root {
        --tft-bg: #080808;
        --tft-max: 1100px;
        --tft-text: #cfcfcf;
        --tft-white: #fff;
        --tft-accent: #f57c00;
      }

      html,
      body {
        height: 100%;
        margin: 0;
        /* background: var(--tft-bg); */
        font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
        color: var(--tft-white)
      }

      .tft-section {
        padding: 60px 20px;
        max-width: var(--tft-max);
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box
      }

      .tft-heading {
        font-size: 36px;
        font-weight: 700;
        color: var(--tft-accent);
        margin: 0 0 40px 0
      }

      .tft-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
        text-align: left
      }

      .tft-col-left {
        flex: 1;
        min-width: 260px;
        max-width: 265px;
      }

      .tft-col-right {
        flex: 2;
        min-width: 280px;
        max-width: 720px
      }

      .tft-h3 {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: var(--tft-white)
      }

      .tft-p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: var(--tft-text)
      }

      .tft-media-wrap {
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: 1000px;
        overflow: hidden;
        border-radius: 6px;
        background: #000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6)
      }

      /* video element styles:
     include autoplay/muted/playsinline attributes in markup for best autoplay success */
      .tft-video {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        vertical-align: middle
      }

      .tft-stats {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        color: var(--tft-white);
        padding: 0 12px 8px;
        box-sizing: border-box;
        text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6)
      }

      .tft-stat {
        text-align: center;
        margin: 6px
      }

      .tft-stat-value {
        font-size: 22px;
        font-weight: 700
      }

      .tft-stat-label {
        font-size: 14px;
        margin-top: 4px;
        color: var(--tft-text)
      }

      .tft-play-overlay {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: none;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.65);
        color: var(--tft-white);
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, 0.04);
        cursor: pointer;
        z-index: 12
      }

      .tft-play-overlay.tft-visible {
        display: flex
      }

      .tft-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--tft-white)
      }

      /* responsive */
      @media(max-width:900px) {
        .tft-col-right {
          max-width: 100%
        }
      }

      @media(max-width:640px) {
        .tft-heading {
          font-size: 28px
        }

        .tft-stats {
          bottom: 12px
        }
      }

      /* reduced motion preference */
      @media (prefers-reduced-motion: reduce) {
        .tft-video {
          transition: none
        }
      }


      
        /* Basic reset & base */
        * {
          box-sizing: border-box
        }

        html,
        body {
          height: 100%;
          margin: 0;
          font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
          /* background: #040404; */
          color: #eee
        }

        .wrap {
          max-width: 1100px;
          margin: 0 auto;
          padding: 40px 24px
        }

        /* Two-column layout */
        .panel {
          display: grid;
          grid-template-columns: 1fr 420px;
          gap: 36px;
          align-items: start
        }

        @media(max-width:900px) {
          .panel {
            grid-template-columns: 1fr
          }
        }

        /* LEFT: large image + content */
        .left {
          display: flex;
          flex-direction: column;
          gap: 22px;
        }

        .main-image {
          background: #070707;
          border-radius: 6px;
          overflow: hidden;
          border: 1px solid rgba(255, 255, 255, 0.03);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
        }

        .main-image img {
          width: 100%;
          height: 340px;
          object-fit: cover;
          display: block
        }

        .content {
          max-width: 640px;
        }

        .title {
          font-size: 18px;
          font-weight: 800;
          margin: 0 0 12px;
          color: #fff
        }

        .desc {
          color: #c9c9c9;
          font-size: 13px;
          line-height: 1.5;
          margin: 0 0 16px;
          text-align: left;
          margin-left: -22px
        }

        .cta-row {
          display: flex;
          gap: 12px;
          align-items: center
        }

        .buy {
          display: inline-block;
          padding: 8px 14px;
          border-radius: 20px;
          background: #fff;
          color: #111;
          font-weight: 700;
          text-decoration: none;
          font-size: 13px;
          box-shadow: none;
          border: 0
        }

        /* minimal CTA style (small button) */
        .buy.minimal {
          padding: 8px 12px;
          border-radius: 999px;
          font-size: 13px
        }

        /* RIGHT: cards grid (2x2) */
        .cards {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }

        .card {
          background: #262626;
          border: 1px solid rgba(255, 255, 255, 0.03);
          padding: 14px;
          border-radius: 4px;
          height: 220px;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          cursor: pointer;
          transition: transform .14s ease, box-shadow .14s ease;
          outline: none;
        }

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

        .card:focus {
          box-shadow: 0 18px 36px rgba(0, 188, 212, 0.08);
          transform: translateY(-4px)
        }

        .card-top {
          flex: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 10px
        }

        .card-top img {
          max-width: 70%;
          max-height: 110px;
          object-fit: contain;
          display: block;
          filter: brightness(.95)
        }

        .card-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.02);
          padding-top: 10px;
          margin-top: 10px
        }

        .card-title {
          font-size: 12px;
          font-weight: 800;
          margin: 0;
          color: #fff
        }

        .card-sub {
          font-size: 11px;
          color: #9f9f9f;
          margin: 6px 0 0
        }

        /* selected card visual */
        .card.selected {
          border-color: rgba(247, 178, 76, 0.16);
          box-shadow: 0 20px 40px rgba(247, 178, 76, 0.04);
          transform: translateY(-4px)
        }

        .card.selected .card-title {
          color: #f7b24c
        }

        /* small screens */
        @media(max-width:540px) {
          .main-image img {
            height: 260px
          }

          .card {
            height: 180px
          }
        }