/* =========================
   NTTS — Watch Pages (SS WHITE / Steel Blue)
   File: /watch/styles.css
   ========================= */

:root{
  --bg:#ffffff;
  --card:#ffffff;

  --text:#333333;
  --muted:rgba(51,51,51,.62);

  --stroke:rgba(51,51,51,.14);
  --stroke-soft:rgba(51,51,51,.10);

  --shadow:0 16px 36px rgba(0,0,0,.10);

  --r:22px;
  --r2:16px;

  /* NTTS steel-blue */
  --accent:#3F5E72;
  --accent-soft:rgba(63,94,114,.14);
  --accent-soft2:rgba(63,94,114,.22);

  --max:1100px;
  --pad:18px;
  --gap:16px;

  --font:-apple-system,BlinkMacSystemFont,"SF Pro Text",system-ui,Segoe UI,Roboto,Arial,sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: linear-gradient(180deg,#ffffff 0%, #f6f7fb 70%, #f3f4f8 100%);
}

a{ color:inherit; text-decoration:none; }

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:22px var(--pad) 30px;
}

/* ===== Topbar ===== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:12px 14px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--stroke);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.10);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.brand-icon{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
}

.brandText{
  font-weight:800;
  font-size:14px;
  color:rgba(51,51,51,.95);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Pills row */
.pillRow{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.pill{
  font-size:12px;
  line-height:1;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.02);
  color:rgba(51,51,51,.86);
  white-space:nowrap;
}

.pill.primary{
  background:rgba(63,94,114,.92);
  border-color:rgba(63,94,114,.92);
  color:#ffffff;
  box-shadow:0 0 0 3px rgba(63,94,114,.18) inset;
}

/* ===== Hero Card ===== */
.hero{
  margin-top:14px;
  border-radius:var(--r);
  border:1px solid var(--stroke-soft);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.heroInner{ padding:18px; }

.heroHead{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:2px 2px 12px;
}

.title{
  margin:0;
  font-size:28px;
  font-weight:900;
  letter-spacing:-0.2px;
  line-height:1.08;
  color:rgba(51,51,51,.96);
}

.subline{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

/* Badges inside hero */
.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:6px;
}

.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid var(--stroke);
  color:rgba(51,51,51,.86);
}

.badge.accent{
  border-color: rgba(63,94,114,.30);
  background: linear-gradient(180deg, rgba(63,94,114,.14), rgba(63,94,114,.06));
}

/* ===== Grid ===== */
.grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--gap);
  padding: 0 2px 2px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns:1fr; }
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    border-radius:18px;
  }
  .pillRow{ justify-content:flex-start; }
}

/* ===== Cards ===== */
.card{
  border-radius:var(--r2);
  background:var(--card);
  border:1px solid var(--stroke-soft);
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  overflow:hidden;
}

.cardHead{
  padding:12px 14px;
  border-bottom:1px solid rgba(51,51,51,.10);
  color:rgba(51,51,51,.62);
  font-size:12px;
  letter-spacing:.25px;
  text-transform:uppercase;
}

/* ===== Video ===== */
.videoWrap{
  position:relative;
  aspect-ratio:16/9;
  background:#0b1220;
}
.videoWrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* ===== Highlights ===== */
.content{ padding:14px; }

.hl{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:14px;
}

.hl li{
  padding-left:14px;
  position:relative;
  color:var(--muted);
  line-height:1.45;
}

.hl li:before{
  content:"-";
  position:absolute;
  left:0;
  top:0;
  color:rgba(51,51,51,.45);
}

/* ===== Actions ===== */
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;

  border-radius:14px;
  border:1px solid var(--stroke);
  background:#ffffff;
  color:rgba(51,51,51,.92);

  font-weight:900;
  font-size:14px;
  flex:1 1 220px;

  -webkit-tap-highlight-color: transparent;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover{ border-color: rgba(63,94,114,.25); }
.btn:active{ transform: translateY(1px) scale(.99); }

/* Primary = NTTS steel-blue */
.btn.primary{
  background: rgba(63,94,114,.92);
  border-color: rgba(63,94,114,.92);
  color:#ffffff;
  box-shadow: 0 0 0 3px rgba(63,94,114,.18) inset, 0 14px 34px rgba(0,0,0,.10);
}

.btn.primary:hover{
  background: rgba(63,94,114,.96);
}

/* Subtle “ghost” for Copy Link */
.btn.ghost{
  background: rgba(0,0,0,.02);
}

.fine{
  margin-top:12px;
  color:rgba(51,51,51,.62);
  font-size:12px;
  line-height:1.45;
}

/* ===== Footer ===== */
footer{
  margin-top:14px;
  padding:16px 6px 0;
  color:rgba(51,51,51,.62);
  font-size:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  border-top:1px solid rgba(51,51,51,.10);
}

footer a{
  color: rgba(63,94,114,.96);
  text-decoration:none;
}
footer a:hover{ text-decoration:underline; }

/* ===== Mobile tweaks ===== */
@media (max-width: 520px){
  .title{ font-size:24px; }
  .wrap{ padding:18px 14px 26px; }
}