:root{
  --bg: #f6f7fb;
  --panel: #ffffff;
  --text: #0e1020;
  --muted: #6a6f86;
  --border: rgba(16,24,40,.10);
  --shadow: 0 10px 30px rgba(16,24,40,.10);
  --shadow2: 0 6px 20px rgba(16,24,40,.08);
  --radius: 18px;
  --radius2: 26px;
  --accent: #8d87e5;
  --accent2:#f072b2;
  --accent3:#1ec185;
  --danger:#e5484d;
  --focus: rgba(141,135,229,.25);
  --max: 1160px;
  --gap: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1100px 550px at 18% -10%, rgba(141,135,229,.25), transparent 60%),
              radial-gradient(900px 500px at 85% 0%, rgba(240,114,178,.22), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height:1.5;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.xlt-wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.xlt-sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.xlt-header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.xlt-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.xlt-brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}
.xlt-logo{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 26px rgba(141,135,229,.25);
  position:relative;
}
.xlt-logo:after{
  content:"";
  position:absolute; inset:10px;
  border-radius:12px;
  background:rgba(255,255,255,.35);
  filter: blur(.2px);
}
.xlt-brand__text{
  display:flex; flex-direction:column; line-height:1.1;
}
.xlt-brand__title{
  font-weight:800; letter-spacing:-.02em;
  font-size:15px;
}
.xlt-brand__tag{
  font-size:12px; color:var(--muted);
}

.xlt-nav{
  display:flex; align-items:center; gap:12px;
  flex:1;
  justify-content:flex-end;
}
.xlt-nav .menu{
  display:flex; align-items:center; gap:10px;
  list-style:none; padding:0; margin:0;
}
.xlt-nav .menu a{
  display:inline-flex; align-items:center;
  padding:10px 12px;
  border-radius:14px;
  color: rgba(14,16,32,.88);
  font-weight:700;
  font-size:13px;
  border:1px solid transparent;
}
.xlt-nav .menu a:hover{
  background: rgba(141,135,229,.10);
  border-color: rgba(141,135,229,.22);
}

.xlt-search{
  position:relative;
  width: clamp(220px, 28vw, 380px);
  margin-left:10px;
}
.xlt-search input{
  width:100%;
  padding:11px 12px 11px 38px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 18px rgba(16,24,40,.06);
  outline: none;
  font-weight:600;
}
.xlt-search input:focus{
  box-shadow: 0 0 0 6px var(--focus), 0 12px 22px rgba(16,24,40,.08);
  border-color: rgba(141,135,229,.35);
}
.xlt-search svg{
  position:absolute; left:12px; top:50%;
  transform: translateY(-50%);
  width:16px; height:16px;
  color: rgba(14,16,32,.55);
  pointer-events:none;
}

.xlt-burger{
  display:none;
  align-items:center; justify-content:center;
  width:44px; height:44px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 18px rgba(16,24,40,.06);
  cursor:pointer;
}
.xlt-burger:focus{outline:none; box-shadow:0 0 0 6px var(--focus)}
.xlt-burger span{
  width:18px; height:2px; background: rgba(14,16,32,.8);
  display:block; position:relative;
}
.xlt-burger span:before,.xlt-burger span:after{
  content:""; position:absolute; left:0; width:18px; height:2px;
  background: rgba(14,16,32,.8);
}
.xlt-burger span:before{top:-6px}
.xlt-burger span:after{top:6px}

/* Mobile drawer */
.xlt-drawer{
  display:none;
  position:fixed; inset:0;
  background: rgba(10,12,20,.35);
  backdrop-filter: blur(6px);
  z-index:60;
  padding:18px;
}
.xlt-drawer__panel{
  background: rgba(255,255,255,.96);
  border:1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  padding: 14px;
}
.xlt-drawer__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 6px 12px 6px;
}
.xlt-drawer__close{
  width:44px; height:44px; border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.xlt-drawer__close:focus{outline:none; box-shadow:0 0 0 6px var(--focus)}
.xlt-drawer .menu{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column;
  gap:8px;
}
.xlt-drawer .menu a{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.88);
  font-weight:800;
}
.xlt-drawer .xlt-search{width:100%; margin:10px 0 0 0;}

