
:root {
  --bg: #080912;
  --panel: #151827;
  --panel-2: #202438;
  --text: #f7f7fb;
  --muted: #c8ccda;
  --soft: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.09);
  --accent: #ef3337;
  --accent-2: #ff5558;
  --accent-soft: rgba(239,51,55,0.14);
  --radius: 28px;
  --max: 1160px;
  --shadow: 0 24px 60px rgba(0,0,0,0.38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 0%, rgba(239,51,55,0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(90,100,255,0.13), transparent 28%),
    linear-gradient(180deg, #070811 0%, #0a0b15 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,9,18,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { width: 142px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-weight: 700; color: #e9ecf7; opacity: 0.92; }
.nav a:hover { color: #fff; opacity: 1; }
.actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(239,51,55,0.28); }
.btn-primary:hover { background: #d8292d; transform: translateY(-1px); }
.btn-soft { background: var(--accent-soft); color: #fff; border-color: rgba(239,51,55,0.34); }
.btn-soft:hover { background: rgba(239,51,55,0.22); }
.menu-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 15px;
}
.menu-dot span { display: block; height: 2px; background: #fff; border-radius: 99px; }
main { padding: 28px 0 72px; }
.card {
  background: linear-gradient(180deg, rgba(33,36,56,0.98), rgba(23,26,42,0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero {
  padding: 50px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.hero .subline {
  margin: 0 0 22px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}
.hero p { margin: 0 0 16px; color: var(--muted); font-size: 1.06rem; }
.hero-img img { border-radius: 24px; border: 1px solid rgba(255,255,255,0.10); background: #0f1222; }
.cta-strip {
  margin: 28px 0 20px;
  padding: 17px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}
.cta-strip strong { font-size: 1.04rem; }
.coins { width: 110px; height: 46px; position: relative; flex: 0 0 auto; }
.coins:before, .coins:after, .coins span {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe9a8, #ffc244 55%, #bf7d00 100%);
  box-shadow: 0 8px 18px rgba(255,194,68,.28);
}
.coins:before { width: 42px; height: 42px; right: 4px; top: 4px; }
.coins:after { width: 34px; height: 34px; right: 50px; top: 13px; }
.coins span { width: 28px; height: 28px; right: 76px; top: -2px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.content { margin-top: 34px; padding: 40px 46px; }
.content section { padding: 8px 0 34px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.content section:last-child { border-bottom: none; padding-bottom: 0; }
.kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffdede;
  font-weight: 800;
  font-size: .9rem;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
h3 {
  margin: 24px 0 12px;
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p { color: var(--muted); margin: 0 0 16px; }
ul, ol { color: var(--text); margin: 0 0 18px 22px; padding: 0; }
li { margin-bottom: 10px; }
.key-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.key-list li {
  margin: 0;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}
.key-list strong { display: block; color: #fff; margin-bottom: 5px; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 28px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.info-table th, .info-table td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.info-table th { background: rgba(239,51,55,0.15); color: #fff; }
.info-table td { color: var(--muted); }
.info-table tr:last-child td { border-bottom: none; }
.note-box, .cta-box {
  margin: 22px 0;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-box { background: linear-gradient(135deg, rgba(239,51,55,0.16), rgba(255,255,255,0.035)); border-color: rgba(239,51,55,0.25); }
.faq-list { display: grid; gap: 16px; margin-top: 22px; }
.faq-item { padding: 20px 22px; border-radius: 20px; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); }
.faq-item h3 { margin-top: 0; font-size: 1.15rem; }
.faq-item p { margin-bottom: 0; }
.site-footer { padding: 0 0 48px; color: #aeb3c6; }
.footer-card {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: #dfe3f2; font-weight: 700; }
.footer-links a:hover { color: #fff; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 34px 28px; }
  .content { padding: 30px 24px; }
  .key-list { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .site-header .container { min-height: 74px; }
  .logo img { width: 120px; }
  .actions { gap: 8px; }
  .actions .btn { display: none; }
  .btn { min-height: 45px; padding: 0 17px; }
  .hero-actions { flex-direction: column; }
  .cta-strip { border-radius: 22px; align-items: flex-start; }
  .coins { display: none; }
  .footer-card { flex-direction: column; align-items: flex-start; }
}
