/* ═══════════════════════════════════════
   СТРАНИЦА BATTLE PASS — coming soon
═══════════════════════════════════════ */

@keyframes bp-orbit-a   { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes bp-orbit-b   { from { transform: rotate(360deg); } to { transform: rotate(0deg);    } }
@keyframes bp-core-spark {
  0%, 100% { box-shadow: 0 0 24px rgba(232,90,32,0.45), inset 0 0 18px rgba(0,0,0,0.4); transform: scale(1); }
  50%      { box-shadow: 0 0 40px rgba(232,200,74,0.55), inset 0 0 24px rgba(0,0,0,0.4); transform: scale(1.04); }
}
@keyframes bp-dot-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.25); }
}
@keyframes bp-soon-shimmer {
  0%   { background-position:   0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes bp-glow-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-18px, 14px); }
}

/* ── Контейнер ── */
.bp-page {
  max-width: 880px; margin: 0 auto;
  padding: 32px 32px 72px;
  display: flex; flex-direction: column; gap: 16px;
  width: 100%;
}

/* ── Назад ── */
.bp-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-dim);
  text-decoration: none; padding: 6px 10px; margin-left: -10px;
  border-radius: 8px; width: fit-content;
  transition: background 0.15s, color 0.15s;
}
.bp-back:hover { background: rgba(var(--accent-rgb),0.07); color: var(--text); }

/* ── Hero ── */
.bp-hero {
  position: relative; overflow: hidden;
  border-radius: 22px;
  padding: 56px 40px 44px;
  background:
    radial-gradient(circle at 18% 12%, rgba(232,200,74,0.13) 0%, transparent 45%),
    radial-gradient(circle at 82% 88%, rgba(212,99,58,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #0d0a1c 0%, #1a0e0a 35%, #221008 60%, #14081a 100%);
  border: 1px solid rgba(232,200,74,0.18);
  box-shadow: 0 0 60px rgba(212,99,58,0.06), inset 0 0 80px rgba(0,0,0,0.4);
  isolation: isolate;
}

/* Шум-текстура */
.bp-hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 220px;
}
/* Диагональные полоски — Operation вайб */
.bp-hero-stripes {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.55;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 26px,
    rgba(232,200,74,0.04) 26px, rgba(232,200,74,0.04) 27px,
    transparent 27px, transparent 70px,
    rgba(212,99,58,0.045) 70px, rgba(212,99,58,0.045) 72px
  );
}
.bp-hero-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1; filter: blur(2px);
  animation: bp-glow-drift 7s ease-in-out infinite;
}
.bp-hero-glow--a {
  width: 360px; height: 360px; top: -90px; left: -90px;
  background: radial-gradient(circle, rgba(232,200,74,0.16) 0%, transparent 70%);
}
.bp-hero-glow--b {
  width: 420px; height: 420px; bottom: -140px; right: -120px;
  background: radial-gradient(circle, rgba(212,99,58,0.16) 0%, transparent 70%);
  animation-delay: -3s;
}

.bp-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* Бейдж */
.bp-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.6px;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(232,200,74,0.13);
  border: 1px solid rgba(232,200,74,0.35);
  color: #e8c84a; margin-bottom: 28px;
}
.bp-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e85a20; box-shadow: 0 0 8px #e85a20;
  animation: bp-dot-pulse 1.4s ease-in-out infinite;
}

/* ── Эмблема со звездой ── */
.bp-emblem {
  position: relative;
  width: 168px; height: 168px;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
}
.bp-emblem-orbit {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.bp-emblem-orbit--a {
  inset: 0;
  background: conic-gradient(from 0deg,
    rgba(232,200,74,0.0) 0deg,
    rgba(232,200,74,0.85) 70deg,
    rgba(212,99,58,0.85) 150deg,
    rgba(232,200,74,0.0) 220deg,
    rgba(232,200,74,0.65) 310deg,
    rgba(232,200,74,0.0) 360deg);
  mask: radial-gradient(circle, transparent 64%, #000 66%, #000 100%);
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 66%, #000 100%);
  animation: bp-orbit-a 9s linear infinite;
}
.bp-emblem-orbit--b {
  inset: 14px;
  border: 1px dashed rgba(232,200,74,0.35);
  animation: bp-orbit-b 22s linear infinite;
}
.bp-emblem-orbit--c {
  inset: 26px;
  border: 1px solid rgba(232,200,74,0.12);
  box-shadow: inset 0 0 24px rgba(232,90,32,0.18);
}
.bp-emblem-core {
  position: relative; z-index: 1;
  width: 108px; height: 108px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, #f5a800 0%, #e85a20 55%, #8a2010 100%);
  border: 2px solid rgba(232,200,74,0.65);
  color: #fff;
  animation: bp-core-spark 2.4s ease-in-out infinite;
}

/* ── Текст ── */
.bp-title {
  font-size: 38px; font-weight: 800; color: #fff;
  letter-spacing: -0.6px; line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.bp-soon {
  margin-top: 8px; font-size: 16px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  background: linear-gradient(90deg, #e8c84a 0%, #f5a800 25%, #e85a20 50%, #f5a800 75%, #e8c84a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bp-soon-shimmer 4s linear infinite;
}
.bp-desc {
  margin-top: 18px; max-width: 540px;
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55);
}

/* ── Превью наград ── */
.bp-preview {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 32px; width: 100%; max-width: 660px;
}
.bp-preview-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(232,200,74,0.12);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-align: left;
}
.bp-preview-item:hover {
  border-color: rgba(232,200,74,0.35);
  background: rgba(0,0,0,0.42);
  transform: translateY(-2px);
}
.bp-preview-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.bp-preview-text { min-width: 0; }
.bp-preview-title {
  font-size: 12px; font-weight: 700; color: #fff;
  margin-bottom: 2px;
}
.bp-preview-sub {
  font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.4;
}

/* ── CTA ── */
.bp-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 32px;
  padding: 12px 24px; border-radius: 11px;
  background: rgba(232,200,74,0.1);
  border: 1px solid rgba(232,200,74,0.35);
  color: #e8c84a; font-size: 13px; font-weight: 800;
  letter-spacing: 0.3px; text-decoration: none;
  transition: all 0.2s;
}
.bp-cta:hover {
  background: rgba(232,200,74,0.18);
  border-color: rgba(232,200,74,0.55);
  transform: translateY(-1px);
}

/* ── Адаптив ── */
@media (max-width: 760px) {
  .bp-page  { padding: 16px 14px 48px; gap: 12px; }
  .bp-hero  { padding: 40px 22px 32px; border-radius: 18px; }
  .bp-emblem      { width: 132px; height: 132px; margin-bottom: 22px; }
  .bp-emblem-core { width: 86px; height: 86px; }
  .bp-emblem-core svg { width: 46px; height: 46px; }
  .bp-title { font-size: 28px; }
  .bp-soon  { font-size: 13px; letter-spacing: 3px; }
  .bp-desc  { font-size: 13px; margin-top: 14px; }
  .bp-preview { grid-template-columns: 1fr; margin-top: 24px; gap: 8px; }
}
