/* Premium light glass */
:root{
  --bg1:#dff3ff; --bg2:#e8fff0;
  --text:#0b1220; --muted:rgba(11,18,32,.65);
  --card:rgba(255,255,255,.55);
  --stroke:rgba(255,255,255,.75);
  --shadow: 0 18px 40px rgba(2,6,23,.12);
  --primary:#2E8B57;
  --radius:28px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:var(--font); color:var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, var(--bg1), transparent 60%),
              radial-gradient(1200px 700px at 90% 10%, var(--bg2), transparent 60%),
              linear-gradient(180deg, #f7fbff, #f3fff8);
  overflow-x:hidden;
}
.wrap{max-width:1200px; margin:0 auto; padding:28px}
.phone{width:min(420px,100%); margin:0 auto;}
.glass{background:var(--card); border:1px solid var(--stroke); box-shadow:var(--shadow); backdrop-filter: blur(14px);}
.header{display:flex; align-items:center; justify-content:space-between; padding:12px 10px 10px; gap:10px;}
.brand{display:flex; align-items:center; gap:10px}
.logo{width:34px; height:34px; border-radius:12px;
  background: radial-gradient(circle at 35% 25%, #bfffd6, #54d18f 35%, #2E8B57 75%);
  box-shadow: 0 10px 22px rgba(46,139,87,.22);}
.brandTitle{font-weight:900}
.brandSub{font-size:12px; color:var(--muted); margin-top:2px}
.pill{display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.95); font-weight:900;}
.card{border-radius:var(--radius); padding:16px; margin-top:12px}
.h1{font-size:28px; font-weight:950; margin:0 0 6px}
.p{margin:0; color:var(--muted); line-height:1.35}
.btn{border:0; border-radius:16px; padding:12px 14px; font-weight:950; cursor:pointer; transition:.15s transform, .15s filter;}
.btn:active{transform:scale(.98)}
.btn.primary{background:var(--primary); color:white; box-shadow:0 10px 24px rgba(46,139,87,.25)}
.btn.ghost{background:rgba(255,255,255,.75); border:1px solid rgba(255,255,255,.95)}
.input{width:100%; padding:12px 14px; border-radius:14px; border:1px solid rgba(255,255,255,.98); background:rgba(255,255,255,.65); outline:none; font-weight:850;}
.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.hr{height:1px; background:rgba(255,255,255,.9); margin:12px 0}
.toast{position:fixed; left:50%; bottom:16px; transform:translateX(-50%); background:rgba(15,23,42,.92); color:white;
  padding:10px 12px; border-radius:12px; box-shadow:0 12px 30px rgba(0,0,0,.25); display:none; z-index:99; max-width:min(520px, 92vw); font-weight:900;}
.kpi{display:flex; gap:10px; margin-top:10px; flex-wrap:wrap}
.kpi .pill{font-size:13px}
.sectionGrid{display:grid; gap:12px}
.sectionItem{border-radius:22px; padding:14px}
.sectionItem .title{font-weight:950; font-size:16px}
.sectionItem .desc{color:var(--muted); font-weight:750; margin-top:6px; font-size:13px; line-height:1.35}


