:root{
  --mbcc-red:#c1121f;
  --mbcc-black:#0b0b0b;
  --mbcc-gold:#d4af37;
  --mbcc-gold-dark:#a8831e;
  --mbcc-offwhite:#f7f3e9;

  --maxw:1240px;
  --railw:320px;

  --s4:4px; --s8:8px; --s12:12px; --s16:16px; --s20:20px; --s24:24px;
  --s32:32px; --s40:40px; --s56:56px;

  --h1:36px;
  --h2:22px;
  --h3:16px;
  --body:16px;
  --small:14px;
  --meta:12px;

  --r14:14px;
  --r16:16px;

  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --shadow-soft: 0 8px 20px rgba(0,0,0,.35);

  --border: 1px solid rgba(247,243,233,.10);
  --border-strong: 1px solid rgba(212,175,55,.35);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  font-size: var(--body);
  line-height: 1.55;
  color: var(--mbcc-offwhite);
  background: var(--mbcc-black);
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(193,18,31,.12), rgba(193,18,31,0) 55%),
    repeating-linear-gradient(135deg, rgba(247,243,233,.06) 0 2px, rgba(0,0,0,0) 2px 14px),
    repeating-linear-gradient(45deg, rgba(247,243,233,.035) 0 2px, rgba(0,0,0,0) 2px 18px);
  opacity:.75;
  mix-blend-mode: screen;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  max-width: var(--maxw);
  margin:0 auto;
  padding: 0 var(--s24);
  position:relative;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,11,.72);
  border-bottom: var(--border);
}
.header__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--s16);
}
.brand{
  display:flex;
  align-items:center;
  gap: var(--s12);
  min-width: 220px;
}
.brand__mark{
  width:42px; height:42px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.40);
  background:
    radial-gradient(140% 140% at 20% 20%, rgba(212,175,55,.18), rgba(11,11,11,.0) 55%),
    linear-gradient(135deg, rgba(193,18,31,.35), rgba(11,11,11,.0));
  background-image: url('/assets/img/moemedia-logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  box-shadow: var(--shadow-soft);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__title{ font-weight:900; letter-spacing:.3px; font-size:15px; }
.brand__sub{ font-size:12px; opacity:.85; }

.nav{
  display:flex;
  align-items:center;
  gap: var(--s8);
  flex-wrap:nowrap;
  overflow:auto;
  scrollbar-width:none;
}
.nav::-webkit-scrollbar{ display:none; }
.nav a{
  font-size:15px;
  font-weight:600;
  padding: 10px 12px;
  border-radius:999px;
  border: 1px solid transparent;
  white-space:nowrap;
  opacity:.92;
}
.nav a:hover{
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
  opacity:1;
}

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 260px;
  justify-content:flex-end;
}
.iconbtn{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 12px;
  border: var(--border);
  background: rgba(247,243,233,.03);
  cursor:pointer;
}
.iconbtn:hover{
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
}
.btn{
  height:44px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 14px;
  border: var(--border-strong);
  background: rgba(212,175,55,.10);
  color: var(--mbcc-offwhite);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  box-shadow: var(--shadow-soft);
}
.btn:hover{
  background: rgba(212,175,55,.14);
  border-color: rgba(212,175,55,.55);
}
.btn--red{
  border-color: rgba(193,18,31,.55);
  background: rgba(193,18,31,.16);
}
.btn--red:hover{
  background: rgba(193,18,31,.20);
  border-color: rgba(193,18,31,.75);
}

main{ padding: var(--s24) 0 var(--s56); }

.layout{
  display:grid;
  grid-template-columns: 1fr var(--railw);
  gap: var(--s20);
  align-items:start;
}

.pagehead{
  margin-top: var(--s24);
  margin-bottom: var(--s24);
  border: var(--border);
  border-radius: var(--r16);
  background: rgba(247,243,233,.03);
  box-shadow: var(--shadow-soft);
  padding: var(--s16);
}
.pagehead h1{
  margin:0 0 var(--s8);
  font-size: var(--h1);
  line-height:1.15;
  font-weight: 900;
}
.pagehead p{
  margin:0;
  opacity:.90;
  max-width: 80ch;
}

.sectionbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: var(--s16);
  margin: 0 0 var(--s16);
}
.sectionbar h2{ margin:0; font-size: var(--h2); font-weight: 900; line-height:1.2; }

.filters{
  display:flex;
  gap: var(--s8);
  flex-wrap:wrap;
  justify-content:flex-end;
}
.pill{
  font-size:12px;
  font-weight:800;
  padding: 8px 12px;
  border-radius:999px;
  border: var(--border);
  background: rgba(247,243,233,.03);
  cursor:pointer;
  user-select:none;
}
.pill[aria-pressed="true"]{
  border-color: rgba(212,175,55,.55);
  background: rgba(212,175,55,.10);
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card{
  border: var(--border);
  border-radius: var(--r16);
  background: rgba(247,243,233,.03);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.25);
  background: rgba(212,175,55,.04);
}
.thumb{
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(247,243,233,.08);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(212,175,55,.12), rgba(0,0,0,0) 55%),
    linear-gradient(135deg, rgba(193,18,31,.22), rgba(0,0,0,0) 60%),
    rgba(0,0,0,.25);
  position:relative;
}
.thumb .duration{
  position:absolute;
  right: var(--s12);
  bottom: var(--s12);
  font-size:12px;
  font-weight:800;
  padding: 6px 10px;
  border-radius:999px;
  background: rgba(11,11,11,.72);
  border: 1px solid rgba(247,243,233,.12);
}
.card__body{ padding: 14px; }

.tagrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--s8);
  margin-bottom: var(--s8);
}
.tag{
  font-size:12px;
  font-weight:900;
  padding: 6px 10px;
  border-radius:999px;
  border: 1px solid rgba(212,175,55,.30);
  background: rgba(212,175,55,.08);
}
.tag--red{
  border-color: rgba(193,18,31,.45);
  background: rgba(193,18,31,.14);
}
.save{
  width:32px; height:32px;
  border-radius: 12px;
  border: var(--border);
  background: rgba(247,243,233,.03);
  display:grid; place-items:center;
  cursor:pointer;
}
.save:hover{
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
}

