:root {
    --text: #f6f8ff;
    --muted: rgba(246, 248, 255, .78);
    --stroke: rgba(255, 255, 255, .12);
    --panel: rgba(12, 14, 18, .48);
    --shadow: 0 18px 50px rgba(0, 0, 0, .45);
    --radius: 18px;
    --max: 980px;
    /*background-color: rgb(8, 102, 255);*/
    --fb-bg: rgb(8, 102, 255);
    /*border: 2px solid rgb(8, 102, 255);*/
    --fb-border: 2px solid var(--fb-bg);
    /*border: 2px solid var(--stroke);*/
    --fb-border-hover: 2px solid var(--stroke);
    /*color: rgba(246, 248, 255, .86);*/
    --fb-color: rgba(246, 248, 255, .86);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: #070a10;
}

.wrap {
    min-height: 100vh;
    padding: 16px 16px 92px;
    /* leave room for sticky bar */
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.topbar {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 6px;
}

.title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.title strong {
    font-size: 15px;
    letter-spacing: .2px;
}

.title span {
    font-size: 12px;
    color: rgba(246, 248, 255, .62);
}

.chip {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
}

.chip:hover,
.chip:focus-visible {
    outline: none;
}

main {
    flex: 1;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.panel {
    width: 100%;
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/*
h1 {
    margin: 0;
    font-size: clamp(26px, 6.2vw, 46px);
    line-height: 1.06;
    letter-spacing: -.02em;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    max-width: 62ch;
    font-weight: normal;
    display: block;
    margin-top: 6px;
}
*/

h1{
  margin: 0;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 850;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

h1::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56%;
  height: 4px;
  border-radius: 999px;
  /*background: linear-gradient(90deg, rgba(110,168,255,1), rgba(120,240,200,1));*/
  background: linear-gradient(90deg, rgb(196, 110, 255), rgb(120, 240, 200));
  opacity: .95;
}

.lead{
  margin: 12px 0 0;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  max-width: 64ch;
  /*color: rgba(233,238,252,.78);*/

  /*background: linear-gradient(90deg, rgba(110,168,255,1), rgba(120,240,200,1));*/
  background: linear-gradient(90deg, rgb(255, 110, 110), rgb(120, 240, 200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.lead strong{
  color: rgba(120,240,200,.95);
  font-weight: 800;
}


/* Teaser preview card (still uses the background video behind it) */
.teaserMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.time {
    font-size: 12px;
    color: rgba(246, 248, 255, .70);
}

.note {
    font-size: 12px;
    color: rgba(246, 248, 255, .60);
}

/* Secondary links row */
.linksRow {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    gap: 16px;
    padding: 28px 26px;
}

.link {
  text-decoration: none;
  text-align: center;
  padding: 12px;
  border-radius: 50%;
  background: rgba(177, 39, 206, 0.61);
  height: 53px;
  width: 53px;

  /*font-size: 13px;*/
  /*color: rgba(246, 248, 255, .78);*/
  /*border: 1px solid rgba(255, 255, 255, .12);*/
  /*background: rgba(0, 0, 0, .10);*/
}

.link:hover,
.link:focus-visible {
    outline: none;
    /*background: rgba(0, 0, 0, .16);*/
}

.link--fb {
    background-color: rgb(8, 102, 255);
}

.link--ig {
  background:
    radial-gradient(circle at 30% 107%,
      #feda75 0%,
      #fa7e1e 25%,
      #d62976 50%,
      #962fbf 75%,
      #4f5bd5 100%
    );
}

.link--tt {
    background-color: #000;
}

.link--yt {
    background-color: #FF0033;
}

/* Sticky YouTube CTA */
.sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .55));
    /*backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);*/
}

.stickyInner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px;
    border-radius: 14px;
    /*border: 1px solid rgba(255, 255, 255, .16);*/
    border: 2px solid rgb(8, 102, 255);
    /*background: rgba(133, 31, 236, 0.48);*/
    background-color: rgb(8, 102, 255);
    /*color: var(--text);*/
    color: rgba(246, 248, 255, .86);
    text-decoration: none;
    /*font-weight: 800;*/
    letter-spacing: .2px;
}

.btn:hover,
.btn:focus-visible {
    outline: none;
    /*background: rgba(255, 255, 255, .18);*/
    border: 2px solid var(--stroke);
}

.btn.secondary {
    flex: 0 0 auto;
    padding-inline: 14px;
    background: rgba(255, 255, 255, .08);
    font-weight: 650;
}

@media (max-width: 760px) {
    .panel {
        /*margin-top: -160px;*/
    }
}

@media (min-width: 760px) {
    .wrap {
        padding: 22px 22px 92px;
    }

    .hero {
        padding: 26px 26px 18px;
    }

    .teaserMeta {
        padding: 14px 26px 18px;
    }

    /*
    .linksRow {
        gap: 20px;
        padding: 28px 26px 30px;
    }
    */

    .btn.secondary {
        padding-inline: 18px;
    }
}

.photo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}

.photo {
    height: 100%;
    max-width: 800px;
    width: 100%;
    background-color: #e0e0e0;
}

a svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.thumb-link {
  position: relative;
  display: inline-block;   /* or block */
  line-height: 0;          /* removes tiny gap under img */
  text-decoration: none;
}

.thumb-img {
  display: block;
  width: 100%;
  /*height: auto;*/
}

.thumb-overlay {
  position: absolute;
  inset: 0;                /* top/right/bottom/left: 0 */
  background: rgba(0,0,0,0.35);
  display: grid;
  place-items: center;     /* centers the icon */
  transition: background 160ms ease, opacity 160ms ease;
}

.thumb-icon {
  width: 64px;
  height: 64px;
  fill: white;
  opacity: 0.95;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  border-radius: 50%;
}

.thumb-icon--fb {
  background-color: rgb(8, 102, 255);
  border: 19px solid rgb(8, 102, 255);
}
.thumb-icon--ig {
  border: 19px solid 
    radial-gradient(circle at 30% 107%,
      #feda75 0%,
      #fa7e1e 25%,
      #d62976 50%,
      #962fbf 75%,
      #4f5bd5 100%
    );
  background:
    radial-gradient(circle at 30% 107%,
      #feda75 0%,
      #fa7e1e 25%,
      #d62976 50%,
      #962fbf 75%,
      #4f5bd5 100%
    );
}

.thumb-link:hover .thumb-overlay,
.thumb-link:focus-visible .thumb-overlay{
  background: rgba(0,0,0,0.5);
}

.thumb-link:focus-visible{
  outline: 3px solid rgba(255,255,255,0.85);
  outline-offset: 4px;
}

.fb-color {
  color: var(--fb-color);
}
.fb-bg {
  background-color: var(--fb-bg);
}
.fb-border-color {
  border: var(--fb-border);
}
.fb-border-color-hover:hover {
  border: var(--fb-border-hover);
}
