/* SOURCE: studio22-core.css?v=26.3.0 */
/* Ali963sy Studio v22.0 Public Core CSS */

/* ===== SOURCE: studio.css ===== */
/**
 * studio.css v15 — Unified Studio Styles 2026
 */

/* ===== CSS Variables مشتركة ===== */
:root {
  --primary: #e63946;
  --primary-dark: #c81e32;
  --primary-glow: rgba(230, 57, 70, 0.3);
  --bg: #050506;
  --studio-safe-bottom: max(16px, env(safe-area-inset-bottom));
}

/* ===== Reset أساسي ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overscroll-behavior-y: none; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
img, video, iframe { max-width: 100%; display: block; }

/* ===== Lazy Load Fade ===== */
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img.studio-img-loaded { opacity: 1; }

/* ===== Reveal Animation ===== */
.fx-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fx-reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fx-reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== شريط التنقل السفلي ===== */
.studio-nav-trigger {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: var(--studio-safe-bottom);
  width: 54px; height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(9,10,12,.88);
  backdrop-filter: blur(20px);
  color: #fff;
  z-index: 8000;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 16px 45px rgba(0,0,0,.4);
  transition: .25s;
  font-size: 1.05rem;
}
.studio-nav-trigger:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.studio-nav-panel {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: calc(var(--studio-safe-bottom) + 64px);
  width: min(360px, calc(100vw - 32px));
  padding: 12px;
  border-radius: 24px;
  z-index: 7999;
  background: rgba(8,9,11,.95);
  backdrop-filter: blur(26px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transform: translateY(12px) scale(.98);
  transition: .22s;
}
.studio-nav-panel.open {
  opacity: 1; visibility: visible;
  transform: none;
}
.studio-nav-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 7px 12px;
}
.studio-nav-head strong { font-size: .88rem; color: #fff; }
.studio-nav-head small { color: #777; font-size: .68rem; }
.studio-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.studio-nav-grid a {
  min-height: 72px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(255,255,255,.035);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: #d8d9dc;
  font-size: .75rem; font-weight: 800;
  transition: .2s; text-decoration: none;
}
.studio-nav-grid a i { font-size: 1.05rem; color: var(--primary); }
.studio-nav-grid a:hover,
.studio-nav-grid a.active {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  border-color: color-mix(in srgb, var(--primary) 38%, transparent);
  color: #fff;
}

/* ===== زر واتساب العائم ===== */
.studio-wa-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: var(--studio-safe-bottom);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  z-index: 7998;
  box-shadow: 0 12px 35px rgba(37,211,102,.35);
  transition: .25s;
  text-decoration: none;
}
.studio-wa-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 18px 45px rgba(37,211,102,.5);
}

