:root {
  --bg: #060b14;          /* deep ocean night */
  --bg-2: #0b1c2d;        /* subtle ocean layer */
  --card: #0e2238;        /* cards like water depth */
  --accent: #38bdf8;      /* cyan-blue (ocean light) */
  --accent-2: #0ea5e9;    /* deeper blue */
  --cta1: #22d3ee;        /* aqua */
  --cta2: #38bdf8;        /* ocean cyan */
  --text: #e5e7eb;
  --muted: #9fb3c8;
  --border: #12304a;
   /* Brand gradient (DevOpsMind) */
  --brand-start: #60a5fa;   /* blue */
  --brand-end:   #a78bfa;   /* violet */

  /* Brand-derived (headlines) */
  --brand-soft-start: #38bdf8; /* ocean cyan */
  --brand-soft-end:   #60a5fa; /* brand blue */    
  }


    * { box-sizing:border-box; }
body {
  margin: 0;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  background:
    radial-gradient(1200px 600px at top,
      rgba(56,189,248,0.12),
      transparent 60%),
    linear-gradient(180deg,
      #060b14 0%,
      #081a2b 60%,
      #060b14 100%);
  color: var(--text);
  min-height: 100vh;
  text-align: center;
}



    /* Subtle grain / noise overlay (SEO-safe, offline-safe) */
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'>\
    <filter id='n'>\
    <feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/>\
    </filter>\
    <rect width='100%' height='100%' filter='url(%23n)' opacity='0.2'/>\
    </svg>");
      opacity: 0.045;   /* keep LOW */
      pointer-events: none;
    }

    body > * {
      position: relative;
      z-index: 1;
    }

    header {
      margin-top:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      padding:14px 20px;
      background:#121826;
      border:1px solid var(--border);
      border-radius:var(--radius);
      width:fit-content;
      margin-left:auto;
      margin-right:auto;
    }

    .logo-header {
  margin-top: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;          /* IMPORTANT */
  background:none;    /* REMOVE CARD */
  border:none;        /* REMOVE BORDER */
  }  

    .subtitle {
      max-width:680px;
      margin:22px auto 0;
      color:var(--muted);
      line-height:1.7;
    }

    .buttons {
      display:flex;
      gap:14px;
      margin-top:38px;
      flex-wrap:wrap;
      justify-content:center;
    }

    button {
      background:linear-gradient(90deg,var(--accent),var(--accent-2));
      border:none;
      border-radius:10px;
      padding:13px 24px;
      color:#fff;
      font-weight:600;
      cursor:pointer;
      font-size:.95rem;
    }

    button.secondary-cta {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }


    .cta {
      background:linear-gradient(90deg,var(--cta1),var(--cta2));
      color:#022c22;
      animation:pulse 2s infinite;
    }

    @keyframes pulse {
        0%   { box-shadow:0 0 0 0 rgba(56,189,248,0.45); }
        70%  { box-shadow:0 0 0 16px rgba(56,189,248,0); }
        100% { box-shadow:0 0 0 0 rgba(56,189,248,0); }
    }

    .status {
      margin-top:18px;
      color:var(--muted);
      font-size:.9rem;
    }

    footer {
      margin:44px 0 26px;
      color:var(--muted);
      font-size:.8rem;
    }

    #authModal,
    #installModal,
    #platformModal,
    #faqModal,
    #privacyModal,
    #feedbackModal,
    #feedbackViewerModal {
      display:none;
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.6);
      align-items:center;
      justify-content:center;
      z-index:1000;
    }

    #authModal > div,
    #installModal > div,
    #faqModal > div,
    #privacyModal > div {
      background:#121826;
      border:1px solid var(--border);
      border-radius:14px;
      padding:24px;
      max-width:520px;
      width:100%;
      text-align:left;
    }

    input {
      width:100%;
      padding:8px;
      margin-bottom:10px;
      border-radius:8px;
      border:1px solid var(--border);
      background:#0b0f17;
      color:var(--text);
    }

    pre {
      background:#0b0f17;
      border:1px solid var(--border);
      border-radius:10px;
      padding:14px;
      overflow:auto;
      color:#e5e7eb;
      font-size:.85rem;
    }

    ul { padding-left:20px; }

  #otpModal,
  #resetModal {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  align-items:center;
  justify-content:center;
  z-index:1000;
}

#otpModal > div,
#resetModal > div {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  max-width:420px;
  width:100%;
}


.otp-box {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:14px;
}

.otp-box input {
  width:46px;
  height:56px;
  text-align:center;
  font-size:1.6rem;
  font-weight:700;
  border-radius:12px;
  background:#020617;
  border:1px solid var(--border);
  color:var(--accent);
}

.otp-box input:focus {
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(96,165,250,.25);
}

/* ================= AUTH SUCCESS ANIMATION ================= */

.auth-success {
  animation: authSuccess 420ms ease forwards;
}

@keyframes authSuccess {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(0.96);
  }
}

.handle-suggestion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  max-width: 100%;
}