/* Hero */
.xlt-hero{
  margin: 18px 0 16px;
}
.xlt-hero__card{
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(141,135,229,.22), rgba(240,114,178,.16));
  border:1px solid rgba(141,135,229,.18);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.xlt-hero__card:before{
  content:"";
  position:absolute;
  inset:-100px -150px auto auto;
  width:340px; height:340px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 60%);
  transform: rotate(18deg);
  opacity:.55;
}
.xlt-hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  padding: 22px;
  position:relative;
}
.xlt-hero__title{
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing:-.03em;
  margin: 0 0 10px 0;
  font-weight: 900;
}
.xlt-hero__sub{
  color: rgba(14,16,32,.72);
  margin: 0 0 16px 0;
  font-weight:650;
}
.xlt-hero__cta{
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center;
}
.xlt-btn{
  display:inline-flex;
  align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(141,135,229,.28);
  background: rgba(255,255,255,.70);
  box-shadow: 0 10px 24px rgba(16,24,40,.08);
  font-weight:900;
  font-size:13px;
  cursor:pointer;
}
.xlt-btn:hover{transform: translateY(-1px)}
.xlt-btn:active{transform: translateY(0)}
.xlt-btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(141,135,229,.35);
  color:#fff;
  box-shadow: 0 16px 30px rgba(141,135,229,.28);
}
.xlt-pill{
  display:inline-flex;
  align-items:center; justify-content:center;
  padding: 9px 12px;
  border-radius: 999px;
  border:1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.75);
  color: rgba(14,16,32,.78);
  font-weight:800;
  font-size:12px;
}

.xlt-hero__right{
  display:flex; flex-direction:column; gap:12px;
  align-items:stretch;
  justify-content:center;
}
.xlt-stat{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,24,40,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(16,24,40,.06);
}
.xlt-stat__label{font-size:12px; color: rgba(14,16,32,.62); font-weight:900; letter-spacing:.02em}
.xlt-stat__value{font-size:18px; font-weight:950; letter-spacing:-.02em; margin-top:6px}
.xlt-stat__hint{font-size:12px; color: rgba(14,16,32,.58); margin-top:6px; font-weight:700}

/* Tabs */
.xlt-tabs{
  margin: 14px 0 18px;
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center;
}
.xlt-tab{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 20px rgba(16,24,40,.05);
  font-weight: 900;
  font-size: 13px;
  color: rgba(14,16,32,.72);
}
.xlt-tab:hover{border-color: rgba(141,135,229,.25)}
.xlt-tab.is-active{
  background: linear-gradient(135deg, rgba(141,135,229,.20), rgba(240,114,178,.14));
  border-color: rgba(141,135,229,.28);
  color: rgba(14,16,32,.92);
}

/* Grid */
.xlt-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  padding-bottom: 22px;
}
.xlt-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.10);
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(16,24,40,.06);
  overflow:hidden;
  position:relative;
  transition: transform .16s ease, box-shadow .16s ease;
}
.xlt-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16,24,40,.10);
}
.xlt-card__thumb{
  aspect-ratio: 16 / 9;
  width:100%;
  background: linear-gradient(135deg, rgba(141,135,229,.18), rgba(240,114,178,.12));
  position:relative;
  overflow:hidden;
}
.xlt-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.xlt-card__badge{
  position:absolute; left:12px; top:12px;
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: 0 10px 18px rgba(16,24,40,.06);
  font-weight: 950;
  font-size: 12px;
  color: rgba(14,16,32,.80);
}
.xlt-card__badge i{
  width:8px; height:8px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:inline-block;
  box-shadow: 0 10px 18px rgba(141,135,229,.25);
}
.xlt-card__body{padding: 12px 12px 14px}
.xlt-card__title{
  margin:0;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.01em;
  color: rgba(14,16,32,.92);
  line-height: 1.25;
}
.xlt-card__meta{
  margin-top:8px;
  display:flex; flex-wrap:wrap; gap:8px;
  align-items:center;
  color: rgba(14,16,32,.62);
  font-weight: 750;
  font-size: 12px;
}
.xlt-chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.78);
}

