@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Amiri:wght@400;700&family=Cairo:wght@400;600;700&display=swap');

:root{
  --navy:#1A2332; --navy2:#0f1620; --gold:#D4A843; --softgold:#E8C96A;
  --deepgold:#B8934A; --ink:#2b3240; --line:rgba(212,168,67,.35);
}
*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;}
body{
  font-family:'Plus Jakarta Sans',-apple-system,sans-serif;
  color:#fff;
  background:radial-gradient(130% 120% at 50% 0%, #24344f 0%, #1A2332 45%, #0f1620 100%);
  min-height:100dvh;
  display:flex; align-items:center; justify-content:center;
  padding:40px 22px;
  -webkit-font-smoothing:antialiased;
}
.wrap{ width:100%; max-width:640px; text-align:center; }
.frame{ border:1.5px solid rgba(212,168,67,.4); border-radius:18px; padding:46px 40px 40px; position:relative; }
.frame::after{ content:""; position:absolute; inset:6px; border:.75px solid rgba(212,168,67,.2); border-radius:13px; pointer-events:none;}
.seal{ width:96px; height:96px; margin:0 auto 20px; display:block; }
.wm1{ font-family:'Frank Ruhl Libre',serif; font-size:26px; letter-spacing:.09em; line-height:1.05;}
.wm2{ font-family:'Frank Ruhl Libre',serif; font-size:16px; letter-spacing:.32em; color:var(--softgold); margin-top:2px;}
.tm{ font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-top:10px;}
.divider{ width:64px; height:2px; background:var(--gold); margin:26px auto; opacity:.85;}
h1{ font-family:'Frank Ruhl Libre',serif; font-weight:700; font-size:34px; line-height:1.12; }
.sub{ color:rgba(255,255,255,.82); font-size:16px; line-height:1.6; margin:16px auto 0; max-width:30rem;}

.btns{ display:flex; flex-direction:column; gap:14px; margin-top:34px; }
.btn{
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 22px; border-radius:11px; text-decoration:none; font-weight:600; font-size:16.5px;
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn-primary{ background:linear-gradient(180deg,#E8C96A,#D4A843); color:#1A2332; box-shadow:0 10px 26px rgba(212,168,67,.28);}
.btn-primary:hover{ transform:translateY(-1px); box-shadow:0 14px 32px rgba(212,168,67,.36);}
.btn-ghost{ background:rgba(255,255,255,.05); color:#fff; border:1px solid var(--line);}
.btn-ghost:hover{ background:rgba(255,255,255,.09);}
.btn-white{ background:#fff; color:var(--navy); border:1px solid #fff; box-shadow:0 8px 22px rgba(0,0,0,.25);}
.btn-white:hover{ transform:translateY(-1px); background:#fdfaf2;}
.btn .sm{ font-weight:500; opacity:.8; font-size:13px;}
.dl{ display:inline-block; margin-top:14px; font-size:13px; color:rgba(255,255,255,.72); text-decoration:none; border-bottom:1px solid rgba(212,168,67,.4); padding-bottom:1px;}
.dl:hover{ color:#fff;}

.langrow{ display:flex; flex-direction:column; gap:13px; margin-top:30px; }
.lang{
  display:flex; align-items:center; justify-content:space-between;
  padding:17px 24px; border-radius:12px; text-decoration:none;
  background:rgba(255,255,255,.05); border:1px solid var(--line); color:#fff;
  transition:background .12s ease, transform .12s ease;
}
.lang:hover{ background:rgba(255,255,255,.1); transform:translateY(-1px);}
.lang .l{ font-family:'Frank Ruhl Libre',serif; font-size:20px;}
.lang .r{ color:var(--softgold); font-size:14px; font-weight:600;}

.cta{ margin-top:30px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12);}
.cta .lbl{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--softgold); margin-bottom:8px;}
.cta a{ color:#fff; text-decoration:none; font-weight:600; font-size:19px; }
.cta .small{ display:block; font-size:13px; color:rgba(255,255,255,.7); font-weight:500; margin-top:6px;}

.foot{ margin-top:26px; font-size:11px; color:rgba(255,255,255,.55); line-height:1.65;}
.foot .g{ color:rgba(232,201,106,.85);}
.switch{ margin-top:22px; font-size:13px; color:rgba(255,255,255,.55);}
.switch a{ color:var(--softgold); text-decoration:none; margin:0 6px;}

.disc{ margin-top:20px; font-size:9.5px; color:rgba(255,255,255,.4); line-height:1.5; }

body.rtl{ direction:rtl; font-family:'Cairo',sans-serif; }
body.rtl h1,body.rtl .wm1,body.rtl .wm2,body.rtl .lang .l{ font-family:'Amiri',serif; }
body.rtl .wm2,body.rtl .tm,body.rtl .cta .lbl{ letter-spacing:0; }

@media(max-width:520px){ h1{font-size:28px;} .frame{padding:36px 24px 30px;} }