.handle-suggestion {
  background: rgba(120, 140, 255, 0.12);
  border: 1px solid rgba(120, 140, 255, 0.35);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.handle-suggestion:hover {
  background: rgba(120, 140, 255, 0.22);
}
#handleSuggestions {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero-logo {
  height: 125px;       /* slightly smaller, still headline-dominant */
  width: auto;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .hero-logo {
    height: 105px;
  }
}

@media (max-width: 640px) {
  .hero-logo {
    height: 80px;
  }
}

h1:not(.hero-title) {
  color: var(--accent);
}


/* ===== CTA PRIORITY ===== */

/* Primary: Download */
button.primary-cta {
  background: linear-gradient(90deg, #22d3ee, #38bdf8);
  color: #042f3e;
}


/* Secondary: Docs */
button.secondary-cta {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.85;
}

/* Tertiary: Leaderboard */
button.tertiary-cta {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
button.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(34,197,94,0.45);
}
.hero {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 16px 40px 80px;
  background:
    radial-gradient(700px circle at top,
      rgba(56,189,248,0.18),
      transparent 65%);
  border-radius: 24px;
}


.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--brand-soft-start),
    var(--brand-soft-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
  margin: 24px auto 0;
}
.buttons button {
  min-width: 200px;
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 60px auto;
}

.feature-card,
#authModal > div,
#installModal > div {
  background: linear-gradient(
    180deg,
    rgba(14,34,56,0.95),
    rgba(6,18,32,0.95)
  );
  border: 1px solid var(--border);
}

.brand-title {
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--brand-start),
    var(--brand-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-card {
  padding: 22px;
  border-radius: 18px;
  font-weight: 500;
}

/* ================= MOBILE CENTER ALIGN FIX ================= */
@media (max-width: 640px) {

  /* Force hero content to center */
  .hero {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* Logo */
  .logo-header,
  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  /* Text blocks */
  .hero-title,
  .hero-subtitle,
  .subtitle,
  .status {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Buttons container */
  .buttons {
    align-items: center;
    justify-content: center;
  }

  .buttons button {
    text-align: center;
  }

  /* Feature cards centered */
  .features {
    justify-items: center;
  }

  .feature-card {
    text-align: center;
    width: 100%;
  }

  /* Footer */
  footer {
    text-align: center;
  }
}


/* ================= TABLET OVERRIDES ================= */
@media (min-width: 641px) and (max-width: 1024px) {

  .hero {
    padding: 48px 32px;
  }

  .hero-logo {
    height: 90px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  /* Buttons row but flexible */
  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .buttons button {
    min-width: 180px;
  }

  /* Features = 2 columns */
  .features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 48px auto;
  }
}

/* ================= HARD MOBILE LOGO CENTER FIX ================= */
@media (max-width: 640px) {

  .logo-header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
  }

  .logo-header img,
  .hero-logo {
    display: block !important;     /* 🔑 THIS IS THE KEY */
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ================= UNIVERSAL LOGO: CENTER + TIGHT TOP ================= */

/* Remove top spacing from hero on all devices */
.hero {
  margin-top: 0 !important;
  padding-top: 16px !important;   /* adjust to 8px if you want tighter */
}

/* Logo container */
.logo-header {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Logo image (browser-safe) */
.logo-header img,
.hero-logo {
  display: block !important;      /* REQUIRED for Safari/iOS */
  margin: 0 auto !important;
  padding: 0 !important;

  height: 90px;                   /* desktop default */
  max-width: 90vw;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-logo {
    height: 80px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-logo {
    height: 72px;
  }
}

/* ================= IMAGE PREVIEW ZOOM ================= */

.preview-img {
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preview-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.6);
}

/* Fullscreen overlay */
#imagePreviewModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.92);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Image inside modal */
#imagePreviewModal img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
  cursor: zoom-out;
}
#whyAccountModal {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  align-items:center;
  justify-content:center;
  z-index:1000;
}
#whyAccountModal > div {
  background:#121826;
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
  max-width:460px;
  width:100%;
  text-align:left;
}

.cli-hint {
  border-bottom: 1px dotted var(--muted);
  cursor: pointer;
  margin-left: 6px;
  font-size: 0.9em;
}

/* Hidden by default */
.cli-hint-box {
  display: none;
  margin: 10px auto 0;
  max-width: 560px;
  background: rgba(14, 34, 56, 0.95);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Desktop hover support */
@media (hover: hover) {
  .cli-hint:hover + .cli-hint-box {
    display: block;
  }
}

/* ===== START IN 10 MINUTES ===== */

.start10 {
  max-width: 900px;
  margin: 48px auto;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(14,34,56,0.95),
    rgba(6,18,32,0.95)
  );
  border: 1px solid var(--border);
  text-align: left;
}

.start10-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.start10-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

.start10-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.start10-subtitle {
  color: var(--muted);
  margin: 12px 0 20px;
}

.start10-steps {
  padding-left: 18px;
}

.start10-steps li {
  margin-bottom: 18px;
  line-height: 1.5;
}

.cmd-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

.cmd-row code {
  background: rgba(11,15,23,0.65);
  padding: 6px 10px;
  border-radius: 6px;
}


.cmd-row button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  cursor: pointer;
}

.cmd-row button:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.start10-footer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Collapsed */
.start10.collapsed .start10-subtitle,
.start10.collapsed .start10-steps,
.start10.collapsed .start10-footer {
  display: none;
}

/* ===== Beginner Mode Helpers ===== */
.beginner-hint {
  display: none;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.beginner-mode .beginner-hint {
  display: block;
}

.modal-subtext {
  margin-top: 6px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: #9ca3af; /* soft gray */
}

/* ===== Scroll Fade Animation ===== */

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger feel for cards */
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

pre.fade-section {
  transform: translateY(16px) scale(0.99);
}

/* ===== Slide-in Animations for Screenshots ===== */

.slide-left,
.slide-right {
  opacity: 0;
  transition:
    opacity 0.9s ease-out,
    transform 0.9s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}

.slide-left {
  transform: translateX(-48px);
}

.slide-right {
  transform: translateX(48px);
}

.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slight scale for depth (optional but subtle) */
.preview-img.slide-left,
.preview-img.slide-right {
  transform-origin: center;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .slide-left,
  .slide-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================= TERMINAL OUTPUT APPEAR ================= */

.terminal-output {
  opacity: 0;
}

.terminal-output.visible {
  opacity: 1;
}

/* Each line inside terminal */
.terminal-line {
  opacity: 0;
  transform: translateY(6px);
  animation: terminalLineIn 0.35s ease-out forwards;
}

@keyframes terminalLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .terminal-line {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ================= CLI PROGRESSIVE DISCLOSURE ================= */

.cli-collapsible {
  text-align: center;
  margin-bottom: 32px;
}

.cli-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cli-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.cli-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.cli-collapsible.expanded .cli-content {
  max-height: 2200px;
}

.cli-toggle::before {
  content: "▶ ";
}

.cli-collapsible.expanded .cli-toggle::before {
  content: "▼ ";
}

/* ===== Clickable Stack Cards ===== */

.stack-card {
  cursor: pointer;
  text-align: left;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(14,34,56,0.95),
    rgba(6,18,32,0.95)
  );
  color: var(--text);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.stack-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.stack-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}

.stack-card:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(56,189,248,0.35);
}

/* ===== STACK CLI MODAL ===== */

#stackCliModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#stackCliModal > div {
  background: #121826;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  max-width: 640px;
  width: 100%;
  text-align: left;
}

#stackCliModal pre {
  background: #0b0f17;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-size: .9rem;
  margin-top: 12px;
}