/* ==== Desktop Pro Layout + Hero Cards (2025-12) ==== */
:root{
  --brand:#2E8B57;
  --ink:#0f1b16;
  --glass: rgba(255,255,255,.74);
  --glass2: rgba(255,255,255,.58);
  --stroke: rgba(255,255,255,.86);
  --shadow: 0 22px 55px rgba(0,0,0,.14);
  --shadow2: 0 34px 78px rgba(0,0,0,.18);
}
body{ background-attachment: fixed; }
.phone.app-shell{ width: min(1200px, calc(100vw - 56px)); }
@media (min-width: 900px){
  .phone.app-shell{ padding: 22px 22px 40px; }
  .card{ border-radius: 26px !important; }
  .topbar{ padding: 16px 18px !important; }
  .profile-card{ padding: 18px !important; }
  .sectionGrid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
}
@media (min-width: 1200px){
  .sectionGrid{ gap:26px; }
}
.logo-img{
  width:48px;height:48px;object-fit:contain;border-radius:16px;
  background:#fff;padding:7px;
  box-shadow: 0 10px 26px rgba(0,0,0,.14), inset 0 0 0 1px rgba(255,255,255,.85);
}
.date-box{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:18px;
  font-size:13px;font-weight:950;color:var(--ink);
  background: var(--glass);
  border:1px solid var(--stroke);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 10px 22px rgba(0,0,0,.10);
}
.date-box .date-icon{ font-size:16px; }
.hero-card{
  position:relative;
  height: 320px;
  border-radius: 30px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.65);
  transform: translateZ(0);
  transition: .25s ease;
}
@media (max-width: 520px){ .hero-card{ height: 250px; } }
.hero-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow2); }
.hero-card .hero-img{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:saturate(1.12) contrast(1.04);
  transform:scale(1.04);
}
.hero-card .hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.78));
}
.hero-card .hero-body{
  position:absolute; left:18px; right:18px; bottom:16px;
  color:#fff;
}
.hero-card h3{ margin:0; font-size:22px; font-weight:1000; letter-spacing:.2px; }
.hero-card p{ margin:8px 0 14px; font-size:13px; opacity:.92; max-width: 34ch; }
.hero-card .cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(46,139,87,.96);
  border:1px solid rgba(255,255,255,.25);
  box-shadow: 0 12px 26px rgba(0,0,0,.26);
  font-weight:950;
}
.hero-card .cta span{ font-size:18px; line-height:0; }
.hero-card.online .hero-img{ background-image:url('/assets/img/online.jpg'); }
.hero-card.exam .hero-img{ background-image:url('/assets/img/exam.jpg'); }
.hero-card.play .hero-img{ background-image:url('/assets/img/play.jpg'); }


/* ==== Premium polish pack ==== */
:root{
  --bg1:#e8fff6;
  --bg2:#e9f3ff;
  --glow: rgba(46,139,87,.22);
}
.bg{
  position:fixed; inset:0; z-index:-2;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(46,139,87,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(72,126,255,.16), transparent 55%),
    radial-gradient(800px 600px at 70% 80%, rgba(255,179,71,.12), transparent 60%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}
.card{
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(255,255,255,.78) !important;
}
.card::after{
  content:'';
  position:absolute; inset:0;
  pointer-events:none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent 45%, rgba(255,255,255,.20));
  opacity:.55;
}
.topbar{
  position:relative;
  overflow:hidden;
}
.topbar::before{
  content:'';
  position:absolute; inset:-2px;
  background: radial-gradient(600px 140px at 30% 0%, rgba(46,139,87,.22), transparent 60%),
              radial-gradient(600px 140px at 70% 0%, rgba(72,126,255,.18), transparent 60%);
  opacity:.75;
  pointer-events:none;
}
.btn, button{
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover, button:hover{ transform: translateY(-2px); filter:saturate(1.06); }
.btn:active, button:active{ transform: translateY(0px) scale(.99); }

.hero-card{
  border: 1px solid rgba(255,255,255,.72);
}
.hero-card::after{
  content:'';
  position:absolute; inset:-1px;
  background: radial-gradient(500px 200px at 20% 20%, rgba(255,255,255,.22), transparent 60%);
  pointer-events:none;
}
.sectionGrid{
  margin-top: 16px;
}
@media (min-width: 900px){
  .hero-card{ height: 360px; }
  .hero-card h3{ font-size: 24px; }
  .hero-card p{ font-size: 13.5px; }
}

/* Hero media image fallback (ensures image shows even if background-image fails) */
.hero-card{ display:block; text-decoration:none; color:inherit; }
.hero-media{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.04);
}
.hero-kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  font-weight:900; font-size:12px;
  margin-bottom:10px;
}
.hero-kicker span{ opacity:.92; }

