:root{
  --bg:#0b1220;
  --text:#ffffff;
  --muted:rgba(255,255,255,.65);
  --border:rgba(255,255,255,.14);
  --card:rgba(255,255,255,.06);
  --accent:#4f46e5;
}

/* RESET */
*{ box-sizing:border-box }
html,body{ height:100% }

/* BODY */
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(79,70,229,.25), transparent 55%),
    radial-gradient(900px 600px at 80% 90%, rgba(6,182,212,.18), transparent 55%),
    var(--bg);
}

/* PAGE */
.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:90px 20px 20px;
  text-align:center;
}

@media(max-width:480px){
  .page{
    padding-top:70px;
  }
}

/* ===== LOGO (PNG ONLY, NO CIRCLE) ===== */
.logo-img-plain{
  width:160px;          /* <<< KATTAROQ */
  height:auto;
  display:block;
  margin:0 auto 22px auto;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,.5));
}


@media(max-width:480px){
  .logo-img-plain{
    width:80px;
  }
}

/* ===== TEXT ===== */
.title{
  font-size:32px;
  margin:0 0 10px 0;
}

.subtitle{
  font-size:15px;
  color:var(--muted);
  margin:0 0 26px 0;
  max-width:420px;
}

/* ===== LANGUAGE BUTTONS ===== */
.lang-btn{
  width:100%;
  max-width:420px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  margin-bottom:12px;

  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;

  color:var(--text);
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
}

.lang-btn:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
}

.flag{
  font-size:22px;
}

.lang-text{
  flex:1;
  text-align:left;
}

.arrow{
  opacity:.7;
}

/* ===== FOOTER (SaaS STYLE) ===== */
.site-footer{
  width:100%;
  margin-top:auto;
  padding:18px 20px 26px;
}

.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer-left{
  font-size:13px;
  color:rgba(255,255,255,.55);
}

.footer-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-nav a{
  font-size:13px;
  color:rgba(255,255,255,.70);
  text-decoration:none;
  padding:6px 8px;
  border-radius:10px;
  transition:background .15s ease, color .15s ease;
}

.footer-nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.06);
}

@media(max-width:640px){
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-nav{
    gap:10px;
  }
}

/* APP NAME (logo ostida) */
.app-name{
  margin: -50px 0 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

@media(max-width:480px){
  .app-name{
    font-size: 12px;
    margin-bottom: 14px;
  }
}
/* ===== TOP RIGHT AUTH (Sign up / Log in) ===== */
.top-actions{
  position: fixed;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.top-link{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.top-link:hover{
  color:#fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.top-btn{
  color:#fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.top-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
}

.top-btn:focus-visible,
.top-link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,.35);
}

/* mobile: kichikroq */
@media (max-width: 480px){
  .top-actions{ top: 12px; right: 12px; }
  .top-link, .top-btn{ padding: 9px 11px; border-radius: 11px; }
}
