:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --text:#eaf0ff;
  --muted:#b8c6ff;
  --border:rgba(255,255,255,.10);
  --accent:#7c5cff;
  --accent2:#22c55e;
  --shadow:0 18px 60px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 800px at 10% 10%, rgba(124,92,255,.25), transparent 60%),
              radial-gradient(1200px 800px at 90% 30%, rgba(34,197,94,.18), transparent 60%),
              var(--bg);
}

html[dir="rtl"] body{ direction: rtl; }
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width:min(980px, calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  padding:12px 0;
}

.lang{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}

.langmenu{ position: relative; }
.langmenu__button{
  list-style:none;
  cursor:pointer;
  user-select:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
  background: rgba(255,255,255,.02);
}
.langmenu__button::-webkit-details-marker{ display:none; }
.langmenu[open] .langmenu__button{
  color:var(--text);
  border-color: rgba(124,92,255,.7);
  background: rgba(124,92,255,.12);
}
.langmenu__icon{ width:18px; height:18px; color: var(--text); opacity:.85; }
.langmenu__current{ color: var(--text); font-weight:600; }

.langmenu__panel{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 220px;
  max-height: min(60vh, 460px);
  overflow:auto;
  padding:10px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(11,18,32,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.langmenu[open] .langmenu__panel{ z-index: 10; }
.langmenu__panel{ z-index: 10; }
.langmenu__item{ text-align: left; }

html[dir="rtl"] .langmenu__panel{ right:auto; left:0; }
html[dir="rtl"] .langmenu__item{ text-align: right; }
.langmenu__item{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-size:14px;
  color: var(--muted);
  text-decoration:none;
}
.langmenu__item:hover{ text-decoration:none; background: rgba(255,255,255,.06); color: var(--text); }
.langmenu__item.is-active{ background: rgba(124,92,255,.16); color: var(--text); }

.hero{
  padding:56px 0 40px;
}
.hero--split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  align-items:center;
  gap:28px;
}
.hero__content{ min-width: 0; }
.hero__media{ min-width: 0; }
.hero__content{ text-align: left; }
html[dir="rtl"] .hero__content{ text-align: right; }
html[dir="rtl"] .hero--split{ grid-template-columns: .85fr 1.15fr; }
.hero__media{ order: 0; }
.hero__content{ order: 0; }
html[dir="rtl"] .hero__media{ order: -1; }
.herotitle{
  display:flex;
  align-items:center;
  gap:16px;
  margin: 0 0 8px;
}
html[dir="rtl"] .herotitle{ flex-direction: row-reverse; }
.appicon{
  width:56px;
  height:56px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  flex: 0 0 auto;
}
.hero__title{
  font-size: clamp(40px, 6vw, 64px);
  line-height:1.05;
  margin:0 0 14px;
}
.hero__desc{
  font-size: clamp(16px, 2.2vw, 20px);
  line-height:1.6;
  margin:0 0 26px;
  color: var(--muted);
  max-width: 60ch;
}

.cta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  padding:18px 18px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  width: fit-content;
}
.cta__label{ text-align: left; }
html[dir="rtl"] .cta{ flex-direction: row-reverse; }
html[dir="rtl"] .cta__label{ text-align: right; }
.cta__label{
  font-weight:600;
  color: var(--text);
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(124,92,255,.65));
  font-weight:700;
  letter-spacing:.2px;
  text-decoration:none;
}
.button:hover{ text-decoration:none; filter: brightness(1.05); }

.gplaybadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.gplaybadge:hover{ text-decoration:none; }
.gplaybadge__img{
  display:block;
  height: 44px;
  width:auto;
}

.footerlinks{
  margin-top:22px;
}
.footerlinks__link{
  color: var(--muted);
  text-decoration:underline;
}

.shot{
  border:1px solid var(--border);
  border-radius:20px;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:14px;
}
.shot__img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
}

.policy{
  padding:48px 0 64px;
  max-width: 80ch;
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb__link{
  color: var(--muted);
  text-decoration:none;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.02);
}
.breadcrumb__link:hover{ text-decoration:none; border-color: rgba(255,255,255,.22); color: var(--text); }
.breadcrumb__sep{ opacity:.6; }
.breadcrumb__current{ color: var(--text); font-weight:600; }
.policy h1{font-size:40px;margin:0 0 10px}
.policy h2{font-size:18px;margin:26px 0 10px}
.policy p, .policy li{color:var(--muted);line-height:1.7}
.policy ul{padding-left:20px}

@media (max-width: 480px){
  .topbar__inner{align-items:flex-start;flex-direction:column; justify-content:flex-start}
  .lang{justify-content:flex-start}
  .langmenu__panel{ left:0; right:auto; width: min(100vw - 32px, 360px); }
  .hero--split{ grid-template-columns: 1fr; }
  .herotitle{ gap:12px; }
  .appicon{ width:46px; height:46px; border-radius:12px; }
  .cta{width:100%}
  .button{width:100%}
  .gplaybadge{width:100%}
  .gplaybadge__img{height: 48px; margin: 0 auto;}
}
