/* ArunafeltzMR Landing (v2) - themed to the provided banner */
:root{
  --bg:#050814;
  --panel:#070c1cff;
  --panel2:#070c1ce6;
  --stroke: rgba(130, 165, 255, .22);
  --stroke2: rgba(255, 204, 74, .22);

  /* Banner-inspired accents */
  --blue1:#0aa6ff;
  --blue2:#1fd3ff;
  --navy:#071124;
  --gold1:#ffd14a;
  --gold2:#ffb300;

  --text:#eaf2ff;
  --muted: rgba(234,242,255,.72);

  --radius: 26px;
  --shadow: 0 24px 80px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(900px 700px at 20% 25%, rgba(10,166,255,.18), transparent 60%),
              radial-gradient(900px 700px at 80% 70%, rgba(255,209,74,.14), transparent 60%),
              linear-gradient(180deg, #040714, #03040b);
  overflow-x:hidden;
}

.bg{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.bg__glow{
  position:absolute;
  width:820px; height:820px;
  border-radius:999px;
  filter: blur(70px);
  opacity:.55;
}
.bg__glow--a{ left:-260px; top:-240px; background: radial-gradient(circle, rgba(10,166,255,.55), transparent 60%); }
.bg__glow--b{ right:-260px; bottom:-260px; background: radial-gradient(circle, rgba(255,209,74,.45), transparent 60%); }

.bg__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1), rgba(0,0,0,0) 70%);
  opacity:.35;
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 44px 18px;
}

.panel{
  width: min(980px, 100%);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel2), rgba(5,8,20,.72));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 28px;
  position:relative;
  overflow:hidden;
}

.panel::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 420px at 20% 10%, rgba(10,166,255,.18), transparent 55%),
    radial-gradient(700px 420px at 80% 60%, rgba(255,209,74,.12), transparent 60%);
  pointer-events:none;
}

.header{ position:relative; text-align:center; }
.badge-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:10px; }
.badge{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:999px;
  border: 1px solid rgba(130,165,255,.28);
  background: rgba(7,12,28,.55);
}
.badge--gold{
  border-color: rgba(255,209,74,.35);
  background: rgba(255,209,74,.12);
}
.badge--muted{ color: rgba(234,242,255,.64); }

.title{
  margin: 6px 0 0;
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.05;
  text-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.subtitle{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.hero{ position:relative; margin: 18px auto 18px; }
.hero__frame{
  width: min(720px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  padding: 14px;
  border: 1px solid rgba(130,165,255,.22);
  background:
    linear-gradient(180deg, rgba(7,12,28,.55), rgba(7,12,28,.25));
}
.hero__img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 18px;
  /* keep transparency, don't force white bg */
  background: transparent;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
}

.actions{
  position:relative;
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid rgba(130,165,255,.30);
  background: rgba(7,12,28,.45);
  color: var(--text);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  min-width: 240px;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0,0,0,.45);
  border-color: rgba(31,211,255,.55);
}
.btn:active{ transform: translateY(0px) scale(.99); }

.btn--primary{
  color: #061022;
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue1), var(--blue2));
}
.btn--primary:hover{ border-color: rgba(31,211,255,.35); }

.btn--secondary{
  border-color: rgba(255,209,74,.34);
  background: linear-gradient(180deg, rgba(255,209,74,.18), rgba(7,12,28,.45));
}
.btn--secondary:hover{ border-color: rgba(255,209,74,.55); }

.note{
  position:relative;
  margin: 16px auto 0;
  max-width: 72ch;
  text-align:center;
  color: rgba(234,242,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

.footer{
  position:relative;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(130,165,255,.22);
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  color: rgba(234,242,255,.62);
  font-size: 13px;
}
.sep{ opacity:.6; }

@media (max-width: 560px){
  .panel{ padding: 18px; }
  .btn{ width: 100%; min-width: unset; }
  .hero__frame{ padding: 10px; }
}