/* Lists section */
.xlt-3col{
  margin: 18px 0 24px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
}
.xlt-box{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.10);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 16px;
  overflow:hidden;
}
.xlt-box__title{
  margin:0 0 10px 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing:-.01em;
  display:flex; align-items:center; justify-content:space-between;
}
.xlt-box__title small{
  font-size:12px; color: rgba(14,16,32,.55); font-weight:850;
}
.xlt-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:10px;
}
.xlt-list a{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.75);
  font-weight: 900;
  font-size: 13px;
  color: rgba(14,16,32,.85);
}
.xlt-list a:hover{border-color: rgba(141,135,229,.22)}
.xlt-list a span{
  font-size:12px; color: rgba(14,16,32,.55); font-weight:900;
  background: rgba(141,135,229,.12);
  border: 1px solid rgba(141,135,229,.20);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Single */
.xlt-single{
  margin: 18px 0 26px;
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: var(--gap);
  align-items:start;
}
.xlt-panel{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.xlt-panel__pad{padding: 16px}
.xlt-h1{
  margin: 0 0 8px 0;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -.03em;
  font-weight: 950;
}
.xlt-submeta{
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center;
  color: rgba(14,16,32,.62);
  font-weight: 850;
  font-size: 12px;
  margin-top: 10px;
}

.xlt-overview{
  margin-top: 14px;
  color: rgba(14,16,32,.88);
  font-weight: 600;
  line-height: 1.8;
  font-size: 15px;
}
.xlt-overview a{color: var(--accent)}
.xlt-overview img{border-radius:16px; border:1px solid var(--border); box-shadow: var(--shadow2)}
.xlt-overview h1,.xlt-overview h2,.xlt-overview h3{letter-spacing:-.02em}

.xlt-sidebar .xlt-box{position:sticky; top: 92px;}

/* Player */
.xlt-player{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(16,24,40,.10);
  background: #0b0c10;
  box-shadow: 0 18px 46px rgba(16,24,40,.18);
}
.xlt-player .video-js{
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
}

/* Video.js light skin tweaks */
.video-js .vjs-control-bar{
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65));
}
.video-js .vjs-big-play-button{
  border:none !important;
  width: 88px !important;
  height: 88px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(141,135,229,.92), rgba(240,114,178,.92)) !important;
  box-shadow: 0 18px 40px rgba(141,135,229,.25);
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before{
  font-size: 44px !important;
  line-height: 88px !important;
}
.video-js .vjs-progress-holder{border-radius:999px}
.video-js .vjs-play-progress{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.video-js .vjs-slider{background-color: rgba(255,255,255,.22)}
.video-js .vjs-volume-level{
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}

.xlt-keyhint{
  margin-top:10px;
  display:flex; flex-wrap:wrap; gap:8px;
  align-items:center;
  color: rgba(14,16,32,.62);
  font-weight:850;
  font-size: 12px;
}
.xlt-kbd{
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(16,24,40,.12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 16px rgba(16,24,40,.06);
  font-weight: 950;
  color: rgba(14,16,32,.86);
}

/* Actor taxonomy */
.xlt-actor-hero{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.86);
  margin: 18px 0 16px;
}
.xlt-actor-hero__bg{
  height: 210px;
  background: linear-gradient(135deg, rgba(141,135,229,.30), rgba(240,114,178,.22));
  position:relative;
  overflow:hidden;
}
.xlt-actor-hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}
.xlt-actor-hero__bg:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(255,255,255,.92));
}
.xlt-actor-hero__row{
  display:flex; gap:14px; align-items:flex-end;
  padding: 0 16px 16px;
  margin-top:-42px;
  position:relative;
}
.xlt-actor-avatar{
  width:88px; height:88px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 16px 40px rgba(16,24,40,.18);
  background: rgba(255,255,255,.75);
  overflow:hidden;
}
.xlt-actor-avatar img{width:100%; height:100%; object-fit:cover}
.xlt-actor-name{
  margin: 0 0 4px 0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing:-.03em;
}
.xlt-actor-meta{color: rgba(14,16,32,.62); font-weight:850; font-size:12px}

/* Footer */
.xlt-footer{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  margin-top: 28px;
  padding: 22px 0;
}
.xlt-footer__inner{
  display:flex; flex-wrap:wrap;
  gap:12px;
  align-items:center; justify-content:space-between;
  color: rgba(14,16,32,.62);
  font-weight: 850;
  font-size: 12px;
}

/* WP Defaults */
.alignleft{float:left; margin:0 18px 18px 0}
.alignright{float:right; margin:0 0 18px 18px}
.aligncenter{display:block; margin: 0 auto 18px auto}
.wp-caption{max-width:100%}
.wp-caption-text{color: rgba(14,16,32,.62); font-weight:750; font-size:12px; margin-top:8px}

/* Responsive */
@media (max-width: 1100px){
  .xlt-grid{grid-template-columns: repeat(3, 1fr)}
  .xlt-single{grid-template-columns: 1fr}
  .xlt-sidebar .xlt-box{position:static}
  .xlt-hero__inner{grid-template-columns: 1fr}
  .xlt-search{width: clamp(200px, 32vw, 360px)}
}
@media (max-width: 820px){
  .xlt-grid{grid-template-columns: repeat(2, 1fr)}
  .xlt-nav .menu{display:none}
  .xlt-search{display:none}
  .xlt-burger{display:inline-flex}
  .xlt-3col{grid-template-columns: 1fr}
}
@media (max-width: 520px){
  .xlt-grid{grid-template-columns: 1fr}
  .xlt-brand{min-width:0}
  .xlt-brand__tag{display:none}
  .xlt-hero__inner{padding: 16px}
}
