.hero {
  min-height: 100vh; position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 100px; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 15%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,75,255,.16) 0%, rgba(123,47,255,.07) 50%, transparent 70%);
  pointer-events: none; animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: .7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;  transform: translateX(-50%) scale(1.06); }
}

.hero-eyebrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,75,255,.1); border: 1px solid rgba(200,75,255,.22);
  border-radius: 100px; padding: 6px 18px; margin-bottom: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #d88aff; animation: fadeUp .65s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse-green 1.5s infinite;
}

.hero-title {
  position: relative; z-index: 1;
  font-family: var(--fh); font-weight: 900; line-height: .93;
  letter-spacing: -.04em; margin-bottom: 10px;
  font-size: clamp(52px, 10vw, 130px);
  animation: fadeUp .65s .08s ease both;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--p1) 0%, #e066ff 45%, var(--p3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  position: relative; z-index: 1;
  font-family: var(--fh); font-size: clamp(14px, 2vw, 22px); font-weight: 600;
  color: var(--muted); margin-bottom: 40px; letter-spacing: -.01em;
  animation: fadeUp .65s .16s ease both;
}
.rotating-word {
  color: #d88aff; display: inline-block; min-width: 9ch; text-align: left;
  transition: opacity .28s, transform .28s;
}
.rotating-word.hide { opacity: 0; transform: translateY(-8px); }

.ip-ribbon {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  padding: 8px 22px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  font-family: 'Courier New', monospace; font-size: 15px; color: #d88aff;
  animation: fadeUp .65s .22s ease both;
}
.ip-ribbon-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.hero-chips {
  position: relative; z-index: 1;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px;
  animation: fadeUp .65s .28s ease both;
}
.chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px; padding: 7px 18px; font-size: 13px; font-weight: 600;
}
.chip.live .chip-val { color: var(--green); }
.chip-val { color: var(--p1); }
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); animation: pulse-green 1.5s infinite; }

.hero-btns {
  position: relative; z-index: 1;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .65s .36s ease both;
}

.btn-main {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: #fff; border: none; padding: 15px 34px;
  border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: transform .15s, opacity .2s; font-family: var(--fb);
  position: relative; overflow: hidden;
}
.btn-main:hover { transform: translateY(-3px); opacity: .9; }
.btn-main:active { transform: translateY(0); }
.btn-main.ok { background: linear-gradient(135deg, var(--green), #00c853); }

.btn-ghost {
  color: var(--muted); background: transparent;
  border: 1px solid rgba(255,255,255,.12); padding: 15px 28px;
  border-radius: 12px; font-size: 15px; font-weight: 500; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s; font-family: var(--fb);
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }

.scroll-prompt {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeUp .65s .6s ease both; color: var(--muted); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
}
.scroll-track {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(200,75,255,.5), transparent);
  position: relative; overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 30px;
  background: linear-gradient(to bottom, var(--p1), transparent);
  animation: scroll-line 1.6s ease-in-out infinite;
}
@keyframes scroll-line { 0%{top:-30px;opacity:1} 100%{top:60px;opacity:0} }

.s { position: relative; z-index: 1; }
.s-inner { max-width: 1220px; margin: 0 auto; padding: 100px 24px; }
.s-tag { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--p1); margin-bottom: 14px; }
.s-title { font-family: var(--fh); font-size: clamp(26px, 4.5vw, 54px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 18px; }
.s-title .hl { color: #d88aff; }
.s-body { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 680px; }
.s-body strong { color: #d88aff; font-weight: 600; }

.modes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px;
}
@media (max-width: 900px) { .modes-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .modes-grid { grid-template-columns: 1fr; } }

.mode-card {
  position: relative; border-radius: 20px; padding: 30px 26px;
  background: var(--bg2); overflow: hidden; cursor: default;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s ease, border-color .3s ease;
}
.mode-card:hover { transform: translateY(-6px); border-color: rgba(200,75,255,.22); }
.mode-glow {
  position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px;
  border-radius: 50%; opacity: .1; pointer-events: none; transition: opacity .3s;
}
.mode-card:hover .mode-glow { opacity: .18; }
.mode-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.mode-name { font-family: var(--fh); font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.mode-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.mode-badge {
  display: inline-block; margin-top: 14px; padding: 3px 11px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.badge-active { background: rgba(0,230,118,.1); color: var(--green); border: 1px solid rgba(0,230,118,.2); }
.badge-hot    { background: rgba(255,75,75,.1); color: #ff6b6b; border: 1px solid rgba(255,75,75,.2); }
.badge-new    { background: rgba(200,75,255,.12); color: var(--p1); border: 1px solid rgba(200,75,255,.2); }
.badge-soon   { background: rgba(255,180,75,.08); color: #ffb347; border: 1px solid rgba(255,180,75,.2); }

.cta-wrap { position: relative; z-index: 1; max-width: 1220px; margin: 0 auto; padding: 0 24px 80px; }
.cta-box {
  background: linear-gradient(135deg, rgba(200,75,255,.1), rgba(123,47,255,.07));
  border: 1px solid rgba(200,75,255,.2); border-radius: 24px;
  padding: 52px 60px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-title { font-family: var(--fh); font-size: clamp(20px,3.5vw,38px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.cta-title .g { background: linear-gradient(135deg, var(--p1), var(--p3)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.cta-sub { font-size: 15px; color: var(--muted); }
.cta-sub strong { color: var(--green); }

.feat-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 52px;
}
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--bg2); border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.feat-card:hover { transform: translateY(-4px); border-color: rgba(200,75,255,.18); }
.feat-num {
  position: absolute; right: 22px; top: 14px;
  font-family: var(--fh); font-size: 60px; font-weight: 900;
  color: rgba(200,75,255,.07); line-height: 1; pointer-events: none;
}
.feat-ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  background: rgba(200,75,255,.1); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.feat-title { font-family: var(--fh); font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

.social-center { position: relative; z-index: 1; text-align: center; padding: 0 24px 100px; }
.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: 14px; text-decoration: none;
  font-weight: 600; font-size: 15px; color: var(--text);
  border: 1px solid rgba(255,255,255,.09); background: var(--bg2);
  transition: transform .2s, border-color .2s;
}
.social-btn:hover { transform: translateY(-4px); }
.social-btn.discord:hover { border-color: #5865F2; }
.social-btn.vk:hover { border-color: #4680C2; }
.social-btn svg { width: 22px; height: 22px; fill: currentColor; }
.discord-ico { color: #5865F2; }
.vk-ico { color: #4680C2; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