/* layout fix */
.phone:not(.app-shell){width:min(420px,100%); margin:0 auto;}
.phone.app-shell{width:100%; margin:0 auto;}


/* Hero section cards (premium) */
.sectionGrid{display:grid; gap:18px}
@media(min-width:780px){ .sectionGrid{grid-template-columns:repeat(3,1fr);} }
.hero-card{
  display:block; position:relative; overflow:hidden;
  border-radius:24px; background:rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.75);
  box-shadow: 0 18px 40px rgba(2,6,23,.10);
  text-decoration:none; color:var(--text);
  transform: translateZ(0);
}
.hero-media{height:180px; width:100%; overflow:hidden; position:relative;}
.hero-media img{width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.02); transition:transform .35s ease;}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);}
.hero-body{padding:16px 16px 14px; display:grid; gap:8px}
.hero-title{font-weight:950; font-size:18px; letter-spacing:.2px}
.hero-desc{color:rgba(11,18,32,.72); font-size:13px; line-height:1.35}
.hero-cta{
  margin-top:6px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 14px; border-radius:16px;
  background:linear-gradient(135deg, rgba(46,139,87,.95), rgba(46,139,87,.78));
  color:#fff; font-weight:900;
}
.hero-pill{display:inline-flex; align-items:center; gap:8px}
.hero-card:hover .hero-media img{transform:scale(1.08)}
.hero-card:hover{transform:translateY(-2px)}
.hero-card:active{transform:translateY(0)}


/* ========== SUPER PREMIUM COMPACT + 3D (override) ========== */
:root{
  --cardPad: 16px;
  --radiusXL: 24px;
  --radiusL: 18px;
  --shadowA: 0 18px 50px rgba(0,0,0,.10);
  --shadowB: 0 10px 26px rgba(0,0,0,.08);
  --stroke: rgba(255,255,255,.55);
  --glass: rgba(255,255,255,.72);
  --glass2: rgba(255,255,255,.58);
  --txt: #0d1b16;
  --muted2:#5c6b65;
}

