:root{
  --bg:#131722;
  --panel:#0f121a;
  --panel2:#111;
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.62);
  --muted2:rgba(255,255,255,.45);
  --accent:#ed215e;
  --navH:66px;
  --playerH:72px; /* sticky player height */
}

html { scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--text);
}
section[id]{ scroll-margin-top: calc(var(--navH) + 14px); }

.kurt-nav{
  height:var(--navH);
  background: rgba(19, 23, 34, 0.22);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease;
}
.kurt-nav.kurt-nav-solid{ background: rgba(15, 18, 26, 0.92); }
.kurt-nav .nav-link{
  color: rgba(255,255,255,0.75) !important;
  border-radius: 10px;
  padding: 10px 12px !important;
  line-height: 1;
}
.kurt-nav .nav-link:hover{
  color:#fff !important;
  background: rgba(255,255,255,0.06);
}
.kurt-nav .nav-link.active{
  color:#fff !important;
  background: rgba(237,33,94,0.16);
  outline: 1px solid rgba(237,33,94,0.35);
}
.kurt-nav-cta{
  background: rgba(237,33,94,0.92) !important;
  color:#fff !important;
  border:0 !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  font-weight: 700 !important;
}
@media (max-width: 991.98px){
  .kurt-nav .navbar-collapse{
    background: rgba(15, 18, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 10px;
    margin-top: 10px;
  }
}

/* Hero */
.hero{
  position:relative;
  min-height: 100svh;
  background:#0b0e14;
  overflow:hidden;
}
@supports (min-height: 100dvh){
  .hero{ min-height: 100dvh; }
}
.hero video,
.hero .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(19,23,34,.25) 0%, rgba(19,23,34,.72) 65%, rgba(19,23,34,1) 100%);
}
.hero .hero-content{
  position:relative;
  z-index:2;
  padding-top: calc(var(--navH) + 30px);
  padding-bottom: 60px;
}
.hero h1{ letter-spacing:.2px; }
.badge-soft{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
}

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin: 28px 0 14px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  padding-bottom:10px;
}
.section-title h2{
  margin:0;
  font-weight:800;
  letter-spacing: .6px;
}
.section-title p{ margin:0; color:var(--muted); }

.card-dark{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.cover{
  aspect-ratio: 1/1;
  object-fit: cover;
  width:100%;
}
.play-btn{
  border:0;
  background: rgba(237,33,94,.92);
  color:#fff;
  width:44px; height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
}
.play-btn.secondary{
  background: rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}

.small-muted{ color:var(--muted2); font-size:.92rem; }

/* Sticky player */
body{ padding-bottom: calc(var(--playerH) + 12px); }
.sticky-player{
  position:fixed;
  left:0; right:0; bottom:0;
  height: var(--playerH);
  background: rgba(15, 18, 26, 0.94);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1030; /* under modal (1050+) */
}
.sticky-player .inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:14px;
}
.sticky-player img{
  width:44px; height:44px; border-radius: 12px; object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
}
.sticky-player .meta{ min-width:0; }
.sticky-player .meta .t{ font-weight:800; line-height:1.15; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.sticky-player .meta .a{ color:var(--muted); font-size:.92rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.sticky-player .controls{ display:flex; align-items:center; gap:10px; margin-left:auto; }
.sticky-player input[type="range"]{ width:min(360px, 42vw); }
.sticky-player .time{ font-variant-numeric: tabular-nums; color:var(--muted2); font-size:.88rem; min-width: 84px; text-align:right; }

/* Footer */
#site-footer{
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#site-footer .social a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px; height:36px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
#site-footer .social a:hover{
  color:#fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.footer-muted{ color: rgba(255,255,255,.35); }

/* Fix "white hairline" between sections caused by subpixel backgrounds */
.bg-color2, section, body{ background-color: var(--bg) !important; }
