:root{
  --green:#406f4b;
  --green-dark:#183a25;
  --green-soft:#6fa279;
  --white:#ffffff;
  --gold:#d4b26a;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Cairo',system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(212,178,106,.28), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(111,162,121,.32), transparent 28%),
    linear-gradient(135deg, var(--green-dark), var(--green) 58%, #2d5838);
  overflow:hidden;
}
body:before{
  content:"";
  position:fixed; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}
.page{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:28px;
  position:relative;
}
.card{
  width:min(920px,100%);
  min-height:540px;
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:54px 34px 42px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:34px;
  background:rgba(255,255,255,.09);
  box-shadow:0 30px 90px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
}
.card:after{
  content:"";
  position:absolute; inset:18px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.11);
  pointer-events:none;
}
.logo-wrap{
  width:min(500px,92%);
  margin:0 auto 22px;
  padding:18px 24px;
  border-radius:28px;
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 0 30px rgba(255,255,255,.07);
}
.logo{width:100%; height:auto; display:block; filter:drop-shadow(0 14px 22px rgba(0,0,0,.25))}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 18px;
  margin-bottom:8px;
  border-radius:999px;
  background:rgba(212,178,106,.18);
  color:#ffe3a1;
  border:1px solid rgba(212,178,106,.38);
  font-weight:800;
  letter-spacing:2px;
}
h1{
  margin:4px 0 12px;
  font-size:clamp(38px,6vw,72px);
  line-height:1.12;
  font-weight:800;
  text-shadow:0 12px 30px rgba(0,0,0,.22);
}
.lead{
  max-width:720px;
  margin:0 auto;
  font-size:clamp(17px,2.5vw,24px);
  line-height:1.9;
  color:rgba(255,255,255,.88);
}
.loader{display:flex; gap:10px; justify-content:center; margin:30px 0 28px}
.loader span{
  width:14px; height:14px;
  border-radius:50%;
  background:var(--gold);
  animation:bounce 1.15s infinite ease-in-out;
  box-shadow:0 0 24px rgba(212,178,106,.55);
}
.loader span:nth-child(2){animation-delay:.15s}.loader span:nth-child(3){animation-delay:.3s}
@keyframes bounce{0%,80%,100%{transform:translateY(0);opacity:.55}40%{transform:translateY(-14px);opacity:1}}
.info{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:8px;
  direction:ltr;
}
.item{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  padding:13px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  transition:.25s ease;
  font-weight:700;
}
.item:hover{transform:translateY(-3px);background:rgba(255,255,255,.16)}
.icon{color:#ffe3a1;font-size:20px}.en{margin:24px 0 0;color:rgba(255,255,255,.7);letter-spacing:.5px}
.glow{position:absolute;border-radius:50%;filter:blur(20px);opacity:.6;pointer-events:none}.glow-one{width:220px;height:220px;background:rgba(212,178,106,.2);top:-70px;left:-60px}.glow-two{width:300px;height:300px;background:rgba(255,255,255,.1);bottom:-120px;right:-80px}
@media(max-width:560px){.page{padding:16px}.card{padding:34px 18px 28px;border-radius:24px;min-height:auto}.logo-wrap{padding:12px 14px}.info{flex-direction:column}.item{justify-content:center;width:100%;font-size:14px}body{overflow:auto}}