/* Seasonal theme (auto by seasons.js) */
html[data-season="winter"]{ --bg1:#dff3ff; --bg2:#e9fff3; --accent:#2E8B57; }
html[data-season="spring"]{ --bg1:#e8fff2; --bg2:#e7f3ff; --accent:#2E8B57; }
html[data-season="summer"]{ --bg1:#f1fff0; --bg2:#e8fbff; --accent:#2E8B57; }
html[data-season="autumn"]{ --bg1:#fff3e6; --bg2:#eafff6; --accent:#2E8B57; }

html.season-swap .bg::before{ opacity:.45; transform: scale(1.03); }
.season-canvas{
  position:fixed; inset:0;
  z-index:0; pointer-events:none;
  mix-blend-mode: normal;
  opacity:.55;
  filter: blur(.2px);
}

/* Make main layout compact + centered on PC */
.shell{
  width:min(1200px, calc(100vw - 40px));
  margin: 22px auto 48px;
}
@media (max-width: 560px){
  .shell{ width: calc(100vw - 20px); margin: 12px auto 24px; }
}
.topbar{
  padding: 10px 12px !important;
  border-radius: var(--radiusXL) !important;
}
.datebox{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  box-shadow: var(--shadowB);
  border: 1px solid var(--stroke);
}

/* HERO GRID */
.hero-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 0 0;
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-card{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: stretch;
  min-height: 150px;
  padding: 14px;
  border-radius: var(--radiusXL);
  text-decoration:none;
  color: var(--txt);
  background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: var(--shadowA);
  transform-style: preserve-3d;
  will-change: transform;
  position:relative;
  overflow:hidden;
}
.hero-card::after{
  content:"";
  position:absolute; inset:-80px;
  background: radial-gradient(circle at 30% 20%, rgba(46,139,87,.18), transparent 55%),
              radial-gradient(circle at 85% 60%, rgba(0,140,255,.12), transparent 50%);
  opacity:.9;
  pointer-events:none;
}
.hero-card:hover{ box-shadow: 0 24px 70px rgba(0,0,0,.14); }
.hero-card:active{ transform: scale(.99); }

.hero-media{
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.hero-media img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.05);
}
.hero-shine{
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 55%);
  mix-blend-mode: overlay;
}
.hero-badge{
  position:absolute; left:10px; top:10px;
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.hero-badge .emoji{ font-size: 16px; }
.hero-badge .txt{ font-size: 12px; letter-spacing: .08em; color: rgba(13,27,22,.70); }

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 2px 2px 2px 0;
}
.hero-content h3{
  margin:0;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.hero-content p{
  margin:6px 0 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.35;
  max-width: 42ch;
}
.hero-cta{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(46,139,87,1), rgba(46,139,87,.82));
  color:#fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(46,139,87,.25);
  border: 1px solid rgba(255,255,255,.25);
}
.hero-card:hover .hero-media img{ transform: scale(1.06); transition: transform .45s ease; }

/* Compact cards on mobile */
@media (max-width: 560px){
  .hero-card{ grid-template-columns: 120px 1fr; min-height: 132px; padding: 12px; }
  .hero-content h3{ font-size: 16px; }
  .hero-content p{ font-size: 12px; }
  .hero-cta{ padding: 9px 12px; }
}

/* Respect reduce motion */
@media (prefers-reduced-motion: reduce){
  .season-canvas{ display:none; }
  .hero-card, .hero-card:hover, .hero-media img{ transition:none !important; }
}


/* ===== layout fixes for PC center + compact ===== */
.wrap{ position:relative; z-index:1; padding: 22px 20px 60px; }
.phone.app-shell{ width: min(1180px, 100%); max-width:none !important; min-width: 0 !important; }
@media (max-width: 600px){
  .wrap{ padding: 12px 10px 30px; }
  .phone.app-shell{ width: 100%; }
}

/* Header frame + date/time badge */
.glass.header{
  padding: 12px 14px !important;
  border-radius: var(--radiusXL) !important;
}
.brandRow{ align-items:center; gap:12px; }
.brandTitle{ font-size: 18px !important; letter-spacing:-0.02em; }
.brandSub{
  display:inline-flex;
  margin-top: 2px;
  padding: 8px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowB);
  color: rgba(13,27,22,.72);
}

/* Cards grid should be centered and use full width on PC */
.sectionGrid.hero-grid{ width:100%; }

.hero-media,.hero-content{position:relative;z-index:2;}


/* ===== Premium HERO cards v2 (image always visible + compact) ===== */
.sectionGrid.hero-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 14px;
}
@media (max-width: 980px){
  .sectionGrid.hero-grid{ grid-template-columns:1fr; gap:14px; }
}
.hero-card{
  position:relative;
  overflow:hidden;
  height: 240px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.52);
  background: rgba(255,255,255,.22);
  box-shadow: 0 22px 60px rgba(2,6,23,.18);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  text-decoration:none;
  color: #fff;
}
@media (max-width: 520px){ .hero-card{ height: 220px; border-radius: 24px; } }

.hero-card .hero-media{ position:absolute; inset:0; }
.hero-card .hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.hero-card .hero-shade{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 300px at 20% 0%, rgba(46,139,87,.55), transparent 60%),
    linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.78));
}

.hero-card .hero-content{
  position:absolute; inset:0;
  padding: 18px 18px 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card .hero-top{ display:flex; justify-content: space-between; align-items:center; }
.hero-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero-pill .emoji{ font-size: 16px; line-height: 1; }

.hero-card .hero-main{ margin-top: 2px; }
.hero-card h3{
  margin:0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.hero-card p{
  margin: 6px 0 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.90);
  max-width: 34ch;
}

.hero-card .hero-bottom{ margin-top:auto; display:flex; justify-content:flex-start; }
.hero-cta{
  display:inline-flex; align-items:center; gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(46,139,87,.92);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 38px rgba(46,139,87,.25);
  font-weight: 950;
}
.hero-cta span{ opacity:.92; }

.hero-card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 75px rgba(2,6,23,.22);
}
.hero-card:active{ transform: translateY(-2px) scale(.995); }