.title{
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 var(--s8);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height: 40px;
}
.meta{
  font-size:12px;
  font-weight:700;
  opacity:.85;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.adblock{
  margin: 22px 0;
  border-radius: var(--r16);
  border: 1px dashed rgba(247,243,233,.22);
  background: rgba(247,243,233,.02);
  padding: var(--s16);
  text-align:center;
  opacity:.92;
}
.adblock strong{ color: var(--mbcc-gold); }

.rail{
  position:sticky;
  top: 88px;
  display:flex;
  flex-direction:column;
  gap: var(--s16);
}
.railbox{
  border: var(--border);
  border-radius: var(--r16);
  background: rgba(247,243,233,.03);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}
.railbox h3{
  margin:0 0 var(--s12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing:.6px;
  text-transform: uppercase;
  opacity:.92;
}
.rail-list{ display:flex; flex-direction:column; gap:10px; }
.rail-item{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(0,0,0,.18);
  cursor:pointer;
}
.rail-item:hover{
  border-color: rgba(212,175,55,.22);
  background: rgba(212,175,55,.05);
}
.rail-thumb{
  width: 72px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 1px solid rgba(247,243,233,.10);
  background: rgba(0,0,0,.25);
  flex: 0 0 auto;
}
.rail-title{
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin:0;
  opacity:.98;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.joinform{ display:flex; flex-direction:column; gap: 12px; }
.label{ font-size: 13px; font-weight: 800; opacity:.92; margin-bottom:-6px; }
.input{
  height:44px;
  border-radius: 14px;
  border: 1px solid rgba(247,243,233,.14);
  background: rgba(11,11,11,.55);
  color: var(--mbcc-offwhite);
  padding: 0 12px;
  outline:none;
}
.input:focus{
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 4px rgba(212,175,55,.10);
}

.notice{
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(212,175,55,.06);
  padding: 14px;
  border-radius: var(--r16);
  margin: var(--s16) 0;
}

footer{
  border-top: var(--border);
  padding: var(--s32) 0;
  background: rgba(0,0,0,.18);
}
.footergrid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--s24);
}
.foothead{ font-weight: 900; margin:0 0 var(--s8); }
.footmeta{ opacity:.85; margin:0; max-width: 60ch; }
.footlinks{
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  opacity:.92;
}
.footlinks a:hover{ color: var(--mbcc-gold); }

.modal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.72);
  z-index:999;
  padding: var(--s24);
}
.modal[aria-hidden="false"]{ display:grid; }
.modal__panel{
  width:min(980px, 96vw);
  border-radius: var(--r16);
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(11,11,11,.90);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.modal__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(247,243,233,.10);
}
.modal__title{
  margin:0;
  font-size: 14px;
  font-weight: 900;
  opacity:.92;
}
.closebtn{
  width:40px; height:40px;
  border-radius: 12px;
  border: var(--border);
  background: rgba(247,243,233,.03);
  color: var(--mbcc-offwhite);
  cursor:pointer;
}
.closebtn:hover{
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
}
.modal__media{ aspect-ratio: 16 / 9; background:#000; }
.modal__media iframe{ width:100%; height:100%; border:0; display:block; }

.shortswrap{ display:grid; grid-template-columns: 1fr; gap: var(--s16); }
.shortcard{
  border: var(--border);
  border-radius: var(--r16);
  background: rgba(247,243,233,.03);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.shortcard__media{
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(212,175,55,.10), rgba(0,0,0,0) 55%),
    linear-gradient(135deg, rgba(193,18,31,.20), rgba(0,0,0,0) 60%),
    rgba(0,0,0,.25);
  position:relative;
}
.shortcard__actions{ display:flex; gap: var(--s12); flex-wrap:wrap; padding: 14px; }

@media (max-width: 1199px){
  :root{ --h1:30px; }
  .layout{ grid-template-columns: 1fr; }
  .rail{ position:static; top:auto; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .header__actions{ min-width:auto; }
  .brand{ min-width:auto; }
}
@media (max-width: 767px){
  :root{ --h1:24px; }
  .container{ padding: 0 16px; }
  .header__inner{ height:64px; }
  .nav{ display:none; }
  .grid{ grid-template-columns: 1fr; gap: 14px; }
  .footergrid{ grid-template-columns: 1fr; }
}

/* HERO BANNER STRIP (MoeMedia) */
.hero-strip{
  position: sticky;
  top: 72px;
  z-index: 40;
  border-bottom: 1px solid rgba(247,243,233,.10);
  background: rgba(11,11,11,.70);
  backdrop-filter: blur(10px);
}
.hero-strip__inner{
  padding: 10px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.hero-strip__left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.hero-strip__kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.45);
  background: rgba(212,175,55,.10);
  color: var(--mbcc-offwhite);
}
.hero-strip__tagline{
  font-size: 14px;
  font-weight: 700;
  opacity: .92;
}
.hero-strip__right{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media (max-width: 1199px){
  .hero-strip{ top: 72px; }
  .hero-strip__inner{ padding: 10px 20px; }
}
@media (max-width: 767px){
  .hero-strip{ top: 64px; }
  .hero-strip__inner{ padding: 10px 16px; }
  .hero-strip__tagline{ font-size: 13px; }
}


/* Editorial intro + compliance disclaimers */
.editorial-intro{
  margin: 0 0 var(--s32);
  border: var(--border);
  border-radius: var(--r16);
  background: rgba(247,243,233,.03);
  box-shadow: var(--shadow-soft);
  padding: var(--s16);
}
.editorial-intro h2{
  margin:0 0 var(--s8);
  font-size: var(--h2);
  font-weight:900;
  line-height:1.2;
}
.editorial-intro p{
  margin:0 0 var(--s12);
  opacity:.92;
  max-width: 90ch;
}
.editorial-intro p:last-child{ margin-bottom:0; }

.disclaimer{
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(212,175,55,.06);
  padding: 12px 14px;
  border-radius: var(--r16);
}