/* ===== صفحة غير متاحة ===== */
.studio-page-offline {
  position: fixed; inset: 0; z-index: 99999;
  background: #050506; color: #fff;
  display: grid; place-items: center;
  padding: 24px; text-align: center;
}
.studio-page-offline > div {
  width: min(520px, 100%);
  padding: 34px; border-radius: 28px;
  border: 1px solid rgba(255,255,255,.09);
  background: #0d0e10;
}
.studio-page-offline i { font-size: 2.4rem; color: var(--primary); margin-bottom: 15px; }
.studio-page-offline p { color: #999; margin-top: 8px; }

/* ===== Skeleton Loading ===== */
.studio-skeleton {
  background: linear-gradient(90deg, #0c0d0f 25%, #17181a 50%, #0c0d0f 75%);
  background-size: 200% 100%;
  animation: studioShine 1.3s infinite;
  border-radius: 16px;
}
@keyframes studioShine { to { background-position: -200% 0; } }

/* ===== Toast مشترك ===== */
.studio-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 110px);
  background: #fff; color: #090909;
  padding: 11px 18px; border-radius: 99px;
  font-weight: 900; font-size: .85rem;
  z-index: 9999;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
  transition: .3s; opacity: 0;
  display: flex; align-items: center; gap: 9px;
}
.studio-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.studio-toast.error { background: #ff4d6d; color: #fff; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== تجاوب عام ===== */
@media (max-width: 640px) {
  .studio-nav-trigger { width: 50px; height: 50px; border-radius: 16px; left: 12px; }
  .studio-nav-panel { left: 12px; width: calc(100vw - 24px); }
  .studio-nav-grid a { min-height: 66px; }
  .studio-wa-fab { width: 50px; height: 50px; font-size: 1.3rem; right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .studio-nav-trigger, .studio-nav-panel, .studio-nav-grid a,
  .studio-wa-fab { transition: none !important; }
}


/* ===== v15 Visual System ===== */
:root{
  --studio-surface:rgba(15,16,19,.78);
  --studio-border:rgba(255,255,255,.09);
  --studio-shadow:0 28px 90px rgba(0,0,0,.42);
  --studio-radius:22px;
}
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;
  background:radial-gradient(900px 540px at 82% -10%,color-mix(in srgb,var(--primary) 17%,transparent),transparent 70%);
}
img{content-visibility:auto}
:is(.card,.media-card,.featured-card,.service-card,.tool-card,.section-box){
  border-color:var(--studio-border)!important;
}
:is(.card,.media-card,.featured-card,.service-card,.tool-card){
  box-shadow:0 12px 36px rgba(0,0,0,.16);
  transition:transform .28s cubic-bezier(.2,.8,.2,1),border-color .28s,box-shadow .28s;
}
:is(.card,.media-card,.featured-card,.service-card,.tool-card):hover{
  transform:translateY(-4px);box-shadow:var(--studio-shadow);
}
@supports(backdrop-filter:blur(1px)){
  .studio-nav-panel{background:rgba(8,9,11,.82)}
}
@media(max-width:640px){
  body{padding-bottom:calc(76px + env(safe-area-inset-bottom))}
  .studio-nav-panel{max-height:min(72vh,560px);overflow:auto}
}


/* ===== Ali963sy Studio v16 Premium System ===== */
:root{
  --studio-accent:#e63946;--studio-bg:#070708;--studio-surface:#101013;
  --studio-surface-2:#17171b;--studio-text:#f7f7f8;--studio-muted:#9b9ba5;
  --studio-line:rgba(255,255,255,.09);--studio-radius:22px;
  --studio-shadow:0 24px 70px rgba(0,0,0,.34)
}
html{background:var(--studio-bg);scroll-behavior:smooth}
body{background-color:var(--studio-bg);color:var(--studio-text);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}
body[data-studio-theme="obsidian"]{--studio-bg:#070708;--studio-surface:#101013;--studio-surface-2:#17171b}
body[data-studio-theme="graphite"]{--studio-bg:#111214;--studio-surface:#191b1f;--studio-surface-2:#22252a}
body[data-studio-theme="midnight"]{--studio-bg:#060912;--studio-surface:#0d1322;--studio-surface-2:#131c31}
body[data-studio-theme="cinema"]{--studio-bg:#090705;--studio-surface:#15100c;--studio-surface-2:#201710}
body[data-studio-theme="light"]{--studio-bg:#f4f4f6;--studio-surface:#fff;--studio-surface-2:#ececf0;--studio-text:#121216;--studio-muted:#666672;--studio-line:rgba(0,0,0,.1);--studio-shadow:0 20px 60px rgba(0,0,0,.1)}
body[data-studio-theme]{background:radial-gradient(circle at 80% -10%,color-mix(in srgb,var(--studio-accent) 13%,transparent),transparent 30%),var(--studio-bg)}
img{content-visibility:auto}
img[loading="lazy"]{background:linear-gradient(110deg,var(--studio-surface),var(--studio-surface-2),var(--studio-surface));background-size:200% 100%;animation:studioShimmer 1.4s linear infinite}
img[src]{animation:none}
video{background:#050505}
@keyframes studioShimmer{to{background-position:-200% 0}}
.studio-loader{position:fixed;inset:0;z-index:2147483000;display:grid;place-items:center;background:#060607;transition:opacity .42s ease,visibility .42s ease}
.studio-loader.is-hidden{opacity:0;visibility:hidden;pointer-events:none}
.studio-loader__inner{text-align:center}
.studio-loader__camera{width:76px;height:76px;margin:auto;border:1px solid rgba(255,255,255,.13);border-radius:24px;display:grid;place-items:center;position:relative;box-shadow:0 0 50px color-mix(in srgb,var(--studio-accent) 28%,transparent)}
.studio-loader__camera:before{content:"";width:30px;height:30px;border:4px solid var(--studio-accent);border-radius:50%;box-shadow:0 0 0 7px rgba(255,255,255,.06)}
.studio-loader__camera:after{content:"";position:absolute;width:22px;height:7px;border-radius:5px;background:var(--studio-accent);top:13px;right:12px}
.studio-loader__name{font-weight:900;letter-spacing:.08em;margin-top:18px;font-size:1.05rem}
.studio-loader__bar{width:150px;height:3px;background:rgba(255,255,255,.08);border-radius:10px;overflow:hidden;margin:14px auto 0}
.studio-loader__bar:after{content:"";display:block;width:45%;height:100%;background:var(--studio-accent);border-radius:inherit;animation:studioLoad 1s ease-in-out infinite alternate}
@keyframes studioLoad{from{transform:translateX(110%)}to{transform:translateX(-140%)}}
.studio-media-shell{overflow:hidden;border-radius:var(--studio-radius);background:var(--studio-surface);box-shadow:var(--studio-shadow)}
@media(max-width:720px){:root{--studio-radius:16px}.studio-loader__camera{width:66px;height:66px;border-radius:20px}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important}.studio-loader__bar:after,img[loading="lazy"]{animation:none!important}}


/* ===== v16.1 Page Experience ===== */
.v161-tools{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin:18px 0}
.v161-pill{border:1px solid var(--studio-line);background:color-mix(in srgb,var(--studio-surface) 88%,transparent);color:var(--studio-text);border-radius:999px;padding:9px 14px;font:inherit;font-size:.82rem}
.v161-pill strong{color:var(--studio-accent)}
.v161-share{cursor:pointer;transition:.2s}.v161-share:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--studio-accent) 55%,transparent)}
body[data-page-layout="compact"] .gallery-grid,body[data-page-layout="compact"] .video-grid,body[data-page-layout="compact"] .playlist-grid{gap:10px!important}
body[data-page-layout="grid"] .gallery-grid,body[data-page-layout="grid"] .video-grid,body[data-page-layout="grid"] .playlist-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))!important}
.v161-page-accent{color:var(--page-accent,var(--studio-accent))}
@media(max-width:600px){.v161-tools{gap:7px}.v161-pill{padding:8px 11px;font-size:.75rem}}


/* ===== v16.2 Media Experience ===== */
.media-command{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:16px 0 22px}
.media-command input,.media-command select{min-height:44px;border:1px solid var(--studio-line);background:var(--studio-surface);color:var(--studio-text);border-radius:14px;padding:0 14px;font:inherit}
.media-command input{min-width:min(320px,100%);flex:1}
.media-chip{border:1px solid var(--studio-line);background:var(--studio-surface);color:var(--studio-text);border-radius:999px;padding:10px 14px;cursor:pointer}
.media-chip.active{border-color:var(--studio-accent);box-shadow:0 0 0 3px color-mix(in srgb,var(--studio-accent) 12%,transparent)}
.media-performance-note{font-size:.78rem;color:var(--studio-muted);display:flex;gap:8px;align-items:center}
.media-performance-note:before{content:"";width:7px;height:7px;border-radius:50%;background:#4bd17b;box-shadow:0 0 12px #4bd17b}
.media-grid-shell{content-visibility:auto;contain-intrinsic-size:800px}
video[data-smart-video]{content-visibility:auto}
@media(max-width:640px){.media-command{display:grid;grid-template-columns:1fr 1fr}.media-command input{grid-column:1/-1;min-width:0;width:100%}.media-chip{padding:9px 10px}}


/* ===== v16.4 Full Page Designer + Advanced Themes ===== */
body[data-studio-theme="noir-glass"]{--studio-bg:#050506;--studio-surface:rgba(14,15,18,.78);--studio-surface-2:rgba(24,25,30,.9);--studio-text:#f8f8fb;--studio-muted:#9b9da7}
body[data-studio-theme="crimson-cinema"]{--studio-bg:#070303;--studio-surface:#150909;--studio-surface-2:#211010;--studio-text:#fff8f8;--studio-muted:#b39a9a}
body[data-studio-theme="aurora"]{--studio-bg:#06080e;--studio-surface:#0d1320;--studio-surface-2:#121d2d;--studio-text:#f6fbff;--studio-muted:#94a9bd}
body[data-studio-theme="royal-violet"]{--studio-bg:#08060d;--studio-surface:#151020;--studio-surface-2:#21172f;--studio-text:#fbf7ff;--studio-muted:#aa9bb8}
body[data-studio-theme="editorial-ivory"]{--studio-bg:#f3efe8;--studio-surface:#fffdfa;--studio-surface-2:#e9e2d8;--studio-text:#1b1815;--studio-muted:#746d66;--studio-line:rgba(40,30,20,.12);--studio-shadow:0 22px 60px rgba(50,30,10,.12)}
body[data-studio-theme="ocean"]{--studio-bg:#031017;--studio-surface:#08202a;--studio-surface-2:#0d2d39;--studio-text:#f2fcff;--studio-muted:#89a9b2}
body[data-hero-style="split"] .hero,body[data-hero-style="split"] .gallery-hero,body[data-hero-style="split"] .video-hero,body[data-hero-style="split"] .music-hero{border-radius:28px;overflow:hidden}
body[data-hero-style="minimal"] .hero,body[data-hero-style="minimal"] .gallery-hero,body[data-hero-style="minimal"] .video-hero,body[data-hero-style="minimal"] .music-hero{background-image:none!important;min-height:auto!important;padding-block:72px!important}
body[data-card-style="glass"] article,body[data-card-style="glass"] .card,body[data-card-style="glass"] .playlist-card{background:color-mix(in srgb,var(--studio-surface) 78%,transparent)!important;backdrop-filter:blur(18px);border:1px solid color-mix(in srgb,var(--studio-accent) 16%,var(--studio-line))}
body[data-card-style="bordered"] article,body[data-card-style="bordered"] .card,body[data-card-style="bordered"] .playlist-card{background:transparent!important;border:1px solid var(--studio-line)!important;box-shadow:none!important}
body[data-motion="soft"] *{transition-duration:.25s!important}body[data-motion="none"] *{animation:none!important;transition:none!important}
body[data-bg-fx="mesh"]{background-image:radial-gradient(circle at 15% 15%,color-mix(in srgb,var(--studio-accent) 13%,transparent),transparent 28rem),radial-gradient(circle at 80% 70%,rgba(100,120,255,.08),transparent 28rem)}
body[data-bg-fx="grid"]{background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);background-size:48px 48px}
body{--page-radius:22px;--page-font-scale:1}body[data-page-radius="small"]{--page-radius:12px}body[data-page-radius="large"]{--page-radius:32px}
body[data-font-scale="small"]{--page-font-scale:.92}body[data-font-scale="large"]{--page-font-scale:1.08}body[data-font-scale] main{font-size:calc(1rem * var(--page-font-scale))}
body[data-page-columns="2"] .gallery-grid,body[data-page-columns="2"] .video-grid,body[data-page-columns="2"] .playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
body[data-page-columns="3"] .gallery-grid,body[data-page-columns="3"] .video-grid,body[data-page-columns="3"] .playlist-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
body[data-page-columns="4"] .gallery-grid,body[data-page-columns="4"] .video-grid,body[data-page-columns="4"] .playlist-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}
@media(max-width:900px){body[data-page-columns] .gallery-grid,body[data-page-columns] .video-grid,body[data-page-columns] .playlist-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:560px){body[data-page-columns] .gallery-grid,body[data-page-columns] .video-grid,body[data-page-columns] .playlist-grid{grid-template-columns:1fr!important}}


/* ===== v16.5 Quality & Performance Pass ===== */
:focus-visible{outline:2px solid var(--studio-accent);outline-offset:3px}
img,video{max-width:100%}
main section,main article{content-visibility:auto;contain-intrinsic-size:auto 500px}
a,button,input,select,textarea{-webkit-tap-highlight-color:transparent}
button,a{touch-action:manipulation}
.media-error{opacity:.28!important;filter:grayscale(1)}
@media(hover:hover){article,.feature,.gallery-item,.video-card,.playlist-card{will-change:transform}}
@media(max-width:620px){html{scroll-padding-bottom:100px}.studio-loader__name{font-size:.94rem}.v161-tools{overflow-x:auto;flex-wrap:nowrap;padding-bottom:2px}}
@media(prefers-reduced-data:reduce){.studio-loader__bar{display:none}}


/* ===== v16.6 Unified Studio Identity ===== */
:root{
 --studio-accent-2:color-mix(in srgb,var(--studio-accent) 62%,#8b5cf6);
 --studio-accent-soft:color-mix(in srgb,var(--studio-accent) 14%,transparent)
}
body{background-color:var(--studio-bg)!important;color:var(--studio-text)!important}
button,.btn,.action,.btn-action,.btn-primary-small,.yt-btn.primary{font-family:inherit}
.btn.primary,.action:not(.secondary),.btn-action,.btn-primary-small,.main-center-play,.play-orb,.gallery-badge,.yt-play,.yt-card-play{
 background:linear-gradient(135deg,var(--studio-accent),var(--studio-accent-2))!important;
 border-color:color-mix(in srgb,var(--studio-accent) 62%,transparent)!important
}
a:hover,.eyebrow,.kicker,.mini,.yt-kicker,.v161-page-accent{color:var(--studio-accent)!important}
input:focus,select:focus,textarea:focus{border-color:var(--studio-accent)!important;box-shadow:0 0 0 4px var(--studio-accent-soft)!important}
.studio-nav-trigger{width:54px!important;height:54px!important;border-radius:18px!important;background:linear-gradient(145deg,var(--studio-accent),var(--studio-accent-2))!important;border:1px solid rgba(255,255,255,.16)!important;box-shadow:0 18px 48px color-mix(in srgb,var(--studio-accent) 28%,rgba(0,0,0,.5))!important}
.studio-nav-trigger svg{width:28px;height:28px;display:block}
.studio-nav-trigger i{display:none!important}
.studio-nav-panel{border-color:color-mix(in srgb,var(--studio-accent) 18%,var(--studio-line))!important;background:color-mix(in srgb,var(--studio-surface) 92%,transparent)!important;backdrop-filter:blur(28px)}
.studio-nav-panel a.active{background:var(--studio-accent-soft)!important;color:#fff!important;border-color:color-mix(in srgb,var(--studio-accent) 34%,transparent)!important}


/* ===== v16.7 Visual Unification & Final Polish ===== */
:root{
  --studio-max:1220px;
  --studio-header-h:72px;
  --studio-section-gap:clamp(54px,7vw,96px);
  --studio-radius-sm:12px;
  --studio-radius-md:18px;
  --studio-radius-lg:28px;
  --studio-ease:cubic-bezier(.2,.7,.2,1);
}
body{min-height:100vh;background:
radial-gradient(circle at 82% -10%,color-mix(in srgb,var(--studio-accent) 12%,transparent),transparent 30rem),
radial-gradient(circle at 8% 80%,color-mix(in srgb,var(--studio-accent-2) 8%,transparent),transparent 32rem),
var(--studio-bg)!important}
body:before{content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;background-image:linear-gradient(rgba(255,255,255,.012) 1px,transparent 1px);background-size:100% 48px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.7),transparent 78%)}
.studio-shell{width:min(var(--studio-max),calc(100% - 28px));margin-inline:auto}
.studio-global-header{position:sticky;top:0;z-index:1200;height:var(--studio-header-h);border-bottom:1px solid var(--studio-line);background:color-mix(in srgb,var(--studio-bg) 82%,transparent);backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px)}
.studio-global-header__inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:18px;width:min(var(--studio-max),calc(100% - 28px));margin:auto}
.studio-global-brand{display:flex;align-items:center;gap:10px;color:var(--studio-text);font-weight:950;text-decoration:none;letter-spacing:-.02em}
.studio-global-brand svg{width:34px;height:34px;filter:drop-shadow(0 8px 18px color-mix(in srgb,var(--studio-accent) 24%,transparent))}
.studio-global-nav{display:flex;align-items:center;gap:6px;flex-wrap:wrap}.studio-global-nav a{color:var(--studio-muted);text-decoration:none;padding:9px 11px;border-radius:11px;font-size:.78rem;font-weight:800;transition:.2s var(--studio-ease)}.studio-global-nav a:hover,.studio-global-nav a.active{color:#fff;background:var(--studio-accent-soft)}
.studio-hero-polish{position:relative;overflow:hidden;border:1px solid var(--studio-line);border-radius:var(--studio-radius-lg);box-shadow:var(--studio-shadow)}
.studio-hero-polish:after{content:"";position:absolute;inset:auto -15% -45% auto;width:360px;height:360px;border-radius:50%;background:color-mix(in srgb,var(--studio-accent) 14%,transparent);filter:blur(70px);pointer-events:none}
.studio-section-title{display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:18px}.studio-section-title h2{margin:0;font-size:clamp(1.55rem,3vw,2.35rem);letter-spacing:-.04em}.studio-section-title p{margin:6px 0 0;color:var(--studio-muted);max-width:680px;line-height:1.8}
.studio-card-polish{border:1px solid var(--studio-line)!important;border-radius:var(--page-radius,var(--studio-radius-md))!important;background:linear-gradient(145deg,color-mix(in srgb,var(--studio-surface) 96%,transparent),color-mix(in srgb,var(--studio-surface-2) 92%,transparent))!important;box-shadow:0 18px 45px rgba(0,0,0,.16);transition:transform .28s var(--studio-ease),border-color .28s var(--studio-ease),box-shadow .28s var(--studio-ease)}
@media(hover:hover){.studio-card-polish:hover{transform:translateY(-5px);border-color:color-mix(in srgb,var(--studio-accent) 32%,var(--studio-line))!important;box-shadow:0 28px 60px rgba(0,0,0,.24)}}
.studio-global-footer{margin-top:var(--studio-section-gap);border-top:1px solid var(--studio-line);background:linear-gradient(to top,color-mix(in srgb,var(--studio-surface) 60%,transparent),transparent)}
.studio-global-footer__inner{width:min(var(--studio-max),calc(100% - 28px));margin:auto;padding:34px 0;display:flex;justify-content:space-between;gap:20px;align-items:center}.studio-global-footer__brand{display:flex;align-items:center;gap:10px;font-weight:900}.studio-global-footer__brand svg{width:30px;height:30px}.studio-global-footer small{color:var(--studio-muted)}
.studio-theme-preview-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:10px}.studio-theme-card{border:1px solid var(--border-color);border-radius:14px;padding:10px;background:#111319;cursor:pointer;transition:.2s}.studio-theme-card:hover{border-color:var(--primary);transform:translateY(-2px)}.studio-theme-swatch{height:72px;border-radius:10px;margin-bottom:8px;position:relative;overflow:hidden}.studio-theme-card b{display:block;font-size:.78rem}.studio-theme-card span{display:block;color:var(--text-muted);font-size:.67rem;margin-top:3px}
@media(max-width:900px){.studio-global-nav{display:none}.studio-global-header__inner{justify-content:center}.studio-global-footer__inner{flex-direction:column;text-align:center}.studio-global-brand{margin:auto}}
@media(max-width:620px){:root{--studio-header-h:64px}.studio-global-header__inner{width:calc(100% - 20px)}.studio-global-footer__inner{width:calc(100% - 20px)}}


/* ===== v16.7.1 Unified Loader Logo ===== */
.studio-loader__camera{display:none!important}
.studio-loader__camera:before,.studio-loader__camera:after{display:none!important;content:none!important}
.studio-loader__logo{
  width:82px;height:82px;display:block;margin:auto;
  filter:drop-shadow(0 18px 44px color-mix(in srgb,var(--studio-accent) 32%,transparent));
  animation:studioLogoPulse 1.35s ease-in-out infinite alternate;
}
@keyframes studioLogoPulse{from{transform:scale(.96);opacity:.9}to{transform:scale(1.04);opacity:1}}
@media(max-width:720px){.studio-loader__logo{width:70px;height:70px}}
@media(prefers-reduced-motion:reduce){.studio-loader__logo{animation:none}}


/* ===== v17.0 Studio Evolution Design System ===== */
:root{
 --studio-font:"Cairo","Tajawal","Segoe UI",system-ui,-apple-system,sans-serif;
 --studio-max:1240px;--studio-header-h:74px;--studio-radius-xs:10px;--studio-radius-sm:14px;--studio-radius-md:20px;--studio-radius-lg:30px;
 --studio-glow:0 24px 80px color-mix(in srgb,var(--studio-accent) 13%,rgba(0,0,0,.46));
 --studio-ease:cubic-bezier(.22,.72,.2,1);
}
html{scroll-padding-top:calc(var(--studio-header-h) + 20px)}
body{font-family:var(--studio-font)!important;letter-spacing:0!important;background:
 radial-gradient(circle at 82% -10%,color-mix(in srgb,var(--studio-accent) 13%,transparent),transparent 30rem),
 radial-gradient(circle at 5% 78%,color-mix(in srgb,var(--studio-accent-2) 8%,transparent),transparent 34rem),
 var(--studio-bg)!important}
body[data-studio-theme="velvet-rose"]{--studio-bg:#090508;--studio-surface:#160d13;--studio-surface-2:#21121b;--studio-text:#fff7fb;--studio-muted:#b99da9;--studio-accent-2:#ff6fa7}
body[data-studio-theme="cobalt-neon"]{--studio-bg:#030712;--studio-surface:#091224;--studio-surface-2:#101d35;--studio-text:#f4f8ff;--studio-muted:#91a5c3;--studio-accent-2:#2dd4ff}
body[data-studio-theme="emerald-film"]{--studio-bg:#04100d;--studio-surface:#0a1c17;--studio-surface-2:#102821;--studio-text:#f3fff9;--studio-muted:#91b7a8;--studio-accent-2:#4ce3a0}
body[data-studio-theme="champagne-noir"]{--studio-bg:#080705;--studio-surface:#15120d;--studio-surface-2:#211c14;--studio-text:#fffaf0;--studio-muted:#b8aa91;--studio-accent-2:#e6c777}
/* bridge legacy page variables to the global design system */
body{--primary:var(--studio-accent);--accent:var(--studio-accent);--gold:var(--studio-accent);--bg:var(--studio-bg);--card:var(--studio-surface);--gray:var(--studio-muted);--muted:var(--studio-muted);--border:var(--studio-line);--text:var(--studio-text)}
body>.studio-legacy-header,body>.studio-legacy-footer{display:none!important}
.studio-global-header{height:var(--studio-header-h)!important;background:color-mix(in srgb,var(--studio-bg) 80%,transparent)!important;border-bottom:1px solid color-mix(in srgb,var(--studio-accent) 10%,var(--studio-line))!important;box-shadow:0 8px 30px rgba(0,0,0,.08)}
.studio-global-header__inner{width:min(var(--studio-max),calc(100% - 30px))!important}
.studio-global-brand{font-size:.95rem}.studio-global-brand svg{width:37px!important;height:37px!important}
.studio-global-nav a{padding:10px 12px!important;border:1px solid transparent}.studio-global-nav a.active{border-color:color-mix(in srgb,var(--studio-accent) 18%,transparent)}
.studio-header-actions{display:flex;gap:8px;align-items:center}.studio-header-action{width:39px;height:39px;border-radius:12px;border:1px solid var(--studio-line);background:color-mix(in srgb,var(--studio-surface) 82%,transparent);color:var(--studio-text);display:grid;place-items:center;cursor:pointer;transition:.2s}.studio-header-action:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--studio-accent) 38%,var(--studio-line));background:var(--studio-accent-soft)}
.studio-card-polish{overflow:hidden}.studio-card-polish:where(:hover,:focus-within){border-color:color-mix(in srgb,var(--studio-accent) 28%,var(--studio-line))!important}
.studio-hero-polish{box-shadow:var(--studio-glow)!important;background-color:color-mix(in srgb,var(--studio-surface) 78%,transparent)}
.studio-hero-polish h1{letter-spacing:-.045em}.studio-hero-polish p{max-width:760px}
/* global command palette */
.studio-command{position:fixed;inset:0;z-index:2147482000;background:rgba(0,0,0,.62);backdrop-filter:blur(12px);display:none;place-items:start center;padding:clamp(70px,12vh,130px) 14px 20px}.studio-command.open{display:grid}.studio-command-box{width:min(650px,100%);background:color-mix(in srgb,var(--studio-surface) 96%,transparent);border:1px solid color-mix(in srgb,var(--studio-accent) 22%,var(--studio-line));border-radius:24px;box-shadow:0 35px 100px rgba(0,0,0,.6);overflow:hidden}.studio-command-search{display:flex;align-items:center;gap:12px;padding:16px;border-bottom:1px solid var(--studio-line)}.studio-command-search svg{width:22px;opacity:.7}.studio-command-search input{height:auto!important;padding:8px 0!important;border:0!important;background:transparent!important;box-shadow:none!important;font-size:1rem}.studio-command-results{padding:8px;max-height:min(55vh,480px);overflow:auto}.studio-command-item{display:grid;grid-template-columns:42px 1fr auto;gap:11px;align-items:center;padding:11px;border-radius:15px;color:var(--studio-text);text-decoration:none;border:1px solid transparent}.studio-command-item:hover,.studio-command-item.active{background:var(--studio-accent-soft);border-color:color-mix(in srgb,var(--studio-accent) 18%,transparent)}.studio-command-icon{width:40px;height:40px;border-radius:12px;display:grid;place-items:center;background:color-mix(in srgb,var(--studio-surface-2) 85%,transparent);color:var(--studio-accent)}.studio-command-item small{color:var(--studio-muted)}.studio-command-key{font-size:.68rem;color:var(--studio-muted);border:1px solid var(--studio-line);border-radius:7px;padding:3px 6px}
/* homepage studio explorer */
.studio-explorer{width:min(var(--studio-max),calc(100% - 28px));margin:var(--studio-section-gap) auto 0}.studio-explorer-head{display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:18px}.studio-explorer-head h2{font-size:clamp(1.7rem,4vw,3rem);letter-spacing:-.045em;margin:0}.studio-explorer-head p{color:var(--studio-muted);margin:5px 0 0}.studio-explorer-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}.studio-explore-card{min-height:170px;padding:18px;border-radius:22px;border:1px solid var(--studio-line);background:linear-gradient(145deg,color-mix(in srgb,var(--studio-surface) 94%,transparent),color-mix(in srgb,var(--studio-surface-2) 84%,transparent));color:var(--studio-text);text-decoration:none;display:flex;flex-direction:column;justify-content:space-between;transition:.25s var(--studio-ease);position:relative;overflow:hidden}.studio-explore-card:after{content:"";position:absolute;width:120px;height:120px;border-radius:50%;background:var(--studio-accent-soft);filter:blur(28px);left:-40px;bottom:-50px}.studio-explore-card:hover{transform:translateY(-5px);border-color:color-mix(in srgb,var(--studio-accent) 35%,var(--studio-line));box-shadow:var(--studio-glow)}.studio-explore-top{display:flex;justify-content:space-between;align-items:center}.studio-explore-icon{width:42px;height:42px;border-radius:13px;display:grid;place-items:center;background:var(--studio-accent-soft);color:var(--studio-accent)}.studio-explore-count{font-size:1.5rem;font-weight:900}.studio-explore-card strong{font-size:1rem}.studio-explore-card small{color:var(--studio-muted)}
/* scroll progress */
.studio-scroll-progress{position:fixed;top:0;left:0;height:2px;width:0;background:linear-gradient(90deg,var(--studio-accent),var(--studio-accent-2));z-index:2147482500;box-shadow:0 0 18px var(--studio-accent)}
/* refined floating navigation */
.studio-nav-trigger{left:18px!important;bottom:18px!important}.studio-nav-panel{left:18px!important;bottom:82px!important}.studio-nav-panel a{border-radius:13px!important}
body[data-page="music"] .studio-nav-trigger{bottom:190px!important}body[data-page="music"] .studio-nav-panel{bottom:254px!important}
/* footer */
.studio-global-footer__inner{padding:38px 0!important}.studio-footer-links{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}.studio-footer-links a{color:var(--studio-muted);text-decoration:none;font-size:.75rem;padding:7px 9px;border-radius:9px}.studio-footer-links a:hover{color:var(--studio-text);background:var(--studio-accent-soft)}
/* better form controls */
input,select,textarea{font-family:var(--studio-font)!important}button{font-family:var(--studio-font)!important}.action,.btn,.btn-action,.btn-primary-small{box-shadow:0 10px 28px color-mix(in srgb,var(--studio-accent) 15%,transparent)}
/* quality/admin cards */
.v17-quality-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.v17-quality-card{padding:15px;border:1px solid var(--border-color);border-radius:16px;background:rgba(255,255,255,.025)}.v17-quality-card strong{display:block;font-size:1.25rem;margin-top:6px}.v17-quality-card small{color:var(--text-muted)}
@media(max-width:1050px){.studio-explorer-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.studio-global-header__inner{justify-content:space-between!important}.studio-header-actions{display:flex}.studio-explorer-grid{grid-template-columns:1fr 1fr}.studio-explorer-head{align-items:flex-start;flex-direction:column}.v17-quality-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.studio-explorer-grid{grid-template-columns:1fr}.studio-explore-card{min-height:145px}.v17-quality-grid{grid-template-columns:1fr}.studio-command{padding-top:76px}}


/* ==========================================================
   v17.1 MOBILE-FIRST VISUAL REPAIR + POLISH
   ========================================================== */
html{width:100%;max-width:100%;overflow-x:hidden;scrollbar-gutter:stable}
body{width:100%;max-width:100%;overflow-x:hidden!important}
body.studio-menu-open{overflow:hidden!important;touch-action:none}
main,section,article,aside,header,footer,nav,div{min-width:0}
img,video,iframe,canvas,picture{max-width:100%}
img,video{height:auto}
:where(.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-shell,.about-shell,.feed-shell,.stories-shell,.downloader-shell){max-width:100%}

/* one premium loader only */
.studio-loader{background:
 radial-gradient(circle at 50% 36%,color-mix(in srgb,var(--studio-accent) 12%,transparent),transparent 34%),
 linear-gradient(180deg,#07080a,#030405)!important}
.studio-loader__inner{width:min(300px,82vw);text-align:center}
.studio-loader__mark{width:92px;height:92px;margin:0 auto 16px;position:relative;display:grid;place-items:center;border-radius:28px;
 border:1px solid color-mix(in srgb,var(--studio-accent) 28%,rgba(255,255,255,.08));
 background:linear-gradient(145deg,color-mix(in srgb,var(--studio-accent) 13%,#111318),#08090b);
 box-shadow:0 30px 75px color-mix(in srgb,var(--studio-accent) 17%,transparent),inset 0 1px rgba(255,255,255,.08)}
.studio-loader__mark:before{content:"";position:absolute;inset:7px;border:1px solid rgba(255,255,255,.045);border-radius:22px}
.studio-loader__mark .studio-loader__logo{width:58px!important;height:58px!important;color:var(--studio-accent);margin:0!important;filter:none!important}
.studio-loader__mark>span{position:absolute;right:-7px;bottom:-7px;width:29px;height:29px;border-radius:10px;display:grid;place-items:center;background:var(--studio-accent);color:#fff;font-size:.68rem;font-weight:950;border:4px solid #07080a}
.studio-loader__name{font-size:1rem!important;letter-spacing:.01em!important;font-weight:900}
.studio-loader__tag{display:block;margin-top:4px;color:var(--studio-muted);font-size:.57rem;letter-spacing:.22em}
.studio-loader__bar{width:150px!important;height:2px!important;margin:15px auto 0!important;background:rgba(255,255,255,.07)!important;overflow:hidden;border-radius:99px}
.studio-loader__bar i{background:linear-gradient(90deg,transparent,var(--studio-accent),transparent)!important}

/* global shell */
.studio-global-header{position:sticky!important;top:0!important;width:100%!important}
.studio-global-header__inner{min-width:0}
.studio-global-brand{min-width:0}
.studio-global-brand span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.studio-mobile-menu-btn{display:none!important;position:relative;padding:0!important}
.studio-mobile-menu-btn span{position:absolute;width:16px;height:1.5px;border-radius:99px;background:currentColor;left:50%;transform:translateX(-50%);transition:.22s}
.studio-mobile-menu-btn span:nth-child(1){top:13px}
.studio-mobile-menu-btn span:nth-child(2){top:18px}
.studio-mobile-menu-btn span:nth-child(3){top:23px}
.studio-mobile-overlay{position:fixed;inset:0;z-index:2147481000;background:rgba(0,0,0,.58);backdrop-filter:blur(8px);opacity:0;visibility:hidden;transition:.25s}
.studio-mobile-overlay.open{opacity:1;visibility:visible}
.studio-mobile-drawer{
 position:fixed;top:0;right:0;bottom:0;z-index:2147481100;width:min(88vw,360px);height:100dvh;
 padding:max(16px,env(safe-area-inset-top)) 14px max(18px,env(safe-area-inset-bottom));
 background:linear-gradient(180deg,color-mix(in srgb,var(--studio-surface) 98%,#050607),#07080a);
 border-left:1px solid var(--studio-line);box-shadow:-35px 0 95px rgba(0,0,0,.55);
 transform:translateX(104%);transition:transform .3s cubic-bezier(.2,.8,.2,1);overflow:auto;overscroll-behavior:contain
}
.studio-mobile-drawer.open{transform:translateX(0)}
.studio-mobile-drawer__head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:3px 2px 16px;border-bottom:1px solid var(--studio-line)}
.studio-mobile-drawer__brand{display:flex;align-items:center;gap:10px;min-width:0}
.studio-mobile-drawer__brand svg{width:36px;height:36px;flex:0 0 auto}
.studio-mobile-drawer__brand strong{display:block;font-size:.84rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.studio-mobile-drawer__brand small{display:block;color:var(--studio-muted);font-size:.62rem;margin-top:2px}
.studio-mobile-close{width:39px;height:39px;border-radius:12px;border:1px solid var(--studio-line);background:rgba(255,255,255,.04);color:var(--studio-text);font-size:1.4rem}
.studio-mobile-links{display:grid;gap:6px;padding:13px 0}
.studio-mobile-links a{min-height:48px;padding:11px 13px;border-radius:14px;border:1px solid transparent;display:flex;align-items:center;justify-content:space-between;color:var(--studio-muted);text-decoration:none;font-size:.8rem;font-weight:800;background:rgba(255,255,255,.018)}
.studio-mobile-links a b{font-size:.78rem;opacity:.55}
.studio-mobile-links a.active,.studio-mobile-links a:hover{color:#fff;background:var(--studio-accent-soft);border-color:color-mix(in srgb,var(--studio-accent) 20%,var(--studio-line))}
.studio-mobile-drawer__foot{padding-top:10px;border-top:1px solid var(--studio-line)}
.studio-mobile-drawer__foot a{display:block;text-align:center;padding:12px;border-radius:14px;background:var(--studio-accent);color:#fff;text-decoration:none;font-size:.76rem;font-weight:900}
.studio-nav-trigger,.studio-nav-panel{display:none!important}

/* cleaner modern surfaces */
.studio-card-polish{box-shadow:0 18px 55px rgba(0,0,0,.18)!important}
.studio-hero-polish{isolation:isolate}
.studio-hero-polish:after{opacity:.7}
button,a,input,select,textarea{-webkit-tap-highlight-color:transparent}
button,a{touch-action:manipulation}
:focus-visible{outline:2px solid color-mix(in srgb,var(--studio-accent) 70%,white);outline-offset:3px}

/* mobile and tablet hardening */
@media(max-width:900px){
 :root{--studio-header-h:62px;--studio-section-gap:52px}
 .studio-global-header__inner{width:calc(100% - 20px)!important;justify-content:space-between!important;gap:8px!important}
 .studio-global-brand{margin:0!important;max-width:calc(100% - 94px)}
 .studio-global-brand svg{width:32px!important;height:32px!important}
 .studio-global-brand span{font-size:.82rem}
 .studio-header-actions{margin-inline-start:auto;gap:6px}
 .studio-header-action{width:38px!important;height:38px!important;border-radius:12px!important}
 .studio-mobile-menu-btn{display:block!important}
 .studio-global-nav{display:none!important}
 .studio-global-footer__inner{width:calc(100% - 24px)!important;padding:26px 0 calc(28px + env(safe-area-inset-bottom))!important}
 .studio-global-footer{margin-top:48px!important}
 body:not(.admin-body){padding-bottom:env(safe-area-inset-bottom)}
 body:not(.admin-body) main{width:100%;max-width:100%;overflow:hidden}
 body:not(.admin-body) :where(.container,.studio-explorer,.stats-section,.services-section,.about-preview,.gallery-container,.video-container,.playlist-grid,.yt-grid,.storiesGrid,.feed-grid){
   max-width:calc(100vw - 22px)!important;width:calc(100vw - 22px)!important;margin-inline:auto!important
 }
 body:not(.admin-body) :where(.workspace,.hero-content,.hero-inner,.gallery-hero-inner,.video-hero-inner,.music-hero-inner,.intro,.panel,.preview,.form-panel){max-width:100%!important}
 body:not(.admin-body) :where(.stats-section,.services-grid,.features-grid,.gallery-grid,.video-grid,.yt-grid,.feed-grid,.playlist-grid){gap:10px!important}
 body:not(.admin-body) :where(h1,.hero-title,.intro h1){font-size:clamp(1.85rem,8vw,3.1rem)!important;line-height:1.08!important;letter-spacing:-.045em!important}
 body:not(.admin-body) :where(.section-title,h2){overflow-wrap:anywhere}
 .studio-explorer{width:calc(100% - 22px)!important}
 .studio-explorer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important}
 .studio-explore-card{min-height:122px!important;padding:14px!important}
 .studio-command{padding-top:76px!important}
 .studio-command-box{border-radius:19px!important}
 .studio-command-item{grid-template-columns:38px 1fr!important}
 .studio-command-key{display:none}
}
@media(max-width:620px){
 :root{--studio-header-h:58px}
 .studio-global-header__inner{width:calc(100% - 16px)!important}
 .studio-global-brand span{max-width:150px}
 .studio-header-action{width:36px!important;height:36px!important}
 body:not(.admin-body) :where(.container,.studio-explorer,.stats-section,.services-section,.about-preview,.gallery-container,.video-container,.playlist-grid,.yt-grid,.storiesGrid,.feed-grid){
   max-width:calc(100vw - 16px)!important;width:calc(100vw - 16px)!important
 }
 body:not(.admin-body) :where(.studio-card-polish,.panel,.card,.feature-card,.service-card,.video-card,.playlist-card,.yt-card){border-radius:18px!important}
 body:not(.admin-body) :where(.stats-section){grid-template-columns:repeat(2,minmax(0,1fr))!important}
 .studio-explorer-grid{grid-template-columns:1fr 1fr!important}
 .studio-explore-card{min-height:110px!important}
 .studio-wa-fab{width:48px!important;height:48px!important;right:12px!important;bottom:calc(12px + env(safe-area-inset-bottom))!important}
}
@media(max-width:390px){
 .studio-global-brand span{max-width:118px}
 .studio-explorer-grid{grid-template-columns:1fr!important}
 body:not(.admin-body) :where(.stats-section){grid-template-columns:1fr!important}
}

/* page-specific mobile gap repair */
@media(max-width:900px){
 body[data-page="home"] .slider{margin-top:0!important}
 body[data-page="home"] main{padding-top:0!important}
 body[data-page="gallery"] main,
 body[data-page="videos"] main,
 body[data-page="music"] main,
 body[data-page="youtube"] main,
 body[data-page="stories"] main,
 body[data-page="about"] main,
 body[data-page="feed"] main,
 body[data-page="blog"] main,
 body[data-page="instagram"] main,
 body[data-page="downloader"] main{padding-inline:0!important}
 .studio-legacy-header{display:none!important}
}


/* =====================================================================
   v17.1.1 — MOBILE FIRST / VISUAL POLISH
   ===================================================================== */
html{max-width:100%;overflow-x:clip}
body:not(.admin-body){max-width:100%;overflow-x:clip!important;font-family:"Cairo",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important}
body:not(.admin-body) *,body:not(.admin-body) *::before,body:not(.admin-body) *::after{box-sizing:border-box}
body:not(.admin-body) :where(main,section,article,aside,header,footer,nav,div){min-width:0}
body:not(.admin-body) :where(img,video,iframe,canvas,svg){max-width:100%}
body:not(.admin-body) :where(input,select,textarea,button){font:inherit;max-width:100%}
body:not(.admin-body) :where(.studio-legacy-header,.studio-legacy-footer){display:none!important}

/* completely new loading identity — no old camera logo */
.studio-loader{background:
  radial-gradient(circle at 50% 34%,color-mix(in srgb,var(--studio-accent) 16%,transparent),transparent 35%),
  linear-gradient(160deg,#080a0e,#020304 72%)!important}
.studio-loader__inner{width:min(310px,84vw)!important}
.studio-loader__mark{
  width:96px!important;height:96px!important;margin:0 auto 17px!important;border-radius:29px!important;
  display:grid!important;place-content:center!important;text-align:center!important;
  border:1px solid color-mix(in srgb,var(--studio-accent) 35%,rgba(255,255,255,.08))!important;
  background:
   linear-gradient(145deg,color-mix(in srgb,var(--studio-accent) 18%,#11141a),#07090c)!important;
  box-shadow:0 28px 80px color-mix(in srgb,var(--studio-accent) 22%,transparent),inset 0 1px rgba(255,255,255,.09)!important
}
.studio-loader__mark::before{display:none!important}
.studio-loader__mark strong{display:block;color:#fff;font-size:1.24rem;line-height:1;font-weight:950;letter-spacing:.08em}
.studio-loader__mark span{display:block;margin-top:7px;color:var(--studio-accent);font-size:.48rem;font-weight:950;letter-spacing:.22em}
.studio-loader__logo,.studio-loader__camera{display:none!important}
.studio-loader__name{font-size:.9rem!important;font-weight:900!important;letter-spacing:.01em!important}
.studio-loader__tag{display:block!important;margin-top:5px!important;color:var(--studio-muted)!important;font-size:.5rem!important;letter-spacing:.18em!important}
.studio-loader__bar{width:140px!important;height:2px!important;margin:14px auto 0!important;background:rgba(255,255,255,.07)!important;border-radius:99px!important;overflow:hidden!important}
.studio-loader__bar i{display:block;width:48%;height:100%;background:linear-gradient(90deg,transparent,var(--studio-accent),transparent);animation:studioLoaderSweep 1.1s ease-in-out infinite}
@keyframes studioLoaderSweep{from{transform:translateX(-160%)}to{transform:translateX(310%)}}

/* unified public header */
.studio-global-header{z-index:2147480000!important}
.studio-global-brand{gap:9px!important}
.studio-global-brand svg{filter:drop-shadow(0 8px 18px color-mix(in srgb,var(--studio-accent) 25%,transparent))}
.studio-mobile-menu-btn{position:relative!important;z-index:2!important}
.studio-mobile-overlay,.studio-mobile-drawer{display:block}

/* refined cards */
body:not(.admin-body) .studio-card-polish{
  border-color:color-mix(in srgb,var(--studio-accent) 8%,var(--studio-line))!important;
  box-shadow:0 16px 48px rgba(0,0,0,.16)!important
}
body:not(.admin-body) .studio-card-polish:hover{
  border-color:color-mix(in srgb,var(--studio-accent) 26%,var(--studio-line))!important
}
body:not(.admin-body) :where(.section-title,.page-title,h2){text-wrap:balance}
body:not(.admin-body) :where(p,.section-subtitle,.hero-subtitle){text-wrap:pretty}

/* page width safety */
body:not(.admin-body) :where(.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-shell,.about-shell,.feed-shell,.stories-shell,.downloader-shell){
  width:min(var(--studio-max,1240px),calc(100% - 28px))!important;max-width:100%!important;margin-inline:auto!important
}
body:not(.admin-body) :where(.gallery-grid,.video-grid,.playlist-grid,.yt-grid,.feed-grid,.storiesGrid,.services-grid,.features-grid){
  min-width:0!important
}

/* phone */
@media(max-width:900px){
  :root{--studio-header-h:58px!important;--studio-section-gap:44px!important}
  .studio-global-header{height:58px!important;position:sticky!important;top:0!important}
  .studio-global-header__inner{width:calc(100% - 14px)!important;justify-content:space-between!important;gap:7px!important}
  .studio-global-brand{margin:0!important;max-width:calc(100% - 94px)!important}
  .studio-global-brand svg{width:30px!important;height:30px!important;flex:0 0 auto!important}
  .studio-global-brand span{font-size:.76rem!important;max-width:148px!important}
  .studio-global-nav{display:none!important}
  .studio-header-actions{display:flex!important;margin-inline-start:auto!important;gap:5px!important}
  .studio-header-action{width:37px!important;height:37px!important;border-radius:12px!important}
  .studio-mobile-menu-btn{display:grid!important;place-items:center!important}
  .studio-mobile-menu-btn span{display:block!important}

  .studio-mobile-overlay{z-index:2147481000!important}
  .studio-mobile-drawer{z-index:2147481100!important;width:min(88vw,350px)!important}
  .studio-mobile-links{gap:5px!important}
  .studio-mobile-links a{min-height:46px!important;font-size:.75rem!important}

  body:not(.admin-body) main{width:100%!important;max-width:100%!important;overflow:visible!important;padding-inline:0!important}
  body:not(.admin-body) :where(.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-shell,.about-shell,.feed-shell,.stories-shell,.downloader-shell,
   .studio-explorer,.stats-section,.services-section,.about-preview,.gallery-container,.video-container,.playlist-grid,.yt-grid,.storiesGrid,.feed-grid){
    width:calc(100vw - 16px)!important;max-width:calc(100vw - 16px)!important;margin-inline:auto!important
  }

  /* repair large blank hero spaces */
  body:not(.admin-body) :where(.gallery-hero,.video-hero,.music-hero,.yt-hero,.storiesHero,.about-hero,.feed-hero,.intro){
    min-height:0!important;height:auto!important;padding-top:30px!important;padding-bottom:28px!important;margin-top:0!important
  }
  body[data-page="home"] :where(.hero,.hero-v3){min-height:min(70dvh,650px)!important}
  body[data-page="home"] main{padding-top:0!important}
  body[data-page="home"] .slider{margin-top:0!important}

  body:not(.admin-body) :where(h1,.hero-title,.intro h1){font-size:clamp(1.75rem,8vw,2.8rem)!important;line-height:1.09!important;letter-spacing:-.04em!important}
  body:not(.admin-body) :where(.section-title,h2){font-size:clamp(1.35rem,6vw,2rem)!important;line-height:1.2!important}
  body:not(.admin-body) :where(.hero-subtitle,.section-subtitle,.intro p){font-size:.85rem!important;line-height:1.75!important}

  body:not(.admin-body) :where(.gallery-grid,.video-grid,.playlist-grid,.yt-grid,.feed-grid,.storiesGrid,.services-grid,.features-grid){
    grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important
  }
  body:not(.admin-body) :where(.panel,.card,.feature-card,.service-card,.video-card,.playlist-card,.yt-card,.story-card,.feed-card,.gallery-item){
    border-radius:17px!important
  }
  body:not(.admin-body) :where(.panel,.form-panel,.preview){padding:14px!important}
  body:not(.admin-body) .studio-global-footer{margin-top:42px!important}
  body:not(.admin-body) .studio-global-footer__inner{width:calc(100% - 18px)!important;padding:24px 0 calc(26px + env(safe-area-inset-bottom))!important}
}

@media(max-width:560px){
  .studio-global-brand span{max-width:126px!important}
  body:not(.admin-body) :where(.gallery-grid,.video-grid,.playlist-grid,.yt-grid,.feed-grid,.storiesGrid,.services-grid,.features-grid){
    grid-template-columns:1fr!important
  }
  body:not(.admin-body) :where(.stats-section){grid-template-columns:repeat(2,minmax(0,1fr))!important}
  body:not(.admin-body) :where(.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-shell,.about-shell,.feed-shell,.stories-shell,.downloader-shell,
   .studio-explorer,.stats-section,.services-section,.about-preview,.gallery-container,.video-container,.playlist-grid,.yt-grid,.storiesGrid,.feed-grid){
    width:calc(100vw - 12px)!important;max-width:calc(100vw - 12px)!important
  }
}
@media(max-width:365px){
  body:not(.admin-body) :where(.stats-section){grid-template-columns:1fr!important}
  .studio-global-brand span{max-width:102px!important}
}


/* =====================================================================
   v17.2 — PERFORMANCE / IMAGE POLISH
   ===================================================================== */
:root{--studio-content-max:1320px}
body:not(.admin-body) img{background:linear-gradient(110deg,rgba(255,255,255,.025),rgba(255,255,255,.055),rgba(255,255,255,.025));background-size:200% 100%}
body:not(.admin-body) img:not([src=""]){transition:opacity .22s ease,transform .45s ease}
body:not(.admin-body) :where(.gallery-item,.video-card,.playlist-card,.yt-card,.story-card,.post,.featured-card){content-visibility:auto;contain-intrinsic-size:360px}
body:not(.admin-body) :where(.gallery-item,.featured-card,.story-card,.post) img{will-change:auto}
.studio-perf-chip{display:inline-flex;align-items:center;gap:6px;padding:6px 9px;border:1px solid var(--studio-line);border-radius:999px;background:var(--studio-surface);color:var(--studio-muted);font-size:.65rem;font-weight:800}
@media(max-width:700px){body:not(.admin-body) :where(.gallery-item,.featured-card,.story-card,.post){contain-intrinsic-size:300px}.studio-global-footer{content-visibility:auto;contain-intrinsic-size:320px}}


/* ===== v20.1 Stability & Zero Errors ===== */
[aria-busy="true"]{opacity:.7}
.studio-loading-dot{display:inline-flex;align-items:center;gap:8px;color:var(--studio-muted,#8f96a3)}
.studio-loading-dot::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--studio-accent,#e63946);box-shadow:0 0 0 0 color-mix(in srgb,var(--studio-accent,#e63946) 30%,transparent);animation:studioPulse20 1.35s ease-out infinite}
@keyframes studioPulse20{70%{box-shadow:0 0 0 9px transparent}100%{box-shadow:0 0 0 0 transparent}}
@supports(content-visibility:auto){
  .gallery-item,.video-card,.playlist-card,.yt-card,.story-card,.feed-card,.service-card,.feature-card{content-visibility:auto;contain-intrinsic-size:320px 280px}
}
@media(max-width:700px){
  img{image-rendering:auto}
  .gallery-item,.video-card,.playlist-card,.yt-card,.story-card{contain:layout paint style}
}


/* ===== v20.3 Image Engine & Performance ===== */
img{color:transparent}
img[loading="lazy"]{content-visibility:auto}
@media(prefers-reduced-data:reduce){
  .marquee-section,.marquee-track{display:none!important}
}
@media(max-width:560px){
  .marquee-item{width:min(70vw,260px)!important}
  .gallery-item img,.post img,.story-card img,.insta20-item img{transform:translateZ(0)}
}


/* ===== SOURCE: studio20.css ===== */
/* Ali963sy Studio 20.0 — unified experience layer */
:root{
  --s20-accent:var(--studio-accent,var(--primary,#e63946));
  --s20-bg:#06070a;--s20-panel:rgba(15,17,22,.86);--s20-panel-2:rgba(22,24,31,.82);
  --s20-line:rgba(255,255,255,.085);--s20-text:#f7f8fb;--s20-muted:#9299a7;
  --s20-shadow:0 22px 70px rgba(0,0,0,.3);--s20-radius:24px;
}
html{scroll-padding-top:80px}
body.studio20{background-color:var(--s20-bg)!important;color:var(--s20-text);text-rendering:optimizeLegibility}
body.studio20::before{content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;background:
 radial-gradient(680px 460px at 88% -10%,color-mix(in srgb,var(--s20-accent) 13%,transparent),transparent 64%),
 radial-gradient(580px 420px at 4% 92%,rgba(95,65,255,.07),transparent 68%)}
body.studio20 :where(a,button,input,select,textarea){-webkit-tap-highlight-color:transparent}
body.studio20 :where(button,a,[role=button]):focus-visible{outline:2px solid color-mix(in srgb,var(--s20-accent) 80%,white);outline-offset:3px}
body.studio20 :where(img,video){max-width:100%}
body.studio20 :where(section,.studio-card-polish,.gallery-item,.video-card,.playlist-card,.yt-card,.story-card,.feed-card,.article-card){content-visibility:auto;contain-intrinsic-size:auto 420px}

/* progress */
#studio20Progress,.studio-scroll-progress{position:fixed;top:0;left:0;height:2px;width:0;z-index:2147483646;background:linear-gradient(90deg,var(--s20-accent),#fff);box-shadow:0 0 16px color-mix(in srgb,var(--s20-accent) 65%,transparent);pointer-events:none;transition:width .08s linear}

/* unified header refinements */
.studio-global-header{border-bottom:1px solid rgba(255,255,255,.07)!important;background:rgba(6,7,10,.76)!important;backdrop-filter:blur(24px) saturate(125%)!important;-webkit-backdrop-filter:blur(24px) saturate(125%)!important}
.studio-global-header__inner{max-width:1320px!important}
.studio-global-brand{font-weight:950!important;letter-spacing:-.025em!important}
.studio-global-nav a{position:relative!important}
.studio-global-nav a::after{content:"";position:absolute;right:14px;left:14px;bottom:5px;height:2px;border-radius:99px;background:var(--s20-accent);transform:scaleX(0);transition:.22s}
.studio-global-nav a:hover::after,.studio-global-nav a.active::after{transform:scaleX(1)}
.studio-header-action{transition:transform .2s,border-color .2s,background .2s!important}
.studio-header-action:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--s20-accent) 40%,var(--s20-line))!important}

/* universal hero */
body.studio20 :where(.studio-hero-polish,.hero-v3-card,.hero-card,.folder-hero,.intro,.about-hero,.yt-hero,.music-hero,.storiesHero,.feed-hero){
 border:1px solid var(--s20-line)!important;box-shadow:var(--s20-shadow)!important;overflow:hidden!important
}
body.studio20 :where(.hero-actions,.overview-actions,.pm-actions){gap:9px!important}
body.studio20 :where(.hero-action,.hero-btn,.action,.btn-action,.btn-primary-small,.btn-soft,.lb-btn,.nav-btn,.refresh){
 min-height:43px;border-radius:13px!important;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease!important
}
body.studio20 :where(.hero-action,.hero-btn,.action,.btn-action,.btn-primary-small,.btn-soft,.lb-btn,.nav-btn,.refresh):hover{transform:translateY(-2px)}

/* richer home/explorer */
body[data-page="home"].studio20 .studio-explorer{padding-top:8px!important}
body[data-page="home"].studio20 .studio-explore-card{position:relative;overflow:hidden;border-radius:22px!important;background:linear-gradient(145deg,rgba(19,22,28,.94),rgba(9,11,15,.92))!important}
body[data-page="home"].studio20 .studio-explore-card::after{content:"";position:absolute;width:120px;height:120px;border-radius:50%;left:-35px;bottom:-55px;background:color-mix(in srgb,var(--s20-accent) 11%,transparent);filter:blur(4px)}

/* gallery */
body[data-page="gallery"].studio20 .gallery-toolbar{background:rgba(12,14,18,.82)!important;backdrop-filter:blur(22px)!important;border-color:var(--s20-line)!important}
body[data-page="gallery"].studio20 .gallery-item{box-shadow:0 16px 50px rgba(0,0,0,.22)!important}
body[data-page="gallery"].studio20 .gallery-item img{transition:transform .55s cubic-bezier(.2,.7,.2,1),filter .35s!important}
body[data-page="gallery"].studio20 .gallery-item:hover img{transform:scale(1.025)!important;filter:saturate(1.04) contrast(1.02)}
.studio20-load-more{grid-column:1/-1;display:flex;justify-content:center;padding:18px 0 8px}
.studio20-load-more button{border:1px solid var(--s20-line);background:rgba(255,255,255,.045);color:#fff;padding:12px 20px;border-radius:999px;font-weight:900;cursor:pointer}
.studio20-load-more button:hover{border-color:var(--s20-accent);background:color-mix(in srgb,var(--s20-accent) 14%,rgba(255,255,255,.04))}

/* videos */
body[data-page="videos"].studio20 .video-card{background:linear-gradient(150deg,rgba(18,20,26,.94),rgba(8,10,13,.96))!important;border-color:var(--s20-line)!important}
body[data-page="videos"].studio20 .video-thumb{background:linear-gradient(145deg,#10131a,#07080b)!important}
body[data-page="videos"].studio20 .play-orb{box-shadow:0 12px 36px rgba(0,0,0,.34),0 0 0 1px rgba(255,255,255,.08)}

/* music */
body[data-page="music"].studio20 .playlist-card{border-color:var(--s20-line)!important;background:linear-gradient(145deg,rgba(19,21,27,.94),rgba(8,10,13,.96))!important}
body[data-page="music"].studio20 #mini-player,body[data-page="music"].studio20 .player-bar{backdrop-filter:blur(24px) saturate(135%)!important;-webkit-backdrop-filter:blur(24px) saturate(135%)!important;border-top:1px solid rgba(255,255,255,.09)!important}
body[data-page="music"].studio20 .equalizer{filter:drop-shadow(0 8px 20px color-mix(in srgb,var(--s20-accent) 20%,transparent))}

/* stories */
body[data-page="stories"].studio20 .story-card{border-radius:24px!important;box-shadow:0 16px 50px rgba(0,0,0,.25)!important}

/* about */
body[data-page="about"].studio20 .about-card,body[data-page="about"].studio20 .profile-card,body[data-page="about"].studio20 .service-card{border-color:var(--s20-line)!important;background:linear-gradient(145deg,rgba(19,21,27,.9),rgba(9,11,14,.94))!important}
.studio20-about-strip{width:min(1180px,calc(100% - 28px));margin:22px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.studio20-about-strip>div{padding:16px;border:1px solid var(--s20-line);border-radius:18px;background:var(--s20-panel);text-align:center}
.studio20-about-strip strong{display:block;font-size:1rem;margin-bottom:4px}.studio20-about-strip small{color:var(--s20-muted)}

/* blog */
body[data-page="blog"].studio20 .studio20-blog-hero{width:min(1180px,calc(100% - 28px));margin:30px auto 18px;padding:clamp(26px,6vw,70px);border:1px solid var(--s20-line);border-radius:34px;background:linear-gradient(125deg,color-mix(in srgb,var(--s20-accent) 13%,#11141a),#090b0e);box-shadow:var(--s20-shadow)}
body[data-page="blog"].studio20 .studio20-blog-hero h1{font-size:clamp(2rem,7vw,5rem);line-height:1.02;margin:8px 0}
body[data-page="blog"].studio20 .studio20-blog-grid{width:min(1180px,calc(100% - 28px));margin:auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:14px;padding-bottom:80px}
body[data-page="blog"].studio20 .studio20-article{grid-column:span 6;display:grid;grid-template-columns:180px 1fr;min-height:200px;border:1px solid var(--s20-line);border-radius:22px;overflow:hidden;background:var(--s20-panel);text-decoration:none;color:inherit}
body[data-page="blog"].studio20 .studio20-article-media{background:#0d0f13;min-height:180px}.studio20-article-media img{width:100%;height:100%;object-fit:cover;display:block}
body[data-page="blog"].studio20 .studio20-article-copy{padding:20px}.studio20-article-copy small{color:var(--s20-accent);font-weight:900}.studio20-article-copy h2{font-size:1.25rem;margin:8px 0}.studio20-article-copy p{color:var(--s20-muted);line-height:1.75;font-size:.88rem}
body[data-page="blog"].studio20 .studio20-article-meta{display:flex;gap:12px;color:var(--s20-muted);font-size:.72rem;margin-top:14px}

/* private folder */
body[data-page="folder"].studio20 .private-v166-head{background:rgba(7,9,12,.88)!important;backdrop-filter:blur(22px)!important;border-bottom:1px solid var(--s20-line)!important}
body[data-page="folder"].studio20 .folder-hero{border-radius:30px!important}
body[data-page="folder"].studio20 .gallery-item,body[data-page="folder"].studio20 .folder-card{border-color:var(--s20-line)!important;box-shadow:0 16px 44px rgba(0,0,0,.2)!important}
body[data-page="folder"].studio20 .gallery-toolbar{border:1px solid var(--s20-line)!important;background:rgba(12,14,18,.82)!important;backdrop-filter:blur(20px)!important}

/* downloader */
body[data-page="downloader"].studio20 .workspace{gap:14px!important}
body[data-page="downloader"].studio20 .panel{background:linear-gradient(145deg,rgba(19,21,27,.92),rgba(8,10,13,.96))!important;border-color:var(--s20-line)!important}
body[data-page="downloader"].studio20 #downloadBtn{box-shadow:0 14px 40px color-mix(in srgb,var(--s20-accent) 20%,transparent)!important}

/* instagram/client upload */
body[data-page="client"].studio20 .upload-card,body[data-page="instagram"].studio20 .card{border-color:var(--s20-line)!important}

/* PWA install */
#studio20Install{position:fixed;left:18px;bottom:18px;z-index:2147479000;display:none;align-items:center;gap:9px;padding:10px 13px;border:1px solid var(--s20-line);border-radius:14px;background:rgba(9,11,15,.9);backdrop-filter:blur(18px);color:#fff;box-shadow:0 16px 50px rgba(0,0,0,.32);font-weight:850;cursor:pointer}
#studio20Install.show{display:flex}

/* mobile */
@media(max-width:900px){
 body.studio20{--s20-radius:20px}
 body.studio20 :where(.hero-v3-card,.hero-card,.folder-hero,.intro,.about-hero,.yt-hero,.music-hero,.storiesHero,.feed-hero){border-radius:22px!important}
 .studio20-about-strip{grid-template-columns:1fr;width:calc(100% - 16px)}
 body[data-page="blog"].studio20 .studio20-blog-grid{width:calc(100% - 16px);grid-template-columns:1fr}
 body[data-page="blog"].studio20 .studio20-article{grid-column:auto;grid-template-columns:110px 1fr;min-height:150px}
 body[data-page="blog"].studio20 .studio20-article-copy{padding:14px}.studio20-article-copy h2{font-size:1rem}
 #studio20Install{left:10px;bottom:calc(10px + env(safe-area-inset-bottom));font-size:.72rem}
}
@media(max-width:560px){body[data-page="blog"].studio20 .studio20-article{grid-template-columns:1fr}.studio20-article-media{height:190px}.studio20-article-copy p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}


/* ===== SOURCE: mobile20.css ===== */

/* Ali963sy Studio v20.2 — Mobile Perfection
   Loaded last to resolve legacy responsive conflicts safely. */
:root{
  --m20-safe-top:env(safe-area-inset-top,0px);
  --m20-safe-right:env(safe-area-inset-right,0px);
  --m20-safe-bottom:env(safe-area-inset-bottom,0px);
  --m20-safe-left:env(safe-area-inset-left,0px);
  --m20-touch:44px;
}
html{width:100%;max-width:100%;overflow-x:clip;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{width:100%;max-width:100%;overflow-x:clip}
img,video,canvas,svg,iframe{max-width:100%}
button,a,input,select,textarea{touch-action:manipulation}
input,select,textarea{font-size:16px}

@media(max-width:900px){
  html,body{min-height:100%;overscroll-behavior-x:none}
  body:not(.admin-body){
    --studio-header-h:58px!important;
    padding-left:var(--m20-safe-left);
    padding-right:var(--m20-safe-right);
  }
  body:not(.admin-body) main,
  body:not(.admin-body) section,
  body:not(.admin-body) article,
  body:not(.admin-body) aside,
  body:not(.admin-body) nav,
  body:not(.admin-body) header,
  body:not(.admin-body) footer{max-width:100%;min-width:0}

  body:not(.admin-body) :where(button,.studio-header-action,.studio-mobile-menu-btn,.filter-btn,.view-btn,.hero-btn,.icon-btn-v2,.sort-btn,.mode-btn,.action){
    min-height:var(--m20-touch);
  }
  body:not(.admin-body) :where(.studio-header-action,.studio-mobile-menu-btn,.view-btn,.icon-btn-v2){
    min-width:var(--m20-touch);
  }

  /* Header: single compact mobile bar */
  .studio-global-header{
    position:sticky!important;top:0!important;height:auto!important;min-height:calc(56px + var(--m20-safe-top))!important;
    padding-top:var(--m20-safe-top)!important;
    backdrop-filter:blur(20px) saturate(145%)!important;
    -webkit-backdrop-filter:blur(20px) saturate(145%)!important;
  }
  .studio-global-header__inner{
    min-height:56px!important;width:100%!important;max-width:100%!important;padding:0 8px!important;
    gap:6px!important;
  }
  .studio-global-brand{min-width:0!important;max-width:calc(100% - 98px)!important;overflow:hidden!important}
  .studio-global-brand span{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
  .studio-global-nav{display:none!important}
  .studio-header-actions{margin-inline-start:auto!important;flex:0 0 auto!important}

  /* Drawer */
  .studio-mobile-overlay{position:fixed!important;inset:0!important;height:100dvh!important}
  .studio-mobile-drawer{
    position:fixed!important;top:0!important;bottom:0!important;right:0!important;
    width:min(88vw,360px)!important;height:100dvh!important;max-height:100dvh!important;
    padding:max(18px,var(--m20-safe-top)) 14px max(22px,var(--m20-safe-bottom))!important;
    overflow-y:auto!important;overscroll-behavior:contain!important;
  }
  .studio-mobile-links a{min-height:48px!important;padding:11px 12px!important;border-radius:14px!important}

  /* Universal width + spacing repair */
  body:not(.admin-body) :where(.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-shell,.about-shell,.feed-shell,.stories-shell,.downloader-shell,
    .stats-section,.services-section,.about-preview,.gallery-container,.video-container,.playlist-grid,.yt-grid,.storiesGrid,.feed-grid,
    .workspace,.toolbar-shell,.gallery-toolbar-shell,.music-pro-strip,.studio-explorer){
    width:calc(100% - 16px)!important;max-width:calc(100% - 16px)!important;margin-inline:auto!important;
  }
  body:not(.admin-body) :where(.page-header,.section-header,.toolbar,.gallery-toolbar){
    max-width:100%!important;min-width:0!important;
  }

  /* Hero: remove inherited desktop whitespace */
  body:not(.admin-body) :where(.gallery-hero,.video-hero,.music-hero,.yt-hero,.storiesHero,.about-hero,.feed-hero,.intro,.blog-hero,.insta-hero){
    min-height:0!important;height:auto!important;margin-top:0!important;padding:26px 10px 24px!important;
  }
  body[data-page="home"] :where(.hero,.hero-v3){
    min-height:clamp(430px,68dvh,620px)!important;height:auto!important;
  }
  body:not(.admin-body) :where(h1,.hero-title,.intro h1){
    font-size:clamp(1.7rem,8.8vw,2.8rem)!important;line-height:1.08!important;overflow-wrap:anywhere;
  }
  body:not(.admin-body) :where(h2,.section-title,.page-title){overflow-wrap:anywhere}
  body:not(.admin-body) p{overflow-wrap:anywhere}

  /* Toolbars wrap instead of forcing horizontal overflow */
  body:not(.admin-body) :where(.toolbar,.gallery-toolbar,.toolbar-group,.filter-buttons,.hero-actions,.music-pro-actions,.pm-actions){
    flex-wrap:wrap!important;min-width:0!important;
  }
  body:not(.admin-body) :where(.toolbar-left,.toolbar-right,.toolbar-group){
    max-width:100%!important;min-width:0!important;
  }
  body:not(.admin-body) :where(.search-box,.music-search,.input-wrap){
    flex:1 1 180px!important;min-width:0!important;width:auto!important;
  }
  body:not(.admin-body) :where(.search-box input,.music-search input,.input-wrap input){width:100%!important;min-width:0!important}

  /* Grids */
  body:not(.admin-body) :where(.gallery-grid,.video-grid,.playlist-grid,.yt-grid,.feed-grid,.storiesGrid,.services-grid,.features-grid,.blog-grid,.insta-grid){
    grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important;
  }
  body:not(.admin-body) :where(.gallery-item,.video-card,.playlist-card,.yt-card,.feed-card,.story-card,.blog-card,.insta-card){
    min-width:0!important;max-width:100%!important;
  }

  /* Dialogs/lightboxes */
  body:not(.admin-body) :where(.viewer,.lightbox,.modal-player,.queue-panel){
    max-width:100vw!important;
  }
  body:not(.admin-body) :where(.viewer-shell,.lightbox-content,.modal-content){
    width:calc(100vw - 12px)!important;max-width:calc(100vw - 12px)!important;
    max-height:calc(100dvh - 18px)!important;
  }

  /* Music */
  body[data-page="music"]{padding-bottom:calc(96px + var(--m20-safe-bottom))!important}
  body[data-page="music"] :where(.player-bar,.bottom-player,.music-player-bar){
    left:6px!important;right:6px!important;bottom:max(6px,var(--m20-safe-bottom))!important;width:auto!important;max-width:none!important;
  }
  body[data-page="music"] .queue-panel{
    width:calc(100vw - 12px)!important;right:6px!important;left:6px!important;
    bottom:calc(84px + var(--m20-safe-bottom))!important;
  }

  /* Downloader */
  body[data-page="downloader"] main{padding-top:16px!important}
  body[data-page="downloader"] .workspace{grid-template-columns:1fr!important}
  body[data-page="downloader"] .row{grid-template-columns:1fr!important}
  body[data-page="downloader"] .row .action{width:100%!important}
  body[data-page="downloader"] .panel{padding:14px!important;border-radius:18px!important}

  /* Blog/About */
  body[data-page="blog"] :where(.blog-grid,.articles-grid){grid-template-columns:1fr!important}
  body[data-page="about"] :where(.about-grid,.about-layout,.profile-grid){grid-template-columns:1fr!important}
  body[data-page="about"] :where(.about-photo,.profile-photo){max-width:min(82vw,430px)!important;margin-inline:auto!important}

  /* Footer */
  .studio-global-footer__inner{width:calc(100% - 18px)!important;padding-bottom:calc(24px + var(--m20-safe-bottom))!important}
  .studio-footer-links{display:flex!important;flex-wrap:wrap!important;gap:8px 12px!important}

  /* Disable desktop hover movement on touch devices */
  @media(hover:none){
    body:not(.admin-body) :where(.gallery-item,.video-card,.playlist-card,.yt-card,.story-card,.studio-card-polish):hover{
      transform:none!important;
    }
  }
}

/* narrow phones */
@media(max-width:560px){
  body:not(.admin-body) :where(.gallery-grid,.video-grid,.playlist-grid,.yt-grid,.feed-grid,.storiesGrid,.services-grid,.features-grid,.blog-grid,.insta-grid){
    grid-template-columns:1fr!important;
  }
  body:not(.admin-body) :where(.stats-section,.music-pro-strip){
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  body:not(.admin-body) :where(.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-shell,.about-shell,.feed-shell,.stories-shell,.downloader-shell,
    .stats-section,.services-section,.about-preview,.gallery-container,.video-container,.playlist-grid,.yt-grid,.storiesGrid,.feed-grid,.workspace,.toolbar-shell,.gallery-toolbar-shell,.studio-explorer){
    width:calc(100% - 12px)!important;max-width:calc(100% - 12px)!important;
  }
  .studio-global-brand span{max-width:132px!important}
}

/* Admin mobile final layer */
@media(max-width:992px){
  body.admin-body{
    width:100%!important;max-width:100%!important;min-height:100dvh!important;
    padding:0!important;overflow-x:clip!important;background-attachment:scroll!important;
  }
  body.admin-body .mobile-header{
    min-height:calc(56px + var(--m20-safe-top))!important;
    padding:max(8px,var(--m20-safe-top)) 9px 8px!important;
  }
  body.admin-body .content-area{
    width:100%!important;max-width:100%!important;padding:7px 8px calc(86px + var(--m20-safe-bottom))!important;
  }
  body.admin-body .sidebar{
    width:min(90vw,340px)!important;height:100dvh!important;padding-bottom:calc(20px + var(--m20-safe-bottom))!important;
  }
  body.admin-body :where(.section-box,.glass-panel,.overview-hero,.page-manager-card,.stat-card,.admin20-card,.control-card){
    width:100%!important;max-width:100%!important;min-width:0!important;
  }
  body.admin-body :where(button,.btn,.btn-primary,.btn-secondary,.nav-link,.pm-open,.quick-link-btn){
    min-height:44px;
  }
  body.admin-body :where(input,select,textarea){font-size:16px!important;width:100%!important;min-width:0!important}
  body.admin-body :where(.stats-grid,.action-grid,.form-grid,.page-manager-grid,.admin-pro-grid,.pro-system-grid,.admin20-grid){
    min-width:0!important;
  }
  body.admin-body .table-wrap,
  body.admin-body .admin-table-wrap{width:100%!important;max-width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch}
  body.admin-body table{min-width:620px}
  body.admin-body .preview-browser{max-width:100%!important}
  body.admin-body .preview-browser iframe{height:min(62dvh,520px)!important}
}
@media(max-width:620px){
  body.admin-body .stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  body.admin-body :where(.action-grid,.form-grid,.page-manager-grid,.admin-pro-grid,.admin20-grid){grid-template-columns:1fr!important}
  body.admin-body .overview-actions{grid-template-columns:1fr!important}
  body.admin-body .stat-card{min-height:80px!important}
}
@media(max-width:360px){
  body.admin-body .stats-grid{grid-template-columns:1fr!important}
  body:not(.admin-body) :where(.stats-section,.music-pro-strip){grid-template-columns:1fr!important}
}

.m20-overflow-repair{max-width:100%!important;min-width:0!important}


/* ===== SOURCE: studio204.css ===== */
/* Ali963sy Studio v20.4 — Gallery Pro / Visual Polish */
:root{
  --s204-line:rgba(255,255,255,.085);
  --s204-soft:rgba(255,255,255,.035);
  --s204-shadow:0 22px 70px rgba(0,0,0,.28);
}

/* Better focus and touch feedback across the public site */
body:not(.admin-body) :where(a,button,[role="button"]):focus-visible{
  outline:2px solid color-mix(in srgb,var(--studio-accent,#e63946) 80%,white);
  outline-offset:3px;
}
body:not(.admin-body) :where(.hero-btn,.yt-btn,.filter-btn,.view-btn,.sort-btn,.action){
  transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
@media(hover:hover){
  body:not(.admin-body) :where(.hero-btn,.yt-btn,.filter-btn,.view-btn,.sort-btn,.action):hover{
    transform:translateY(-2px);
  }
}

/* Gallery: image first, no labels or filenames */
body[data-page="gallery"] .gallery-item{
  background:#0a0c10!important;border:1px solid var(--s204-line)!important;
  box-shadow:none!important;isolation:isolate;
}
body[data-page="gallery"] .gallery-item img{transition:transform .55s cubic-bezier(.2,.8,.2,1),filter .35s ease}
@media(hover:hover){
 body[data-page="gallery"] .gallery-item:hover img{transform:scale(1.025)}
}
body[data-page="gallery"] .gallery-badge,
body[data-page="gallery"] .gallery-overlay h4,
body[data-page="gallery"] .gallery-overlay p,
body[data-page="gallery"] .gallery-footer-info span{display:none!important}
body[data-page="gallery"] .gallery-overlay-clean{
  position:absolute!important;inset:0!important;display:flex!important;align-items:flex-end!important;
  justify-content:flex-start!important;padding:10px!important;
  background:linear-gradient(to top,rgba(0,0,0,.28),transparent 38%)!important;
  opacity:0!important;transition:opacity .25s ease!important;pointer-events:none!important;
}
body[data-page="gallery"] .gallery-item:hover .gallery-overlay-clean,
body[data-page="gallery"] .gallery-item:focus-within .gallery-overlay-clean{opacity:1!important}
body[data-page="gallery"] .gallery-action-icon{
  width:38px!important;height:38px!important;border-radius:12px!important;
  display:grid!important;place-items:center!important;background:rgba(8,9,12,.72)!important;
  border:1px solid rgba(255,255,255,.12)!important;color:#fff!important;
  backdrop-filter:blur(12px);
}
body[data-page="gallery"] .favorite-btn{
  z-index:5!important;top:9px!important;left:9px!important;width:42px!important;height:42px!important;
  border-radius:13px!important;background:rgba(8,9,12,.72)!important;border:1px solid rgba(255,255,255,.12)!important;
  backdrop-filter:blur(12px)!important;
}
@media(max-width:700px){
 body[data-page="gallery"] .gallery-overlay-clean{opacity:1!important;background:linear-gradient(to top,rgba(0,0,0,.20),transparent 32%)!important}
}

/* YouTube 20.4 */
body[data-page="youtube"] .yt-wrap{width:min(1320px,calc(100% - 20px))!important}
body[data-page="youtube"] .yt-hero{
  border:1px solid var(--s204-line);border-radius:28px;padding:clamp(26px,5vw,58px)!important;
  background:
    radial-gradient(circle at 90% 0,rgba(255,0,0,.13),transparent 32%),
    linear-gradient(145deg,#11141a,#080a0e);
  box-shadow:var(--s204-shadow);
}
body[data-page="youtube"] .yt-featured{
  border:1px solid var(--s204-line)!important;border-radius:24px!important;
  background:linear-gradient(145deg,rgba(19,22,28,.96),rgba(9,11,15,.96))!important;overflow:hidden;
}
body[data-page="youtube"] .yt-card{
  border:1px solid var(--s204-line)!important;border-radius:20px!important;overflow:hidden!important;
  background:linear-gradient(145deg,#11141a,#0a0c10)!important;box-shadow:none!important;
}
body[data-page="youtube"] .yt-thumb{position:relative;aspect-ratio:16/9;overflow:hidden;background:#08090c}
body[data-page="youtube"] .yt-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
@media(hover:hover){body[data-page="youtube"] .yt-card:hover .yt-thumb img{transform:scale(1.025)}}
body[data-page="youtube"] .yt-card-info{padding:14px!important}
body[data-page="youtube"] .yt-card-info h3{font-size:.98rem!important;line-height:1.55!important;margin:0 0 5px!important}
body[data-page="youtube"] .yt-card-info p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
body[data-page="youtube"] .yt-card-actions{display:flex;gap:7px;flex-wrap:wrap;margin-top:11px}
body[data-page="youtube"] .yt-card-actions button,
body[data-page="youtube"] .yt-card-actions a{
  min-height:40px;padding:7px 11px;border:1px solid rgba(255,255,255,.1);border-radius:11px;
  background:#0d1015;color:#fff;text-decoration:none;font:inherit;cursor:pointer;display:inline-flex;align-items:center;gap:6px
}
body[data-page="youtube"] .yt-card-actions .primary{background:rgba(230,57,70,.13);border-color:rgba(230,57,70,.30)}
body[data-page="youtube"] .yt-empty{
  grid-column:1/-1;padding:54px 20px!important;border:1px dashed rgba(255,255,255,.12)!important;
  border-radius:22px!important;background:rgba(255,255,255,.018)!important;text-align:center;
}
body[data-page="youtube"] .yt-viewer-box{border:1px solid rgba(255,255,255,.12)!important;box-shadow:0 35px 100px rgba(0,0,0,.55)}
body[data-page="youtube"] .yt-frame{background:#050608!important;aspect-ratio:16/9!important}
body[data-page="youtube"] .yt-frame iframe{width:100%;height:100%;border:0;display:block}
body[data-page="youtube"] .yt-player-note{
  display:flex;gap:8px;align-items:center;color:#9299a6;font-size:.72rem;margin-top:9px
}
body[data-page="youtube"] .yt-player-note i{color:#ff5a64}

/* Refined empty states everywhere */
body:not(.admin-body) :where(.empty,.empty-v3,.empty-state-v2,.insta20-empty,.yt-empty){
  color:var(--studio-muted,#969da8);
}


/* ===== SOURCE: studio205.css ===== */
/* Ali963sy Studio v20.5 — Music Pro & Media Experience */

/* MUSIC PRO */
body[data-page="music"]{
  --music205-line:rgba(255,255,255,.09);
  --music205-soft:rgba(255,255,255,.035);
}
body[data-page="music"] .featured-showcase{
  border:1px solid var(--music205-line)!important;
  box-shadow:0 26px 90px rgba(0,0,0,.34)!important;
}
body[data-page="music"] .playlist-card{
  border:1px solid var(--music205-line)!important;
  background:linear-gradient(145deg,rgba(19,22,27,.97),rgba(10,12,16,.97))!important;
  box-shadow:none!important;
}
body[data-page="music"] .playlist-card.active-track{
  border-color:color-mix(in srgb,var(--primary) 58%,transparent)!important;
  box-shadow:0 0 0 1px color-mix(in srgb,var(--primary) 18%,transparent)!important;
}
body[data-page="music"] .playlist-card::before{opacity:.35!important}
body[data-page="music"] .card-img-container{background:#080a0d!important}
body[data-page="music"] .play-badge{
  opacity:1!important;transform:none!important;width:44px!important;height:44px!important;
  background:rgba(8,9,12,.78)!important;color:#fff!important;border:1px solid rgba(255,255,255,.14)!important;
  backdrop-filter:blur(12px);
}
body[data-page="music"] .playlist-card.active-track .play-badge{
  background:var(--primary)!important;border-color:var(--primary)!important
}
body[data-page="music"] .card-actions{gap:8px}
body[data-page="music"] .music205-next{
  min-height:34px;padding:6px 9px;border-radius:9px;border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.025);color:#b8bec8;font:inherit;font-size:.7rem;
  display:inline-flex;align-items:center;gap:6px;cursor:pointer
}
body[data-page="music"] .music205-next:hover{border-color:rgba(230,57,70,.35);color:#fff}
body[data-page="music"] .music205-resume{
  background:rgba(230,57,70,.12)!important;border-color:rgba(230,57,70,.28)!important;color:#ff9ba2!important
}
body[data-page="music"] .music205-queue-label{
  padding:4px 8px 9px;font-size:.66rem;font-weight:900;letter-spacing:.12em;color:var(--primary)
}
body[data-page="music"] .music205-queue-divider{height:1px;background:rgba(255,255,255,.07);margin:7px 0 10px}
body[data-page="music"] .music205-upnext{background:rgba(230,57,70,.045)}
body[data-page="music"] .music205-queue-remove{
  width:32px;height:32px;border-radius:9px;border:1px solid rgba(255,255,255,.08);
  background:#111318;color:#969daa;cursor:pointer
}
body[data-page="music"] .player-bar{
  border:1px solid rgba(255,255,255,.11)!important;
  box-shadow:0 20px 70px rgba(0,0,0,.58)!important;
}
body[data-page="music"] .player-bar::before,
body[data-page="music"] .player-bar::after{content:none!important;display:none!important}
body[data-page="music"] .main-center-play{
  width:46px;height:46px;border-radius:14px;display:grid!important;place-items:center;
  background:var(--primary);color:#fff!important;box-shadow:0 10px 28px color-mix(in srgb,var(--primary) 30%,transparent)
}
body[data-page="music"] .progress-v165{height:5px!important}
body[data-page="music"] #progress-range::-webkit-slider-thumb{
  width:14px;height:14px;border-radius:50%;background:var(--primary);border:2px solid #fff
}
body[data-page="music"] #progress-range::-moz-range-thumb{
  width:14px;height:14px;border-radius:50%;background:var(--primary);border:2px solid #fff
}
body[data-page="music"] .queue-panel{border-color:rgba(255,255,255,.11)!important}
body[data-page="music"] .modal-content{border-color:rgba(255,255,255,.11)!important}

/* VIDEO EXPERIENCE */
body[data-page="videos"] .video-card{
  border-color:rgba(255,255,255,.085)!important;background:linear-gradient(145deg,#11141a,#090b0f)!important;
  box-shadow:none!important
}
body[data-page="videos"] .viewer-shell{filter:drop-shadow(0 34px 90px rgba(0,0,0,.42))}
body[data-page="videos"] #video205Pip{grid-column:1/-1}
body[data-page="videos"] .viewer-video{outline:none}
@media(hover:none){
  body[data-page="videos"] .video-card:hover{transform:none!important}
}

/* STORIES CINEMATIC */
body[data-page="stories"] .viewer{background:rgba(2,3,5,.985)!important}
body[data-page="stories"] .viewer-shell{box-shadow:0 34px 100px rgba(0,0,0,.48)}
body[data-page="stories"] .progress span.active i{animation-duration:6s!important}
body[data-page="stories"] .story205-paused .progress span.active i{animation-play-state:paused!important}
body[data-page="stories"] .story205-paused::after{
  content:"إيقاف مؤقت";position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);
  z-index:7;padding:9px 13px;border-radius:999px;background:rgba(0,0,0,.58);
  border:1px solid rgba(255,255,255,.14);color:#fff;font-size:.72rem;backdrop-filter:blur(12px)
}
body[data-page="stories"] .story205-hint{
  display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,.72);font-size:.68rem
}
body[data-page="stories"] .story-card{border:1px solid rgba(255,255,255,.08)!important}

/* Small-screen polish */
@media(max-width:680px){
  body[data-page="music"] .card-actions>span:first-child{display:none}
  body[data-page="music"] .music205-next span{display:none}
  body[data-page="music"] .music205-next{width:36px;padding:0;justify-content:center}
  body[data-page="music"] .player-bar{border-radius:18px!important}
  body[data-page="stories"] .story205-hint{display:none}
}


/* ===== SOURCE: studio209.css ===== */
/* Ali963sy Studio v20.9 — Site Experience Pro */
:root{
  --s209-line:rgba(255,255,255,.085);
  --s209-soft:rgba(255,255,255,.038);
  --s209-panel:#0d1015;
  --s209-shadow:0 24px 74px rgba(0,0,0,.30);
}
html{scroll-behavior:smooth}
body:not(.admin-body){
  -webkit-tap-highlight-color:transparent;
  text-rendering:optimizeLegibility;
}
body:not(.admin-body)::before{
  content:"";position:fixed;top:0;right:0;height:2px;width:var(--s209-progress,0%);
  background:var(--studio-accent,var(--primary,#e63946));z-index:2147483000;
  box-shadow:0 0 16px color-mix(in srgb,var(--studio-accent,var(--primary,#e63946)) 50%,transparent);
  transition:width .08s linear;pointer-events:none
}
body.s209-page-ready{animation:s209PageIn .28s ease both}
body.s209-page-leaving{opacity:.88;transform:translateY(2px);transition:opacity .11s ease,transform .11s ease}
@keyframes s209PageIn{from{opacity:.72}to{opacity:1}}

body:not(.admin-body) :where(header,.studio-global-header,.topbar,.top){
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease,transform .25s ease!important
}
body.s209-scrolled :where(header,.studio-global-header,.topbar,.top){
  box-shadow:0 12px 44px rgba(0,0,0,.25)!important
}
body:not(.admin-body) :where(.hero,.hero-card,.hero-v3-card,.yt-hero,.featured-showcase,.about-hero,.feed-hero,.folder-hero){
  position:relative
}
body:not(.admin-body) :where(.hero-card,.hero-v3-card,.yt-hero,.featured-showcase,.about-hero,.feed-hero,.folder-hero)::before{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:0;
  background:linear-gradient(120deg,rgba(255,255,255,.025),transparent 32%,rgba(255,255,255,.018) 58%,transparent);
  opacity:.72
}
body:not(.admin-body) :where(.hero-content,.hero-copy,.showcase-content-wrapper,.yt-hero-copy,.about-hero-content,.feed-hero-copy){position:relative;z-index:1}

/* Unified card language */
body:not(.admin-body) :where(.gallery-item,.video-card,.playlist-card,.story-card,.feed-card,.yt-card,.blog-card,.instagram-card){
  border-color:var(--s209-line)!important;
  box-shadow:0 14px 42px rgba(0,0,0,.18)!important;
  transition:transform .28s cubic-bezier(.2,.7,.2,1),border-color .25s ease,box-shadow .28s ease!important;
  contain:layout paint
}
@media(hover:hover){
  body:not(.admin-body) :where(.gallery-item,.video-card,.playlist-card,.story-card,.feed-card,.yt-card,.blog-card,.instagram-card):hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,.14)!important;
    box-shadow:0 22px 58px rgba(0,0,0,.27)!important
  }
}

/* Images appear softly after decode; no layout jump */
body:not(.admin-body) img.s209-media{
  opacity:.001;transition:opacity .32s ease,transform .45s cubic-bezier(.2,.7,.2,1);background:#0b0d11
}
body:not(.admin-body) img.s209-media.s209-loaded{opacity:1}
body:not(.admin-body) img.s209-media.s209-error{opacity:.32;filter:grayscale(1)}
.s209-skeleton{
  position:absolute;inset:0;pointer-events:none;z-index:0;
  background:linear-gradient(100deg,#0c0f14 20%,#151a21 40%,#0c0f14 60%);
  background-size:220% 100%;animation:s209Shimmer 1.1s linear infinite
}
@keyframes s209Shimmer{to{background-position:-220% 0}}
.s209-media-wrap{position:relative;overflow:hidden}
.s209-media-wrap>.s209-skeleton+.s209-media{position:relative;z-index:1}

/* Compact public toolbar/header on small screens */
@media(max-width:760px){
  body:not(.admin-body) :where(header,.studio-global-header,.topbar,.top){
    min-height:62px!important
  }
  body:not(.admin-body) :where(.hero-card,.hero-v3-card,.yt-hero,.featured-showcase,.about-hero,.feed-hero){
    border-radius:22px!important
  }
  body:not(.admin-body) :where(.hero h1,.hero-card h1,.yt-hero h1,.featured-showcase h1,.about-hero h1,.feed-hero h1){
    letter-spacing:-.035em!important
  }
  body[data-page="gallery"] .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important
  }
  body[data-page="gallery"] .gallery-item{
    min-height:0!important;height:auto!important;aspect-ratio:4/5;border-radius:16px!important
  }
  body[data-page="gallery"] .gallery-item img{width:100%!important;height:100%!important;object-fit:cover!important}
  body[data-page="videos"] .video-grid{grid-template-columns:1fr!important;gap:10px!important}
  body[data-page="videos"] .video-card{border-radius:18px!important}
  body[data-page="music"] :where(.playlist-grid,.music-grid){grid-template-columns:1fr!important}
}

/* Mobile quick dock: intentionally tiny and only on public pages */
#s209Dock{
  position:fixed;left:50%;bottom:max(10px,env(safe-area-inset-bottom));transform:translateX(-50%);
  z-index:2147480000;display:none;align-items:center;gap:4px;padding:5px;
  border:1px solid rgba(255,255,255,.105);border-radius:17px;background:rgba(9,11,15,.90);
  backdrop-filter:blur(20px) saturate(135%);-webkit-backdrop-filter:blur(20px) saturate(135%);
  box-shadow:0 18px 54px rgba(0,0,0,.42)
}
#s209Dock a{
  width:48px;height:45px;border-radius:12px;display:grid;place-items:center;color:#89919c;text-decoration:none;font-size:.9rem
}
#s209Dock a.active{color:#fff;background:color-mix(in srgb,var(--studio-accent,var(--primary,#e63946)) 18%,transparent)}
#s209Dock a span{display:none}
@media(max-width:760px){
  body[data-page]:not([data-page="downloader"]):not([data-page="folder"]):not([data-page="music"]) #s209Dock{display:flex}
  body[data-page]:not([data-page="downloader"]):not([data-page="folder"]):not([data-page="music"]){padding-bottom:max(72px,calc(58px + env(safe-area-inset-bottom)))}
}

/* Back to top */
#s209Top{
  position:fixed;right:12px;bottom:14px;z-index:2147479000;width:42px;height:42px;border-radius:13px;
  border:1px solid rgba(255,255,255,.1);background:rgba(10,12,16,.86);color:#fff;display:grid;place-items:center;
  opacity:0;transform:translateY(10px);pointer-events:none;transition:.22s;backdrop-filter:blur(18px);cursor:pointer
}
#s209Top.show{opacity:1;transform:none;pointer-events:auto}
@media(max-width:760px){#s209Top{bottom:max(72px,calc(62px + env(safe-area-inset-bottom)))}body[data-page="music"] #s209Top{bottom:max(112px,calc(102px + env(safe-area-inset-bottom)))}}

/* Better touch controls */
@media(pointer:coarse){
  body:not(.admin-body) :where(button,a,.filter-btn,.view-btn,.sort-btn,.hero-btn){min-height:42px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}

;
/* SOURCE: gallery212.css?v=26.3.0 */
/* Ali963sy Studio v21.2 — Public Gallery Collections & Tags */
.g212-explorer{width:min(1320px,calc(100% - 40px));margin:16px auto 2px;padding:14px;border:1px solid rgba(255,255,255,.075);border-radius:22px;background:linear-gradient(145deg,rgba(16,20,26,.88),rgba(8,10,14,.9));overflow:hidden}
.g212-explorer[hidden]{display:none!important}.g212-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}.g212-head strong{color:#f0f2f5;font-size:.78rem}.g212-head span{color:#737d89;font-size:.6rem}
.g212-collections{display:flex;gap:7px;overflow-x:auto;overscroll-behavior-x:contain;padding:1px 1px 7px;scrollbar-width:thin}.g212-col{flex:0 0 180px;min-height:74px;border:1px solid rgba(255,255,255,.065);border-radius:13px;overflow:hidden;background:#0e1217;color:#fff;display:grid;grid-template-columns:60px minmax(0,1fr);gap:8px;align-items:center;padding:5px;text-align:right;cursor:pointer;transition:.2s}.g212-col:hover,.g212-col.active{border-color:color-mix(in srgb,var(--primary) 38%,transparent);background:color-mix(in srgb,var(--primary) 8%,#0e1217);transform:translateY(-1px)}.g212-col-media{width:60px;height:62px;border-radius:10px;overflow:hidden;background:#161a21;display:grid;place-items:center;color:#69727e}.g212-col-media img{width:100%;height:100%;object-fit:cover}.g212-col strong{display:block;font-size:.62rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.g212-col small{display:block;color:#747e89;font-size:.51rem;margin-top:3px}.g212-col.all{grid-template-columns:42px minmax(0,1fr);flex-basis:135px}.g212-col.all .g212-col-media{width:42px;height:42px}
.g212-tags{display:flex;align-items:center;gap:5px;flex-wrap:wrap;padding-top:9px;border-top:1px solid rgba(255,255,255,.05)}.g212-tag{min-height:32px;padding:5px 9px;border:1px solid rgba(255,255,255,.065);border-radius:999px;background:rgba(255,255,255,.025);color:#89939f;font:800 .56rem inherit;cursor:pointer}.g212-tag:hover,.g212-tag.active{color:#fff;background:color-mix(in srgb,var(--primary) 12%,rgba(255,255,255,.025));border-color:color-mix(in srgb,var(--primary) 34%,transparent)}
.g212-filter-state{display:none;align-items:center;gap:6px;width:min(1320px,calc(100% - 40px));margin:8px auto 0;color:#7e8994;font-size:.58rem}.g212-filter-state.show{display:flex}.g212-filter-state button{border:0;background:none;color:var(--primary);font:800 .58rem inherit;cursor:pointer}
@media(max-width:760px){.g212-explorer{width:calc(100% - 20px);padding:10px;border-radius:17px;margin-top:10px}.g212-col{flex-basis:155px;min-height:65px;grid-template-columns:52px minmax(0,1fr)}.g212-col-media{width:52px;height:54px}.g212-head span{display:none}.g212-filter-state{width:calc(100% - 20px)}}

;
/* SOURCE: gallery213.css?v=26.3.0 */
/* Ali963sy Studio v21.3 — Public Gallery Showcase */
.g213-showcase{width:min(1320px,calc(100% - 40px));margin:18px auto 4px;padding:14px;border:1px solid rgba(255,255,255,.075);border-radius:22px;background:linear-gradient(145deg,rgba(17,21,27,.9),rgba(8,10,14,.92));overflow:hidden}.g213-showcase[hidden]{display:none!important}.g213-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}.g213-head strong{color:#f0f2f5;font-size:.78rem}.g213-head span{color:#747e89;font-size:.59rem}.g213-strip{display:flex;gap:8px;overflow-x:auto;padding-bottom:5px}.g213-item{flex:0 0 190px;border:0;padding:0;background:#0e1217;border-radius:14px;overflow:hidden;cursor:pointer;position:relative}.g213-item img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.g213-item i{position:absolute;top:8px;right:8px;color:#f3c86f;background:rgba(0,0,0,.72);width:27px;height:27px;border-radius:8px;display:grid;place-items:center}.g213-smart{display:flex;gap:6px;flex-wrap:wrap;width:min(1320px,calc(100% - 40px));margin:9px auto 0}.g213-chip{min-height:32px;padding:5px 9px;border:1px solid rgba(255,255,255,.065);border-radius:999px;background:rgba(255,255,255,.025);color:#89939f;font:800 .56rem inherit;cursor:pointer}.g213-chip.active,.g213-chip:hover{color:#fff;background:color-mix(in srgb,var(--primary) 12%,rgba(255,255,255,.025));border-color:color-mix(in srgb,var(--primary) 34%,transparent)}.g213-lb-copy{max-width:min(900px,90vw);text-align:center;margin:10px auto 0}.g213-lb-copy strong{display:block;color:#fff;font-size:.9rem}.g213-lb-copy p{margin:4px 0 0;color:#9ba3ad;font-size:.68rem;line-height:1.7}.gallery-item.g213-featured:before{content:"★";position:absolute;top:18px;right:18px;z-index:6;width:34px;height:34px;border-radius:50%;background:rgba(0,0,0,.56);backdrop-filter:blur(10px);border:1px solid rgba(245,199,108,.24);color:#f5c76c;display:grid;place-items:center}.gallery-item.g213-featured .gallery-overlay{opacity:1;background:linear-gradient(to top,rgba(0,0,0,.42),transparent 55%)}@media(max-width:760px){.g213-showcase,.g213-smart{width:calc(100% - 20px)}.g213-item{flex-basis:145px}.g213-head span{display:none}}

;
/* SOURCE: studio22-experience.css?v=26.3.0 */
/* Ali963sy Studio v22.0 Public Experience CSS */

/* ===== SOURCE: mobile214.css ===== */
/* Ali963sy Studio v21.4 — Mobile Experience Pro */
:root{
  --m214-safe-top:env(safe-area-inset-top,0px);
  --m214-safe-bottom:env(safe-area-inset-bottom,0px);
  --m214-dock-h:66px;
  --m214-radius:18px;
}
html{max-width:100%;overflow-x:hidden}
body:not(.admin-body){max-width:100%;overflow-x:hidden}
body.m214-lock{overflow:hidden!important;touch-action:none!important}
.m214-route-progress{
  position:fixed;top:0;left:0;height:3px;width:0;z-index:99999;pointer-events:none;
  background:linear-gradient(90deg,var(--primary,#e63946),#ff8378);
  box-shadow:0 0 18px color-mix(in srgb,var(--primary,#e63946) 45%,transparent);
  opacity:0;transition:width .22s ease,opacity .2s ease
}
.m214-route-progress.on{opacity:1}
.m214-route-progress.done{width:100%!important;opacity:0}

.m214-dock,.m214-more-sheet,.m214-more-backdrop,.m214-top-btn{display:none}
@media(max-width:768px){
  body:not(.admin-body):not([data-page="music"]){
    padding-bottom:calc(var(--m214-dock-h) + 18px + var(--m214-safe-bottom))!important
  }
  body:not(.admin-body) :where(button,a,input,select,textarea){-webkit-tap-highlight-color:transparent}
  body:not(.admin-body) :where(button,a){touch-action:manipulation}
  body:not(.admin-body) :where(img,video,iframe,canvas,svg){max-width:100%}
  body:not(.admin-body) :where(.wrap,.container,.page-shell,.gallery-shell,.video-shell,.music-shell,.yt-wrap,.about-shell,.feed-shell,.stories-shell,.downloader-shell,.workspace,.toolbar-shell,.gallery-toolbar-shell){
    min-width:0!important
  }

  .m214-dock{
    display:grid;grid-template-columns:repeat(5,minmax(0,1fr));align-items:center;
    position:fixed;left:8px;right:8px;bottom:max(8px,var(--m214-safe-bottom));
    height:var(--m214-dock-h);padding:6px;z-index:4200;border-radius:20px;
    border:1px solid rgba(255,255,255,.105);
    background:rgba(8,10,14,.94);
    backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
    box-shadow:0 20px 60px rgba(0,0,0,.52)
  }
  body[data-page="music"] .m214-dock{display:none!important}
  .m214-dock a,.m214-dock button{
    min-width:0;height:52px;border:0;border-radius:14px;background:transparent;color:#747f8b;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
    font:800 .5rem/1.1 inherit;text-decoration:none;cursor:pointer
  }
  .m214-dock i{font-size:.96rem}
  .m214-dock .active{color:#fff;background:color-mix(in srgb,var(--primary,#e63946) 12%,rgba(255,255,255,.025))}
  .m214-dock .active i{color:var(--primary,#e63946)}
  .m214-dock span{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

  .m214-more-backdrop{
    display:block;position:fixed;inset:0;z-index:4290;background:rgba(0,0,0,.65);
    backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px);
    opacity:0;visibility:hidden;pointer-events:none;transition:.22s ease
  }
  .m214-more-backdrop.open{opacity:1;visibility:visible;pointer-events:auto}
  .m214-more-sheet{
    display:block;position:fixed;left:8px;right:8px;bottom:calc(var(--m214-dock-h) + 18px + var(--m214-safe-bottom));
    z-index:4300;max-height:min(68dvh,590px);overflow:hidden;border-radius:22px;
    border:1px solid rgba(255,255,255,.1);background:rgba(10,12,16,.985);
    box-shadow:0 28px 80px rgba(0,0,0,.68);
    transform:translateY(28px) scale(.985);opacity:0;visibility:hidden;pointer-events:none;
    transition:transform .24s cubic-bezier(.2,.8,.2,1),opacity .2s ease,visibility .2s ease
  }
  .m214-more-sheet.open{transform:none;opacity:1;visibility:visible;pointer-events:auto}
  .m214-more-head{
    min-height:56px;padding:9px 11px;display:flex;align-items:center;justify-content:space-between;gap:10px;
    border-bottom:1px solid rgba(255,255,255,.065)
  }
  .m214-more-head strong{font-size:.72rem;color:#fff}
  .m214-more-head small{display:block;color:#747e89;font-size:.5rem;margin-top:2px}
  .m214-more-close{
    width:38px;height:38px;min-height:38px!important;border:1px solid rgba(255,255,255,.08)!important;
    border-radius:11px!important;background:rgba(255,255,255,.035)!important;color:#cbd2db!important
  }
  .m214-more-grid{
    max-height:calc(min(68dvh,590px) - 56px);overflow-y:auto;overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;padding:8px;display:grid;grid-template-columns:1fr 1fr;gap:6px
  }
  .m214-more-grid a{
    min-width:0;min-height:58px;padding:9px 10px;border:1px solid rgba(255,255,255,.055);
    border-radius:13px;background:rgba(255,255,255,.018);color:#b9c1cb;text-decoration:none;
    display:grid;grid-template-columns:34px minmax(0,1fr);gap:9px;align-items:center
  }
  .m214-more-grid a.active{
    background:color-mix(in srgb,var(--primary,#e63946) 9%,rgba(255,255,255,.018));
    border-color:color-mix(in srgb,var(--primary,#e63946) 24%,rgba(255,255,255,.055));color:#fff
  }
  .m214-more-grid i{
    width:34px;height:34px;border-radius:10px;display:grid;place-items:center;
    background:rgba(255,255,255,.04);color:var(--primary,#e63946)
  }
  .m214-more-grid strong{display:block;font-size:.61rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .m214-more-grid small{display:block;color:#6f7984;font-size:.48rem;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

  .m214-top-btn{
    display:grid;place-items:center;position:fixed;left:14px;
    bottom:calc(var(--m214-dock-h) + 22px + var(--m214-safe-bottom));z-index:4100;
    width:40px;height:40px;border:1px solid rgba(255,255,255,.09);border-radius:13px;
    background:rgba(9,11,15,.9);color:#aab3bd;box-shadow:0 12px 34px rgba(0,0,0,.36);
    opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s;cursor:pointer
  }
  body[data-page="music"] .m214-top-btn{bottom:calc(var(--m2131-player-h,160px) + 18px + var(--m214-safe-bottom))}
  .m214-top-btn.show{opacity:1;visibility:visible;transform:none}

  /* unified phone dialogs/viewers */
  body:not(.admin-body) :where(.viewer,.yt-viewer,.insta20-view,.modal-player,.lightbox){
    max-width:100vw!important;max-height:100dvh!important
  }
  body:not(.admin-body) :where(.viewer.open,.yt-viewer.open,.insta20-view.open,.modal-player.open,.lightbox.open){
    overscroll-behavior:contain!important
  }

  /* phone ergonomics */
  body:not(.admin-body) :where(.hero-actions,.showcase-btns,.yt-actions){
    max-width:100%;min-width:0
  }
  body:not(.admin-body) :where(.hero-actions button,.hero-actions a,.showcase-btns button,.yt-actions button,.yt-actions a){
    min-height:44px
  }
  body:not(.admin-body) :where(.toolbar,.library-toolbar,.yt-toolbar,.gallery-toolbar){
    max-width:100%!important;min-width:0!important
  }
}
@media(max-width:390px){
  .m214-dock{left:6px;right:6px}
  .m214-more-sheet{left:6px;right:6px}
  .m214-more-grid{grid-template-columns:1fr 1fr}
  .m214-dock a,.m214-dock button{font-size:.46rem}
}
@media(prefers-reduced-motion:reduce){
  .m214-route-progress,.m214-more-backdrop,.m214-more-sheet,.m214-top-btn{transition:none!important}
}


/* ===== SOURCE: pwa215.css ===== */
/* Ali963sy Studio v21.5 — PWA & Smart Performance Pro */
:root{--p215-safe-bottom:env(safe-area-inset-bottom,0px)}
#studio20Net{display:none!important}
#studio20Install{
  position:fixed!important;left:14px!important;right:auto!important;bottom:18px!important;z-index:4700!important;
  min-height:43px!important;max-width:min(260px,calc(100vw - 28px))!important;padding:9px 12px!important;
  border:1px solid rgba(255,255,255,.1)!important;border-radius:14px!important;
  background:rgba(8,10,14,.94)!important;color:#fff!important;box-shadow:0 18px 50px rgba(0,0,0,.5)!important;
  backdrop-filter:blur(20px)!important;-webkit-backdrop-filter:blur(20px)!important;
  font:800 .63rem/1.2 inherit!important
}
.p215-status{
  position:fixed;top:max(10px,env(safe-area-inset-top));left:50%;z-index:9800;
  transform:translate(-50%,-18px);opacity:0;visibility:hidden;pointer-events:none;
  min-height:38px;max-width:min(90vw,520px);padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.09);background:rgba(8,10,14,.95);color:#dce2e9;
  box-shadow:0 14px 44px rgba(0,0,0,.46);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  display:flex;align-items:center;justify-content:center;gap:8px;font:800 .58rem/1.3 inherit;
  transition:opacity .2s,transform .2s,visibility .2s
}
.p215-status.show{opacity:1;visibility:visible;transform:translate(-50%,0)}
.p215-status.offline i{color:#efc36e}.p215-status.online i{color:#63d9a3}
.p215-update{
  position:fixed;right:12px;left:12px;bottom:calc(12px + var(--p215-safe-bottom));z-index:9600;
  max-width:620px;margin:auto;padding:10px;border-radius:17px;border:1px solid rgba(255,255,255,.1);
  background:rgba(9,11,15,.97);box-shadow:0 22px 70px rgba(0,0,0,.62);
  display:grid;grid-template-columns:38px minmax(0,1fr) auto;gap:9px;align-items:center;
  opacity:0;visibility:hidden;transform:translateY(18px);transition:.22s
}
.p215-update.show{opacity:1;visibility:visible;transform:none}
.p215-update .ico{width:38px;height:38px;border-radius:11px;background:color-mix(in srgb,var(--primary,#e63946) 13%,rgba(255,255,255,.03));color:var(--primary,#e63946);display:grid;place-items:center}
.p215-update strong{display:block;color:#fff;font-size:.64rem}.p215-update small{display:block;color:#747e89;font-size:.5rem;margin-top:2px}
.p215-update button{min-height:38px;padding:7px 10px;border:1px solid color-mix(in srgb,var(--primary,#e63946) 28%,rgba(255,255,255,.08));border-radius:10px;background:color-mix(in srgb,var(--primary,#e63946) 12%,#12161c);color:#fff;font:800 .56rem inherit;cursor:pointer}
.p215-update .dismiss{background:transparent;border-color:rgba(255,255,255,.07);color:#8c96a2}
@media(max-width:768px){
  #studio20Install{
    left:10px!important;bottom:calc(var(--m214-dock-h,66px) + 20px + env(safe-area-inset-bottom))!important
  }
  body[data-page="music"] #studio20Install{
    bottom:calc(var(--m2131-player-h,164px) + 22px + env(safe-area-inset-bottom))!important
  }
  .p215-update{
    bottom:calc(var(--m214-dock-h,66px) + 18px + var(--p215-safe-bottom));
    grid-template-columns:36px minmax(0,1fr);padding:9px
  }
  body[data-page="music"] .p215-update{bottom:calc(var(--m2131-player-h,164px) + 18px + var(--p215-safe-bottom))}
  .p215-update .actions{grid-column:1/-1;display:grid;grid-template-columns:1fr auto;gap:6px}
  .p215-update button{width:100%}
}
@media(prefers-reduced-motion:reduce){.p215-status,.p215-update{transition:none!important}}


/* ==========================================================
   Ali963sy Studio v22.0 — Core Stability Layer
   ========================================================== */
:root{
  --s22-safe-top:env(safe-area-inset-top,0px);
  --s22-safe-bottom:env(safe-area-inset-bottom,0px);
  --s22-focus:color-mix(in srgb,var(--primary,#e63946) 62%,white 10%);
}
html{max-width:100%;overflow-x:hidden}
body:not(.admin-body){max-width:100%;overflow-x:hidden}
body:not(.admin-body) :where(img,video,iframe,canvas,svg){max-width:100%}
body:not(.admin-body) :where(button,a,input,select,textarea):focus-visible{
  outline:2px solid var(--s22-focus)!important;outline-offset:2px!important
}
.m20-overflow-repair{max-width:100%!important;min-width:0!important}
@media(max-width:768px){
  body:not(.admin-body) :where(.container,.wrap,.page-shell,.content,.main,.section,.panel,.card,.toolbar,.grid){min-width:0}
  body:not(.admin-body) :where(button,a,[role="button"]){touch-action:manipulation}
  body:not(.admin-body) :where(.lightbox,.viewer,.modal-player,.queue-panel,.m214-more-sheet){overscroll-behavior:contain}
}
@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto!important}}

/* v22.2.1 — Single mobile navigation authority */
#s209Dock,#s209Top{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important}
@media(max-width:768px){
  body:not(.admin-body):not([data-page="music"]){
    padding-bottom:calc(var(--m214-dock-h,66px) + 18px + env(safe-area-inset-bottom))!important
  }
  .m214-dock{display:grid!important}
  .m214-top-btn{display:grid!important}
}

;
/* SOURCE: theme222.css?v=26.3.0 */
/* Ali963sy Studio v22.2 — Unified Visual Theme Engine */
:root{--t222-bg:#060709;--t222-surface:#0d1014;--t222-surface2:#151a20;--t222-text:#f7f8fa;--t222-muted:#8e98a4;--t222-line:rgba(255,255,255,.085);--t222-header:rgba(7,9,12,.76);--t222-shadow:0 24px 80px rgba(0,0,0,.42);--t222-radius:20px;--t222-on-accent:#fff;--t222-accent2:#8b5cf6}
body[data-studio-theme="obsidian"]{--t222-bg:#050608;--t222-surface:#0c0e12;--t222-surface2:#14171c;--t222-muted:#8f98a3;--t222-accent2:#8b5cf6}
body[data-studio-theme="noir-glass"]{--t222-bg:#050506;--t222-surface:#0b0c0f;--t222-surface2:#15171b;--t222-muted:#969ba4;--t222-accent2:#7c3aed}
body[data-studio-theme="crimson-cinema"]{--t222-bg:#090305;--t222-surface:#14070a;--t222-surface2:#210b10;--t222-muted:#ad8b90;--t222-accent2:#fb7185}
body[data-studio-theme="aurora"]{--t222-bg:#040b13;--t222-surface:#071522;--t222-surface2:#0d2437;--t222-muted:#86a1b7;--t222-accent2:#34d399}
body[data-studio-theme="royal-violet"]{--t222-bg:#09050f;--t222-surface:#13091e;--t222-surface2:#211036;--t222-muted:#a797b2;--t222-accent2:#ec4899}
body[data-studio-theme="ocean"]{--t222-bg:#031015;--t222-surface:#061b23;--t222-surface2:#0a2933;--t222-muted:#86a6ae;--t222-accent2:#14b8a6}
body[data-studio-theme="graphite"]{--t222-bg:#0c0e11;--t222-surface:#15181c;--t222-surface2:#20242a;--t222-muted:#9ba3ad;--t222-accent2:#64748b}
body[data-studio-theme="midnight"]{--t222-bg:#040611;--t222-surface:#090d1d;--t222-surface2:#111832;--t222-muted:#8c96b2;--t222-accent2:#8b5cf6}
body[data-studio-theme="cinema"]{--t222-bg:#090704;--t222-surface:#151008;--t222-surface2:#23190d;--t222-muted:#a89a84;--t222-accent2:#f59e0b}
body[data-studio-theme="editorial-ivory"]{--t222-bg:#f2eee7;--t222-surface:#fffdfa;--t222-surface2:#e8e0d4;--t222-text:#181511;--t222-muted:#62584e;--t222-line:rgba(49,37,24,.14);--t222-header:rgba(255,253,250,.84);--t222-shadow:0 22px 65px rgba(64,47,31,.13);--t222-accent2:#b58a61}
body[data-studio-theme="light"]{--t222-bg:#f4f6fa;--t222-surface:#fff;--t222-surface2:#e9edf5;--t222-text:#111827;--t222-muted:#667085;--t222-line:rgba(17,24,39,.12);--t222-header:rgba(255,255,255,.86);--t222-shadow:0 22px 65px rgba(17,24,39,.12);--t222-accent2:#7c3aed}
body[data-studio-theme="velvet-rose"]{--t222-bg:#10060b;--t222-surface:#1a0b12;--t222-surface2:#2a101c;--t222-muted:#b493a1;--t222-accent2:#fb7185}
body[data-studio-theme="cobalt-neon"]{--t222-bg:#020713;--t222-surface:#061126;--t222-surface2:#0b1e3d;--t222-muted:#86a1c3;--t222-accent2:#22d3ee}
body[data-studio-theme="emerald-film"]{--t222-bg:#03100b;--t222-surface:#071a12;--t222-surface2:#0c291d;--t222-muted:#8aa89b;--t222-accent2:#a3e635}
body[data-studio-theme="champagne-noir"]{--t222-bg:#080705;--t222-surface:#12100c;--t222-surface2:#201b13;--t222-muted:#a69d8b;--t222-accent2:#f0c987}
body[data-studio-theme="bronze-noir"]{--t222-bg:#090604;--t222-surface:#15100d;--t222-surface2:#241a14;--t222-muted:#aa9688;--t222-accent2:#e8a06c}
body[data-studio-theme="arctic-blue"]{--t222-bg:#f0f8fc;--t222-surface:#fff;--t222-surface2:#e2f1f9;--t222-text:#10202b;--t222-muted:#506875;--t222-line:rgba(14,57,79,.13);--t222-header:rgba(247,252,255,.88);--t222-shadow:0 22px 65px rgba(17,70,97,.12);--t222-accent2:#22c55e}
body[data-studio-theme="mono-luxe"]{--t222-bg:#090909;--t222-surface:#121212;--t222-surface2:#1c1c1c;--t222-muted:#999;--t222-accent2:#d4d4d4}
body[data-studio-theme]{background:radial-gradient(circle at 86% -5%,color-mix(in srgb,var(--primary,var(--studio-accent)) 12%,transparent),transparent 31%),radial-gradient(circle at 8% 66%,color-mix(in srgb,var(--t222-accent2) 7%,transparent),transparent 28%),var(--t222-bg)!important;color:var(--t222-text)!important;--studio-bg:var(--t222-bg);--studio-surface:var(--t222-surface);--studio-surface-2:var(--t222-surface2);--studio-text:var(--t222-text);--studio-muted:var(--t222-muted);--studio-line:var(--t222-line);--bg:var(--t222-bg);--card:var(--t222-surface);--card2:var(--t222-surface2);--text:var(--t222-text);--muted:var(--t222-muted);--border:var(--t222-line);--bg-card:var(--t222-surface);--bg-input:var(--t222-surface2);--text-main:var(--t222-text);--text-muted:var(--t222-muted);--border-color:var(--t222-line)}
body[data-studio-theme] :where(header.scrolled,.studio-header.scrolled,.site-header.scrolled,.navbar.scrolled){background:var(--t222-header)!important;border-color:var(--t222-line)!important}
body[data-studio-theme] :where(.glass-panel,.card,.media-card,.playlist-card,.gallery-card,.service-v2,.quote-v2,.tool-card,.about-preview,.stat-box,.collection-card,.story-card){background:linear-gradient(145deg,color-mix(in srgb,var(--t222-surface) 94%,transparent),color-mix(in srgb,var(--t222-surface2) 88%,transparent))!important;border-color:var(--t222-line)!important;color:var(--t222-text)!important;box-shadow:var(--t222-shadow)}
body[data-studio-theme] :where(.btn,.btn-action,.btn-primary,.primary-btn,.hero-primary,.music205-play,.main-center-play){background:linear-gradient(135deg,var(--primary,var(--studio-accent)),color-mix(in srgb,var(--primary,var(--studio-accent)) 78%,var(--t222-accent2)))!important;color:#fff!important;border-color:color-mix(in srgb,var(--primary,var(--studio-accent)) 55%,transparent)!important;box-shadow:0 12px 34px color-mix(in srgb,var(--primary,var(--studio-accent)) 24%,transparent)!important}
body[data-studio-theme] :where(.btn-outline,.btn-secondary,.btn-soft,.v161-pill,.filter-btn,.a208-btn,.m214-more-link){background:color-mix(in srgb,var(--t222-surface2) 88%,transparent)!important;color:var(--t222-text)!important;border-color:var(--t222-line)!important}
body[data-studio-theme] :where(input,select,textarea){background:color-mix(in srgb,var(--t222-surface2) 90%,transparent);color:var(--t222-text);border-color:var(--t222-line)}
body[data-studio-theme] :where(.section-title,.page-title,h1,h2,h3,h4,strong){color:var(--t222-text)}
body[data-studio-theme] :where(.section-subtitle,.muted,small,.meta,.hero-desc,.v2-heading p){color:var(--t222-muted)}
body[data-studio-theme] :where(.m214-dock,.m214-sheet,.queue-panel,.player-bar,.music205-queue){background:color-mix(in srgb,var(--t222-surface) 95%,transparent)!important;border-color:var(--t222-line)!important;color:var(--t222-text)!important}
body[data-studio-theme] ::selection{background:var(--primary,var(--studio-accent));color:#fff}

;
/* SOURCE: visual226.css?v=26.3.0 */
/* Ali963sy Studio v23.0.0 consolidated visual layers */

/* ==== visual2222.css ==== */

/* ==========================================================
   Ali963sy Studio v22.2.2 — Premium Visual Refinement
   Visual-only refinement on top of v22.2.1.
   ========================================================== */
:root{
  --v2222-accent:var(--primary,var(--studio-accent,#e63946));
  --v2222-bg:var(--t222-bg,#060709);
  --v2222-surface:var(--t222-surface,#0d1014);
  --v2222-surface2:var(--t222-surface2,#151a20);
  --v2222-text:var(--t222-text,#f7f8fa);
  --v2222-muted:var(--t222-muted,#8e98a4);
  --v2222-line:var(--t222-line,rgba(255,255,255,.085));
  --v2222-shadow:0 18px 56px rgba(0,0,0,.30);
}
body:not(.admin-body){
  font-family:"Segoe UI",Tahoma,Arial,sans-serif!important;
  color:var(--v2222-text)!important;
}
body:not(.admin-body) :where(h1,h2,h3,h4,strong){letter-spacing:-.025em}
body:not(.admin-body) :where(.section-title,.page-title){letter-spacing:-.035em}
body:not(.admin-body) :where(.muted,.meta,.section-subtitle,.hero-desc,small){color:var(--v2222-muted)!important}
body:not(.admin-body) :where(.card,.panel,.service-v2,.quote-v2,.tool-card,.stat,.stat-box,.playlist-card,.gallery-item,.yt-card,.story-card,.post,.studio20-article,.insta20-item){
  border-color:var(--v2222-line)!important;
  box-shadow:var(--v2222-shadow)!important;
}
body:not(.admin-body) :where(.btn,.hero-action,.home-btn,.back,.yt-back,.refresh,.filter-btn,.view-btn,.sort-btn,.icon-btn-v2,.action-btn,.lb-btn){
  border-radius:13px!important;
  min-height:42px;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease!important;
}
body:not(.admin-body) :where(.btn,.hero-action,.home-btn,.back,.yt-back,.refresh,.filter-btn,.view-btn,.sort-btn,.icon-btn-v2,.action-btn,.lb-btn):hover{
  transform:translateY(-1px);
}
body:not(.admin-body) :where(.primary,.btn-primary,.btn-play-all){
  background:linear-gradient(135deg,var(--v2222-accent),color-mix(in srgb,var(--v2222-accent) 76%,var(--t222-accent2,#8b5cf6)))!important;
  color:#fff!important;
  border-color:color-mix(in srgb,var(--v2222-accent) 45%,transparent)!important;
  box-shadow:0 12px 30px color-mix(in srgb,var(--v2222-accent) 18%,transparent)!important;
}
body:not(.admin-body) :where(.btn-outline,.btn-secondary-v2,.filter-btn,.view-btn,.sort-btn,.icon-btn-v2,.action-btn,.home-btn,.back,.yt-back,.refresh){
  background:color-mix(in srgb,var(--v2222-surface2) 84%,transparent)!important;
  color:var(--v2222-text)!important;
  border:1px solid var(--v2222-line)!important;
}
body:not(.admin-body) :where(input,select,textarea,.search-box,.music-search){
  border-radius:12px!important;
  background:color-mix(in srgb,var(--v2222-surface2) 88%,transparent)!important;
  color:var(--v2222-text)!important;
  border-color:var(--v2222-line)!important;
}
body:not(.admin-body) :where(input,select,textarea,.search-box,.music-search):focus{
  border-color:color-mix(in srgb,var(--v2222-accent) 52%,transparent)!important;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--v2222-accent) 9%,transparent)!important;
}

/* Shared top navigation: cleaner, but same layout */
body:not(.admin-body) > header,
body:not(.admin-body) .top,
body:not(.admin-body) .yt-nav{
  border-color:var(--v2222-line)!important;
  background:color-mix(in srgb,var(--v2222-surface) 88%,transparent)!important;
  box-shadow:0 14px 44px rgba(0,0,0,.26)!important;
  backdrop-filter:blur(20px)!important;
}
body:not(.admin-body) .nav-links a{
  border-radius:10px!important;
  transition:.18s ease!important;
}
body:not(.admin-body) .nav-links a:hover,
body:not(.admin-body) .nav-links a.active{
  color:var(--v2222-text)!important;
  background:color-mix(in srgb,var(--v2222-accent) 9%,transparent)!important;
}

/* Page intros */
body:not(.admin-body) :where(.hero-v3-card,.hero-card,.yt-feature-card,.intro,.story,.contact,.featured-showcase){
  border:1px solid var(--v2222-line)!important;
  box-shadow:0 20px 60px rgba(0,0,0,.28)!important;
}
body:not(.admin-body) :where(.eyebrow,.studio-page-kicker,.yt-kicker,.hero-badge){
  border-radius:999px!important;
  background:color-mix(in srgb,var(--v2222-accent) 8%,transparent)!important;
  border:1px solid color-mix(in srgb,var(--v2222-accent) 20%,transparent)!important;
  color:color-mix(in srgb,var(--v2222-accent) 74%,white 18%)!important;
}

/* Gallery */
body[data-page="gallery"] .hero-v3-card{border-radius:24px!important;padding:clamp(20px,4vw,40px)!important}
body[data-page="gallery"] .g213-showcase,
body[data-page="gallery"] .g212-explorer,
body[data-page="gallery"] .gallery-toolbar-shell{
  border-radius:18px!important;
}
body[data-page="gallery"] .gallery-grid{gap:10px!important}
body[data-page="gallery"] .gallery-item{
  border-radius:15px!important;overflow:hidden!important;
  border:1px solid var(--v2222-line)!important;
  box-shadow:0 14px 42px rgba(0,0,0,.24)!important;
}
body[data-page="gallery"] .gallery-item img{transition:transform .32s ease,filter .32s ease}
body[data-page="gallery"] .gallery-item:hover img{transform:scale(1.025);filter:contrast(1.03)}

/* Videos */
body[data-page="videos"] .hero-card{border-radius:24px!important;padding:clamp(22px,4vw,42px)!important}
body[data-page="videos"] .stat{border-radius:16px!important}
body[data-page="videos"] .toolbar-shell{border-radius:17px!important}
body[data-page="videos"] .video-grid{gap:12px!important}
body[data-page="videos"] .video-card{
  border-radius:17px!important;overflow:hidden!important;
  border:1px solid var(--v2222-line)!important;
  background:var(--v2222-surface)!important;
  box-shadow:0 16px 48px rgba(0,0,0,.25)!important;
}
body[data-page="videos"] .play-orb{
  background:var(--v2222-accent)!important;
  box-shadow:0 10px 28px color-mix(in srgb,var(--v2222-accent) 24%,transparent)!important;
}

/* Music */
body[data-page="music"] .featured-showcase{
  border-radius:24px!important;
  background:
    radial-gradient(circle at 92% 0,color-mix(in srgb,var(--v2222-accent) 10%,transparent),transparent 35%),
    linear-gradient(145deg,var(--v2222-surface),var(--v2222-surface2))!important;
}
body[data-page="music"] .music-pro-strip,
body[data-page="music"] .library-toolbar{border-radius:17px!important}
body[data-page="music"] .playlist-grid{gap:10px!important}
body[data-page="music"] .playlist-card{border-radius:15px!important}
body[data-page="music"] .player-bar{
  border-radius:18px!important;
  border:1px solid var(--v2222-line)!important;
  background:color-mix(in srgb,var(--v2222-surface) 94%,transparent)!important;
  box-shadow:0 22px 65px rgba(0,0,0,.45)!important;
  backdrop-filter:blur(22px)!important;
}
body[data-page="music"] .queue-panel{
  border-radius:17px!important;
  border-color:var(--v2222-line)!important;
}

/* YouTube */
body[data-page="youtube"] .yt-feature-card{border-radius:20px!important}
body[data-page="youtube"] .yt-toolbar{border-radius:17px!important}
body[data-page="youtube"] .yt-grid{gap:12px!important}
body[data-page="youtube"] .yt-card{
  border-radius:16px!important;overflow:hidden!important;
  border:1px solid var(--v2222-line)!important;
  box-shadow:0 16px 44px rgba(0,0,0,.23)!important;
}

/* About / Stories / Content pages */
body[data-page="about"] .portrait-card,
body[data-page="about"] .story,
body[data-page="about"] .contact{border-radius:20px!important}
body[data-page="about"] .value{border-radius:15px!important}
body[data-page="stories"] .hero{border-radius:22px!important}
body[data-page="stories"] .story-card{border-radius:15px!important}
body[data-page="feed"] .post,
body[data-page="blog"] .studio20-article,
body[data-page="instagram"] .insta20-item{border-radius:15px!important}
body[data-page="downloader"] .intro,
body[data-page="downloader"] .panel{border-radius:20px!important}

/* Viewer surfaces */
body:not(.admin-body) :where(.lightbox,.viewer,.yt-viewer,.modal-player){
  backdrop-filter:blur(18px)!important;
}
body:not(.admin-body) :where(.lightbox-content-box,.viewer-shell,.yt-viewer-box,.modal-content){
  border-radius:20px!important;
  border:1px solid var(--v2222-line)!important;
}

/* Mobile: keep 22.2.1 behavior, only polish */
@media(max-width:768px){
  .m214-dock{
    left:10px!important;right:10px!important;width:auto!important;
    bottom:max(9px,env(safe-area-inset-bottom))!important;
    border-radius:18px!important;
    border:1px solid var(--v2222-line)!important;
    background:color-mix(in srgb,var(--v2222-surface) 94%,transparent)!important;
    box-shadow:0 18px 54px rgba(0,0,0,.42)!important;
    backdrop-filter:blur(22px)!important;
    padding:5px!important;
  }
  .m214-dock a,.m214-dock button{border-radius:13px!important}
  .m214-top-btn{
    right:14px!important;left:auto!important;
    border-radius:50%!important;
    background:color-mix(in srgb,var(--v2222-surface) 94%,transparent)!important;
    border:1px solid var(--v2222-line)!important;
  }
  body[data-page="music"] .player-bar{border-radius:16px!important}
}


/* ==== master223.css ==== */

/* ==========================================================
   Ali963sy Studio v22.2.3 — Visual Master Polish
   Final visual-only layer above v22.2.2.
   ========================================================== */
:root{
  --m223-accent:var(--primary,var(--studio-accent,#e63946));
  --m223-bg:var(--t222-bg,#060709);
  --m223-surface:var(--t222-surface,#0d1014);
  --m223-surface2:var(--t222-surface2,#151a20);
  --m223-text:var(--t222-text,#f7f8fa);
  --m223-muted:var(--t222-muted,#8e98a4);
  --m223-line:var(--t222-line,rgba(255,255,255,.075));
}
body:not(.admin-body){
  --content-w:min(1180px,calc(100% - 28px));
  background:
    radial-gradient(circle at 88% -8%,color-mix(in srgb,var(--m223-accent) 7%,transparent),transparent 28%),
    var(--m223-bg)!important;
}
body:not(.admin-body) :where(.section-title,.page-title){font-weight:850!important;letter-spacing:-.04em!important}
body:not(.admin-body) :where(.section-subtitle,.hero-desc,.meta,.muted){line-height:1.85!important}
body:not(.admin-body) :where(.card,.panel,.service-v2,.quote-v2,.tool-card,.stat,.stat-box,.playlist-card,.yt-card,.story-card,.post,.studio20-article,.insta20-item){
  box-shadow:0 14px 42px rgba(0,0,0,.22)!important;
}
body:not(.admin-body) :where(.btn,.hero-action,.filter-btn,.view-btn,.sort-btn,.action-btn,.icon-btn-v2,.home-btn,.back,.yt-back,.refresh){
  font-weight:800!important;
}
body:not(.admin-body) :where(.primary,.btn-primary,.btn-play-all){
  box-shadow:0 10px 26px color-mix(in srgb,var(--m223-accent) 16%,transparent)!important;
}
body:not(.admin-body) :where(.primary,.btn-primary,.btn-play-all):hover{
  box-shadow:0 14px 32px color-mix(in srgb,var(--m223-accent) 20%,transparent)!important;
}
body:not(.admin-body) :where(.eyebrow,.studio-page-kicker,.yt-kicker,.hero-badge){
  text-transform:none!important;
  letter-spacing:.045em!important;
}

/* Stronger editorial spacing */
body:not(.admin-body) main>section:not(:first-child){scroll-margin-top:100px}
body:not(.admin-body) :where(.gallery-grid,.video-grid,.playlist-grid,.yt-grid,.stories,.studio20-blog-grid,.insta20-grid){gap:12px!important}

/* Gallery: content first */
body[data-page="gallery"] .gallery-toolbar-shell{box-shadow:none!important}
body[data-page="gallery"] .gallery-item{
  box-shadow:0 12px 34px rgba(0,0,0,.20)!important;
}
body[data-page="gallery"] .gallery-item:hover{
  border-color:color-mix(in srgb,var(--m223-accent) 22%,var(--m223-line))!important;
}

/* Video: quiet UI around the thumbnail */
body[data-page="videos"] .video-card{box-shadow:0 12px 36px rgba(0,0,0,.21)!important}
body[data-page="videos"] .video-card:hover{border-color:color-mix(in srgb,var(--m223-accent) 20%,var(--m223-line))!important}
body[data-page="videos"] .play-orb{width:50px!important;height:50px!important}

/* Music: compact premium player */
body[data-page="music"] .player-bar{
  box-shadow:0 18px 54px rgba(0,0,0,.42)!important;
}
body[data-page="music"] .progress-v165,
body[data-page="music"] .progress-bar{height:4px!important}
body[data-page="music"] .queue-panel{box-shadow:0 18px 54px rgba(0,0,0,.40)!important}

/* About: cleaner editorial balance */
body[data-page="about"] .hero{gap:20px!important}
body[data-page="about"] .lead{max-width:720px!important;line-height:1.95!important}
body[data-page="about"] .values{gap:10px!important}

/* Content feeds */
body[data-page="feed"] .grid,
body[data-page="blog"] .studio20-blog-grid,
body[data-page="instagram"] .insta20-grid{gap:14px!important}

/* Mobile: less chrome, more content */
@media(max-width:768px){
  body:not(.admin-body){--content-w:calc(100% - 20px)}
  body:not(.admin-body) :where(.hero h1,.hero-v3 h1,.yt-hero h1,.intro h1){
    letter-spacing:-.045em!important;
  }
  .m214-dock{
    min-height:62px!important;
    box-shadow:0 14px 44px rgba(0,0,0,.40)!important;
  }
  .m214-dock :where(a,button){font-size:.67rem!important}
  .m214-top-btn{
    width:42px!important;height:42px!important;
    box-shadow:0 10px 28px rgba(0,0,0,.32)!important;
  }
  body[data-page="gallery"] .gallery-grid,
  body[data-page="videos"] .video-grid{gap:8px!important}
  body[data-page="music"] .playlist-grid{gap:8px!important}
}


/* ==== signature224.css ==== */

/* ==========================================================
   Ali963sy Studio v22.2.4 — Signature Visual Upgrade
   Visual-only: no API/behavior changes.
   ========================================================== */
:root{
  --s224-accent:var(--primary,var(--studio-accent,#e63946));
  --s224-bg:var(--t222-bg,#050608);
  --s224-s1:var(--t222-surface,#0d1014);
  --s224-s2:var(--t222-surface2,#151a20);
  --s224-text:var(--t222-text,#f7f8fa);
  --s224-muted:var(--t222-muted,#8e98a4);
  --s224-line:var(--t222-line,rgba(255,255,255,.08));
  --s224-soft:color-mix(in srgb,var(--s224-s1) 88%,transparent);
  --s224-shadow:0 28px 90px rgba(0,0,0,.38);
}

body:not(.admin-body){
  background:
    radial-gradient(circle at 84% -4%,color-mix(in srgb,var(--s224-accent) 9%,transparent),transparent 25%),
    radial-gradient(circle at 6% 42%,color-mix(in srgb,var(--t222-accent2,#8b5cf6) 5%,transparent),transparent 25%),
    var(--s224-bg)!important;
}
body:not(.admin-body)::after{
  content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;opacity:.28;
  background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.58),transparent 82%);
}
body:not(.admin-body) :where(h1,h2,h3,h4,strong){color:var(--s224-text)}
body:not(.admin-body) :where(p,.muted,.meta,small,.section-subtitle,.hero-desc){color:var(--s224-muted)}
body:not(.admin-body) :where(.section-title,.page-title){
  font-weight:900!important;letter-spacing:-.052em!important;
}
body:not(.admin-body) :where(.btn,.hero-action,.filter-btn,.view-btn,.sort-btn,.action-btn,.icon-btn-v2,.home-btn,.back,.yt-back,.refresh){
  min-height:44px!important;border-radius:999px!important;padding-inline:16px!important;
}
body:not(.admin-body) :where(.primary,.btn-primary,.btn-play-all){
  background:var(--s224-accent)!important;
  color:#fff!important;
  border-color:color-mix(in srgb,var(--s224-accent) 62%,white 8%)!important;
  box-shadow:0 10px 30px color-mix(in srgb,var(--s224-accent) 22%,transparent)!important;
}
body:not(.admin-body) :where(.btn-outline,.btn-secondary-v2,.filter-btn,.view-btn,.sort-btn,.action-btn,.icon-btn-v2,.home-btn,.back,.yt-back,.refresh){
  background:rgba(255,255,255,.028)!important;
  color:var(--s224-text)!important;
  border:1px solid var(--s224-line)!important;
  backdrop-filter:blur(16px);
}
body:not(.admin-body) :where(input,select,textarea,.search-box,.music-search){
  min-height:44px!important;border-radius:14px!important;
  background:color-mix(in srgb,var(--s224-s2) 82%,transparent)!important;
  border:1px solid var(--s224-line)!important;color:var(--s224-text)!important;
}
body:not(.admin-body) :where(input,select,textarea,.search-box,.music-search):focus{
  border-color:color-mix(in srgb,var(--s224-accent) 50%,transparent)!important;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--s224-accent) 10%,transparent)!important;
}

/* Universal floating navigation */
body:not(.admin-body) > header,
body:not(.admin-body) .top,
body:not(.admin-body) .yt-nav{
  border:1px solid var(--s224-line)!important;
  background:color-mix(in srgb,var(--s224-s1) 76%,transparent)!important;
  backdrop-filter:blur(26px)!important;
  box-shadow:0 20px 60px rgba(0,0,0,.30)!important;
}
body:not(.admin-body) .nav-links{
  padding:4px!important;border-radius:999px!important;
  background:rgba(255,255,255,.018)!important;
  border:1px solid rgba(255,255,255,.035)!important;
}
body:not(.admin-body) .nav-links a{
  border-radius:999px!important;
  padding-inline:12px!important;
  color:var(--s224-muted)!important;
  font-weight:780!important;
}
body:not(.admin-body) .nav-links a.active,
body:not(.admin-body) .nav-links a:hover{
  background:color-mix(in srgb,var(--s224-accent) 12%,transparent)!important;
  color:var(--s224-text)!important;
}

/* Page-level hero language */
body:not(.admin-body) :where(.hero-v3-card,.hero-card,.featured-showcase,.yt-feature-card,.intro,.story,.contact){
  border:1px solid var(--s224-line)!important;
  background:
    radial-gradient(circle at 90% 0,color-mix(in srgb,var(--s224-accent) 9%,transparent),transparent 34%),
    linear-gradient(145deg,var(--s224-s1),var(--s224-s2))!important;
  box-shadow:var(--s224-shadow)!important;
}
body:not(.admin-body) :where(.eyebrow,.studio-page-kicker,.yt-kicker,.hero-badge){
  min-height:30px!important;border-radius:999px!important;
  padding-inline:11px!important;
  background:color-mix(in srgb,var(--s224-accent) 9%,transparent)!important;
  border:1px solid color-mix(in srgb,var(--s224-accent) 24%,transparent)!important;
  color:color-mix(in srgb,var(--s224-accent) 74%,white 22%)!important;
}

/* Gallery — editorial wall */
body[data-page="gallery"] .hero-v3-card{border-radius:30px!important}
body[data-page="gallery"] .g213-showcase,
body[data-page="gallery"] .g212-explorer{border-radius:22px!important}
body[data-page="gallery"] .gallery-toolbar-shell{border-radius:18px!important;box-shadow:none!important}
body[data-page="gallery"] .gallery-grid{gap:14px!important}
body[data-page="gallery"] .gallery-item{
  border-radius:20px!important;overflow:hidden!important;
  border:1px solid var(--s224-line)!important;
  background:var(--s224-s1)!important;
  box-shadow:0 18px 54px rgba(0,0,0,.26)!important;
  transition:transform .25s ease,border-color .25s ease!important;
}
body[data-page="gallery"] .gallery-item:nth-child(3n+1){transform:translateY(10px)}
body[data-page="gallery"] .gallery-item:hover{transform:translateY(-4px)!important;border-color:color-mix(in srgb,var(--s224-accent) 32%,var(--s224-line))!important}

/* Video — cinema tiles */
body[data-page="videos"] .hero-card{border-radius:30px!important}
body[data-page="videos"] .stats{gap:10px!important}
body[data-page="videos"] .stat{border-radius:18px!important;background:linear-gradient(145deg,var(--s224-s1),var(--s224-s2))!important}
body[data-page="videos"] .toolbar-shell{border-radius:18px!important}
body[data-page="videos"] .video-grid{gap:16px!important}
body[data-page="videos"] .video-card{
  border-radius:22px!important;overflow:hidden!important;
  border:1px solid var(--s224-line)!important;background:var(--s224-s1)!important;
  box-shadow:0 20px 58px rgba(0,0,0,.28)!important;
}
body[data-page="videos"] .play-orb{
  width:56px!important;height:56px!important;border-radius:50%!important;
  background:var(--s224-accent)!important;border:1px solid rgba(255,255,255,.22)!important;
  box-shadow:0 12px 38px color-mix(in srgb,var(--s224-accent) 28%,transparent)!important;
}

/* Music — modern floating player */
body[data-page="music"] .featured-showcase{border-radius:30px!important;overflow:hidden!important}
body[data-page="music"] .music-pro-strip,
body[data-page="music"] .library-toolbar{border-radius:20px!important}
body[data-page="music"] .playlist-grid{gap:14px!important}
body[data-page="music"] .playlist-card{
  border-radius:20px!important;border:1px solid var(--s224-line)!important;
  background:linear-gradient(145deg,var(--s224-s1),var(--s224-s2))!important;
}
body[data-page="music"] .player-bar{
  left:50%!important;right:auto!important;transform:translateX(-50%)!important;
  width:min(1120px,calc(100% - 24px))!important;
  bottom:max(12px,env(safe-area-inset-bottom))!important;
  border-radius:26px!important;border:1px solid var(--s224-line)!important;
  background:color-mix(in srgb,var(--s224-s1) 90%,transparent)!important;
  box-shadow:0 28px 84px rgba(0,0,0,.55)!important;backdrop-filter:blur(30px)!important;
}
body[data-page="music"] .queue-panel{
  border-radius:24px!important;border:1px solid var(--s224-line)!important;
  background:color-mix(in srgb,var(--s224-s1) 96%,transparent)!important;
}
body[data-page="music"] :where(.progress-v165,.progress-bar){height:4px!important;border-radius:999px!important}

/* YouTube */
body[data-page="youtube"] .yt-feature-card{border-radius:26px!important}
body[data-page="youtube"] .yt-toolbar{border-radius:20px!important}
body[data-page="youtube"] .yt-grid{gap:16px!important}
body[data-page="youtube"] .yt-card{
  border-radius:20px!important;overflow:hidden!important;border:1px solid var(--s224-line)!important;
  background:var(--s224-s1)!important;box-shadow:0 18px 52px rgba(0,0,0,.26)!important;
}

/* About */
body[data-page="about"] .portrait-card,
body[data-page="about"] .story,
body[data-page="about"] .contact{border-radius:26px!important}
body[data-page="about"] .value{border-radius:18px!important}

/* Stories / feeds */
body[data-page="stories"] .hero{border-radius:28px!important}
body[data-page="stories"] .story-card,
body[data-page="feed"] .post,
body[data-page="blog"] .studio20-article,
body[data-page="instagram"] .insta20-item{
  border-radius:20px!important;border:1px solid var(--s224-line)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.24)!important;overflow:hidden!important;
}

/* Downloader */
body[data-page="downloader"] .intro{border-radius:28px!important}
body[data-page="downloader"] .panel{border-radius:22px!important}

/* Mobile: one floating control layer only */
@media(max-width:768px){
  .m214-dock{
    left:10px!important;right:10px!important;width:auto!important;
    bottom:max(9px,env(safe-area-inset-bottom))!important;
    min-height:62px!important;border-radius:22px!important;padding:6px!important;
    border:1px solid var(--s224-line)!important;
    background:color-mix(in srgb,var(--s224-s1) 91%,transparent)!important;
    box-shadow:0 24px 72px rgba(0,0,0,.50)!important;
    backdrop-filter:blur(28px)!important;
  }
  .m214-dock :where(a,button){border-radius:16px!important}
  .m214-dock .active{
    background:color-mix(in srgb,var(--s224-accent) 15%,transparent)!important;
    color:var(--s224-accent)!important;
  }
  .m214-top-btn{
    right:16px!important;left:auto!important;
    width:44px!important;height:44px!important;border-radius:50%!important;
    background:color-mix(in srgb,var(--s224-s1) 93%,transparent)!important;
    border:1px solid var(--s224-line)!important;
    box-shadow:0 12px 34px rgba(0,0,0,.36)!important;
  }
  body[data-page="gallery"] .gallery-item:nth-child(3n+1){transform:none}
  body[data-page="music"] .player-bar{
    width:calc(100% - 14px)!important;border-radius:20px!important;bottom:max(7px,env(safe-area-inset-bottom))!important;
  }
}


/* ==== v23.0.0 final cleanup ==== */
:where(a,button,input,select,textarea,[role="button"]):focus-visible{
  outline:3px solid color-mix(in srgb,var(--primary,#e63946) 55%,white 10%)!important;
  outline-offset:3px!important;
}
[aria-busy="true"]{cursor:progress}
.studio-empty226{grid-column:1/-1;padding:64px 20px;text-align:center;color:var(--studio-muted,var(--muted,#8e98a4));border:1px dashed var(--studio-line,var(--border,rgba(255,255,255,.09)));border-radius:22px}
.studio-empty226 i{display:block;font-size:2rem;color:var(--primary,#e63946);margin-bottom:12px}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}}

;
/* SOURCE: gallery227.css?v=26.3.0 */
/* v23.0.0 — Gallery lightbox color integrity */
body[data-page="gallery"] #lightbox img,body[data-page="gallery"] #lb-img{filter:none!important;-webkit-filter:none!important;opacity:1!important;mix-blend-mode:normal!important;}
body[data-page="gallery"] #lb-img.media-error{filter:none!important;-webkit-filter:none!important;opacity:1!important;}
