:root{
      /* Brand palette */
      --bg: #0B0D14;
      --panel: rgba(255,255,255,.06);
      --panel2: rgba(255,255,255,.04);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.70);
      --hair: rgba(255,255,255,.14);

      --purple: #7A1FA2;
      --magenta: #C81BA8;
      --hotpink: #F03B9C;
      --neon: #FF6FB7;

      --radius: 18px;
      --shadow: 0 18px 60px rgba(0,0,0,.45);
      --max: 1100px;

      --grad: linear-gradient(135deg, var(--purple), var(--magenta), var(--hotpink), var(--neon));
    }

    *{box-sizing:border-box}
    html,body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color:var(--text);

      /* Seamless, repeat-safe background */
      background:
        radial-gradient(1200px 700px at 10% 15%, rgba(255,111,183,.20), transparent 60%),
        radial-gradient(1000px 600px at 85% 30%, rgba(122,31,162,.22), transparent 62%),
        radial-gradient(1100px 700px at 50% 100%, rgba(240,59,156,.16), transparent 65%),
        linear-gradient(180deg, #0B0D14 0%, #0E1020 45%, #0B0D14 100%);
      background-repeat: repeat;
      background-attachment: fixed;

      line-height:1.5;
      letter-spacing:.2px;
    }
    body {
      display: flex;
      flex-direction: column;
      overflow: hidden; /* Hide the vertical scrollbar */
      overflow-y: scroll; /* Enable vertical scrolling */
      min-height: 100vh;
    }
    a{color:inherit}
    .wrap{max-width:var(--max); margin:0 auto; padding:32px 20px 70px}

    .hero{
      border:1px solid var(--hair);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius: 26px;
      padding: 28px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(900px 380px at 10% 10%, rgba(255,111,183,.25), transparent 55%),
        radial-gradient(700px 360px at 90% 40%, rgba(122,31,162,.22), transparent 58%);
      pointer-events:none;
      filter: blur(.2px);
    }
    .hero > *{position:relative}

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 8px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(11,13,20,.35);
      font-size: 12px;
      color: rgba(255,255,255,.80);
      margin-bottom: 14px;
    }
    .dot{width:9px;height:9px;border-radius:99px;background: var(--grad)}

    .hero h1{
      margin: 0 0 10px;
      font-size: 38px;
      line-height: 1.08;
      letter-spacing: .2px;
    }
    .hero h1 span{background: var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent}

    .lead{
      margin: 0 0 18px;
      max-width: 72ch;
      color: rgba(255,255,255,.78);
      font-size: 15px;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
      align-items: start;
    }
    .grid > .left{ grid-column: span 7; }
    .grid > .right{ grid-column: span 5; }

    .card{
      border:1px solid var(--hair);
      background: rgba(255,255,255,.04);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 14px 45px rgba(0,0,0,.35);
    }
    .card h2, .card h3, .card h4{margin:0 0 8px}
    .card p{margin:0 0 10px; color: var(--muted); font-size: 13px}

    .btnx{
      appearance:none;
      border:1px solid var(--hair);
      background: rgba(255,255,255,.04);
      color:var(--text);
      padding:10px 12px;
      border-radius:12px;
      font-weight:650;
      font-size:13px;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .btnx:hover{transform: translateY(-1px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.20)}
    .btnx.primary{background: var(--grad); border-color: transparent}

    .spacer{height:18px}

    /* Mobile */
    @media (max-width: 920px){
      .grid{grid-template-columns: 1fr;}
      .grid > .left,
      .grid > .right{ grid-column: auto; }
      .hero h1{font-size: 32px;}
    }

    /* Make bootstrap container not conflict if used inside includes */
    .container{max-width: var(--max);}

    /* Optional: make the SMP section blend better */
    .mc-related{margin-top: 18px;}
    .mc-box{
      border:1px solid var(--hair);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 14px 45px rgba(0,0,0,.35);
    }

/* ---------------------------
   Branded NAV (works with your existing markup)
---------------------------- */
.brand-nav{
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) !important;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.brand-nav .nav-link{
  color: rgba(255,255,255,.84) !important;
  border-radius: 12px;
  margin: 2px 2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.brand-nav .nav-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
}

.brand-nav .nav-link.active,
.brand-nav .nav-link[aria-current="page"]{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.brand-nav .container{
  max-width: var(--max);
}

/* ---------------------------
   Branded FOOTER (skins your current footer markup)
---------------------------- */
.brand-footer{
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  background:
    radial-gradient(900px 280px at 15% 0%, rgba(255,111,183,.14), transparent 60%),
    radial-gradient(700px 260px at 85% 10%, rgba(122,31,162,.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)) !important;
}

.brand-footer footer{
  color: rgba(255,255,255,.72);
}

.brand-footer h5{
  color: rgba(255,255,255,.90);
  letter-spacing: .3px;
}

.brand-footer .nav-link{
  color: rgba(255,255,255,.70) !important;
  padding: .25rem 0;
}

.brand-footer .nav-link:hover{
  color: rgba(255,255,255,.92) !important;
}

.brand-footer .border-top{
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

.brand-footer .link-body-emphasis{
  color: rgba(255,255,255,.84) !important;
}

.brand-footer .link-body-emphasis:hover{
  color: #FF6FB7 !important;
}

.brand-footer a.text-decoration-none{
  color: rgba(255,255,255,.86) !important;
}
.brand-footer a.text-decoration-none:hover{
  color: #FF6FB7 !important;
}

.video-embed{
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;            /* modern browsers */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
}

.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------
   Branded Modal (Cookie modal / any Bootstrap modal)
---------------------------- */
.modal-content{
  background:
    radial-gradient(900px 320px at 15% 0%, rgba(255,111,183,.10), transparent 60%),
    radial-gradient(800px 320px at 85% 10%, rgba(122,31,162,.10), transparent 62%),
    linear-gradient(180deg, #0E1020, #0B0D14) !important;

  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 20px !important;
  box-shadow: 0 22px 80px rgba(0,0,0,.65) !important;
  color: rgba(255,255,255,.92);
  overflow: hidden;
}

.modal-body{
  padding: 18px 18px 12px !important;
  color: rgba(255,255,255,.78);
}

.modal-body h2,
.modal-body h3{
  color: rgba(255,255,255,.92);
  margin: 14px 0 8px;
  letter-spacing: .2px;
}

.modal-body p{
  margin: 0 0 10px;
  line-height: 1.55;
}

.modal-body ul{
  margin: 0 0 12px 18px;
  color: rgba(255,255,255,.78);
}

.modal-body a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,111,183,.35);
}
.modal-body a:hover{
  color: #FF6FB7;
  border-bottom-color: rgba(255,111,183,.65);
}

/* Optional helpers if you use these classes */
.text-bold{font-weight: 700;}
.text-italic{font-style: italic;}

/* Footer + button */
.modal-footer{
  border-top: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(0,0,0,.16);
  padding: 12px 18px !important;
}

/* Brand primary button (works with Bootstrap .btn.btn-primary) */
.btn.btn-primary{
  background: var(--grad) !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-weight: 700;
  padding: 10px 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.btn.btn-primary:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Make modal wider on desktop and fit nicely on mobile */
.modal-dialog{
  max-width: min(860px, 94vw) !important;
}

/* ---------------------------
   Global Scrollbar Styling
---------------------------- */
::-webkit-scrollbar{
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track{
  background: #0B0D14;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(
    180deg,
    #7A1FA2,
    #C81BA8,
    #F03B9C
  );
  border-radius: 14px;
  border: 3px solid #0B0D14;
}

::-webkit-scrollbar-thumb:hover{
  filter: brightness(1.15);
}

::-webkit-scrollbar-corner{
  background: #0B0D14;
}
/* Firefox scrollbar support */
*{
  scrollbar-width: thin;
  scrollbar-color: #F03B9C #0B0D14;
}

@media (hover: none){
  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }
}