/* ===== Page Loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.page-loader.active {
  opacity: 1;
  pointer-events: all;
}

.loader-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 1rem;
  color: var(--accent);
}

.loader-caret {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
/* =========================================================
   WORKFLOW HEADING + TOOLTIP 
   ========================================================= */

/* Heading + tooltip treated as one semantic unit */
.workflow-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

/* Tooltip trigger */
.workflow-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

/* Hover / focus emphasis */
.workflow-tooltip:hover,
.workflow-tooltip:focus,
.workflow-tooltip:focus-visible {
  opacity: 1;
}

/* Tooltip bubble */
.workflow-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 140%;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #0b0f17;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.4;
  transition: opacity 0.2s ease;
  z-index: 50; /* higher than cards, modals unaffected */
  pointer-events: none;
}

/* Desktop hover */
.workflow-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Mobile tap + keyboard */
.workflow-tooltip:focus .tooltip-text,
.workflow-tooltip:focus-visible .tooltip-text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile width optimization */
@media (max-width: 480px) {
  .workflow-tooltip .tooltip-text {
    width: 90vw;
    font-size: 0.78rem;
    bottom: 150%;
  }
}

/* ===== Terminal Cursor ===== */
.terminal-cursor {
  display: inline-block;
  margin-left: 6px;
  font-weight: 400;
  color: var(--accent);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ===== Workflow Step Animation ===== */
.workflow-list li {
  opacity: 0.35;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
}

.workflow-list li.active {
  opacity: 1;
  transform: translateX(0);
}

.workflow-list li.active::before {
  content: ">";
  position: absolute;
  left: -14px;
  color: var(--accent);
}

/* ===== Download Page Title Hierarchy (OBS-style) ===== */

.download-brand {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.85;
  background: linear-gradient(
    90deg,
    var(--brand-start),
    var(--brand-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download-title {
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 3.4rem);
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--brand-soft-start),
    var(--brand-soft-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#whatsNewTooltip {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: #0f0f14;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  z-index: 999;
}

#whatsNewTooltip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
}

#whatsNewTooltip p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

/* ================= BUILDTRACK PANEL ================= */

.bt-wrapper {
  max-width: 900px;
  margin: 48px auto 32px;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(14,34,56,0.95),
    rgba(6,18,32,0.95)
  );
  border: 1px solid var(--border);
  text-align: left;
}

.bt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bt-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bt-body {
  margin-top: 20px;
}

.bt-countdown {
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--muted);
}

.bt-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* SAFETY: ensure CSS never forces visibility */
.bt-body[hidden] {
  display: none !important;
}
