:root{
  --bg:#070707;
  --panel:#0f0f10;
  --panel2:#111114;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --accent:#e10606;
  --accent2:#7a0000;
  --border:rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.55);
  --radius:16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family: -apple-system, system-ui, Segoe UI, Roboto, Arial, sans-serif; }

a{ color:inherit; text-decoration:none; }
.muted{ color:var(--muted); }
.small{ font-size:12px; }

.topbar{
  position:sticky; top:0; z-index:20;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  background:rgba(7,7,7,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.brand{ display:flex; gap:12px; align-items:center; }
.logo-dot{
  width:14px; height:14px; border-radius:99px;
  background:var(--accent);
  box-shadow: 0 0 0 6px rgba(225,6,6,.12);
}
.brand-name{ font-size:18px; font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size:12px; color:var(--muted2); margin-top:2px; }

.top-actions{ display:flex; gap:10px; }

.wrap{ max-width:980px; margin:0 auto; padding:18px 16px 90px; }

.hero{
  padding:14px 0 8px;
}
.hero-card{
  background:
    radial-gradient(1000px 500px at 20% -20%, rgba(225,6,6,.25), transparent 60%),
    radial-gradient(800px 400px at 90% 0%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--panel), var(--panel2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
}
.hero h1{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:.2px;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

.promo{
  margin-top:14px;
  padding:12px 14px;
  border:1px solid rgba(225,6,6,.25);
  background: rgba(225,6,6,.08);
  border-radius:14px;
}
.promo-title{ font-weight:800; color:#fff; margin-bottom:4px; }
.promo-text{ color:var(--muted); font-size:14px; }
.link{ color:#fff; text-decoration:underline; text-decoration-color: rgba(255,255,255,.45); }

.section{ margin-top:20px; }
.section-title h2{ margin:0; font-size:20px; }
.section-title p{ margin:6px 0 0; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.form{ padding:16px; margin-top:12px; }
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:680px){
  .grid{ grid-template-columns:1fr; }
}

label{ display:flex; flex-direction:column; gap:8px; margin:12px 0; }
label span{ font-size:12px; color:var(--muted2); letter-spacing:.2px; text-transform:uppercase; }

input, select, textarea{
  background: rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:12px;
  padding:12px 12px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(225,6,6,.55);
  box-shadow: 0 0 0 4px rgba(225,6,6,.12);
}

.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:8px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color:#fff;
  font-weight:800;
  border:1px solid rgba(255,255,255,.10);
}
.btn.ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}
.btn:active{ transform: translateY(1px); }

.gallery{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
@media (min-width:820px){
  .gallery{ grid-template-columns: repeat(4, 1fr); }
}
.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

.footer{
  margin-top:26px;
  padding:18px 2px;
  border-top:1px solid rgba(255,255,255,.08);
}

.sticky{
  position:fixed; left:0; right:0; bottom:0;
  padding:12px 14px;
  display:flex; gap:10px;
  background: rgba(7,7,7,.85);
  backdrop-filter: blur(10px);
  border-top:1px solid rgba(255,255,255,.08);
  justify-content:center;
}
