:root{
  /* Screenshot-like palette */
  --black: #050607;
  --navy:  #071d26;   /* deep teal/navy header */
  --navy2: #06141c;
  --text:  #eaf6ff;
  --muted: rgba(234,246,255,.72);
  --line:  rgba(255,255,255,.14);

  /* Zero Latency-ish cyan button */
  --cyan:  #20b8ff;
  --cyan2: #53d8ff;

  --card: rgba(7, 29, 38, .78);
  --shadow: 0 22px 70px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--black);
}

.wrap{ width:min(1100px, 92%); margin:0 auto; }

/* TOP STRIP */
.top-strip{
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.top-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
}
.top-strip-left{
  display:flex;
  gap: 10px;
  align-items:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.pin{ opacity:.9; }
.top-strip-right{
  display:flex;
  align-items:center;
  gap: 14px;
  white-space:nowrap;
}
.ghost-pill{
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(202, 205, 206, 0.3);
  background: rgba(32,184,255,.16);
  font-weight: 800;
  letter-spacing: .04em;
}
.ghost-link{
  font-weight: 800;
  opacity: .75;
}

/* HEADER */
.header{
  background: linear-gradient(180deg, var(--navy), var(--navy2));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  padding: 18px 0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width: 42px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  box-shadow: 0 0 24px rgba(32,184,255,.35);
}
.brand-text{ line-height: 1; }
.brand-title{
  font-weight: 1000;
  letter-spacing: .10em;
  font-size: 18px;
}
.brand-sub{
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  opacity: .9;
}
.lb{
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  opacity: .9;
}

/* HERO */
.hero{
  position:relative;
  min-height: calc(100vh - 120px);
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* If you want an actual image, put hero.jpg next to files and it will use it */
.hero-bg{
  position:absolute;
  inset:0;
  background:
    url("hero.png") center/cover no-repeat,
    linear-gradient(180deg, #0a0f14, #070b10);
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

/* Neon overlay like the screenshot colors */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgb(255, 255, 255));
}

.hero-inner{
  position:relative;
  padding: 56px 0;
}

/* CARD */
.card{
  
  width: min(100%);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 22px;
}

.card-kicker{
  font-weight: 1000;
  letter-spacing: .14em;
  font-size: 12px;
  opacity: .9;
  text-transform: uppercase;
}

.card-title{
  margin: 10px 0 10px;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.02;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card-desc{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.btn-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons styled like the official “BOOK NOW” vibe */
.btn{
  flex: 1 1 160px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.16);
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .10em;
  font-size: 12px;
  text-transform: uppercase;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }

.btn-primary{
  background: rgba(32,184,255,.92);
  color: #061018;
  border-color: rgba(255,255,255,.08);
}
.btn-outline{
  background: rgba(255,255,255,.06);
  border-color: rgba(32,184,255,.30);
  color: rgba(234,246,255,.92);
}

.hint{
  margin-top: 14px;
  color: rgba(234,246,255,.60);
  font-size: 12px;
}
.hint code{
  background: rgba(255,255,255,.08);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(234,246,255,.9);
}

/* FOOTER */
.footer{
  background: #040608;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-inner{
  padding: 14px 0;
  color: rgba(234,246,255,.60);
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 520px){
  .ghost-pill{ display:none; }
  .card{ padding: 18px; }
  .btn{ flex: 1 1 100%; }
}