/* PC container: true center + breathing room */
@media (min-width: 980px){
  .phone{
    max-width: 1200px;
    width: min(1200px, calc(100vw - 80px));
    margin: 36px auto;
  }
}


/* ===== Premium 9:16 Poster Cards (PC + Mobile) ===== */
.hero-grid{
  display:flex;
  gap:18px;
  align-items:stretch;
  overflow-x:auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.hero-grid::-webkit-scrollbar{height:10px}
.hero-grid::-webkit-scrollbar-thumb{background:rgba(0,0,0,.12); border-radius:999px}

.poster-card{
  scroll-snap-align:center;
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 280px); /* smaller on PC, still responsive */
}
@media (max-width: 980px){
  .poster-card{ width: min(72vw, 270px); }
}
@media (max-width: 520px){
  .hero-grid{ gap:14px; padding-bottom: 12px; }
  .poster-card{ width: min(82vw, 300px); } /* phone hero feel */
}

/* 9:16 frame */
.poster-frame{
  position:relative;
  width:100%;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow:hidden;
  background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.92), rgba(255,255,255,.35));
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.poster-card:hover .poster-frame{
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
@media (hover:none){
  .poster-card:hover .poster-frame{transform:none}
}

.poster-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.poster-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(140% 120% at 20% 10%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%),
    radial-gradient(120% 120% at 70% 85%, rgba(46,139,87,.30), rgba(46,139,87,0) 52%),
    linear-gradient(180deg, rgba(0,0,0,.00) 35%, rgba(0,0,0,.44) 100%);
}

.poster-badge{
  position:absolute;
  left:14px; top:14px;
  padding:8px 10px;
  border-radius: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  text-transform: uppercase;
}

.poster-play{
  position:absolute;
  left:50%;
  top:50%;
  width:66px;
  height:66px;
  border-radius: 999px;
  transform: translate(-50%,-50%) scale(.92);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  cursor:pointer;
  opacity:0;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.poster-play::before{
  content:'';
  position:absolute;
  left: 30px;
  top: 22px;
  width:0;height:0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(255,255,255,.95);
}
.poster-card:hover .poster-play{
  opacity:1;
  transform: translate(-50%,-50%) scale(1);
}
.poster-play:hover{
  background: rgba(46,139,87,.32);
  transform: translate(-50%,-50%) scale(1.06);
}
@media (hover:none){
  .poster-play{ opacity: 1; transform: translate(-50%,-50%) scale(.98); }
}

/* Carousel dots */
.carouselDots{
  display:flex;
  justify-content:center;
  gap:10px;
  padding: 10px 0 2px;
}
.carouselDots .dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.carouselDots .dot.active{
  width:26px;
  background: rgba(46,139,87,.55);
  border-color: rgba(46,139,87,.15);
}

.sectionHead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}
.sectionTitle{font-weight:950}
.sectionHint{color:var(--muted); font-size:12px}
@media (max-width:520px){ .sectionHint{display:none} }

/* Compact profile chips */
.profile-compact .nameRow{display:flex; gap:10px; flex-wrap:wrap}
.profile-compact .metaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.profile-compact .chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}
.profile-compact .chip-strong{
  font-weight: 950;
  font-size: 16px;
  padding: 10px 14px;
}
.kpi-compact{margin-top:12px}
@media (min-width: 980px){
  .profile-compact{display:flex; align-items:center; justify-content:space-between; gap:16px}
  .profile-compact .profile-top{display:flex; flex-direction:column}
  .kpi-compact{margin-top:0}
}
/* Touch devices: no hover => always show play */
@media (hover: none){
  .poster-play{opacity:1}
}

/* Make main container truly centered on wide screens */
.phone.app-shell{
  max-width: 1240px;
  margin-left:auto;
  margin-right:auto;
}
