* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lilita One', cursive;
  background: #1e0340;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

header { will-change: transform; }

body.no-select {
  user-select: none;
  -webkit-user-select: none;
}

.sunburst-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 45%, #7c3aed 0%, #5b21b6 30%, #4c1d95 50%, #3b0764 70%, #1e0340 100%);
}
.sunburst-bg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 250vmax; height: 250vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,0.045) 0deg 5deg, transparent 5deg 10deg);
  animation: sunburst-spin 240s linear infinite;
}
.sunburst-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 30%, rgba(30,3,64,0.5) 80%);
  pointer-events: none;
}
@keyframes sunburst-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.particles-layer {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  from { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.campaign-page {
  position: relative;
  z-index: 1;
  padding: 220px 20px 80px;
  min-height: 100vh;
}

.campaign-page-title {
  text-align: center;
  font-family: 'Lilita One', cursive;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 4px 24px rgba(124,58,237,0.6), 0 0 60px rgba(124,58,237,0.3);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease-out forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.campaign-subtitle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s ease-out forwards;
}

.campaign-subtitle .sub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15,5,40,0.65);
  border: 1.5px solid rgba(124,58,237,0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-family: system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: border-color 0.3s, background 0.3s;
}

.campaign-subtitle .sub-pill:hover {
  border-color: rgba(124,58,237,0.55);
  background: rgba(124,58,237,0.15);
}

.campaign-subtitle .sub-pill .pill-icon {
  font-size: 1.15rem;
}

@keyframes freeBannerPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(74,222,128,0.15), inset 0 0 20px rgba(74,222,128,0.03); }
  50% { box-shadow: 0 0 30px rgba(74,222,128,0.25), inset 0 0 30px rgba(74,222,128,0.06); }
}

@keyframes freeIconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.campaign-free-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 36px;
  padding: 16px 28px;
  background: linear-gradient(135deg, rgba(74,222,128,0.12) 0%, rgba(34,197,94,0.08) 50%, rgba(74,222,128,0.12) 100%);
  border: 1.5px solid rgba(74,222,128,0.35);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.6s 0.45s ease-out forwards, freeBannerPulse 3s 1s ease-in-out infinite;
}

.campaign-free-banner-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(74,222,128,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.campaign-free-icon {
  font-size: 1.6rem;
  animation: freeIconBounce 2s ease-in-out infinite;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(74,222,128,0.5));
}

.campaign-free-text {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.campaign-free-text strong {
  color: #4ade80;
  font-family: 'Lilita One', cursive;
  font-size: 1.05rem;
}

.campaign-free-cta {
  flex-shrink: 0;
  padding: 8px 18px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #0a1a10;
  font-family: 'Lilita One', cursive;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(74,222,128,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.campaign-free-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(74,222,128,0.5);
}

@media (max-width: 640px) {
  .campaign-free-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
    margin: 0 12px 28px;
    text-align: center;
  }
  .campaign-free-text { font-size: 0.88rem; }
  .campaign-free-cta { padding: 8px 22px; }
}

.back-button {
  position: fixed;
  top: 100px;
  left: 150px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-family: 'Lilita One', cursive;
  font-size: 1.15rem;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(124,58,237,0.4);
  border: none;
  cursor: url('/static/cursor/select.cur'), pointer;
  letter-spacing: 0.05em;
}

.back-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 28px rgba(124,58,237,0.55);
}

.back-button *,
.back-button span,
.back-button svg {
  pointer-events: none;
}

.back-button svg {
  width: 20px;
  height: 20px;
}

.modes-grid {
  max-width: 1000px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.mode-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(15,5,40,0.7);
  border: 2px solid rgba(124,58,237,0.25);
  backdrop-filter: blur(12px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s, border-color 0.35s;
  cursor: url('/static/cursor/select.cur'), pointer !important;
  opacity: 0;
  animation: cardIn 0.6s ease-out forwards;
  display: flex;
  flex-direction: column;
}

.mode-card *,
.mode-button * {
  cursor: url('/static/cursor/select.cur'), pointer !important;
}

.mode-card:nth-child(1) { animation-delay: 0.4s; }
.mode-card:nth-child(2) { animation-delay: 0.55s; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: none; }
}

.mode-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(124,58,237,0.4), 0 0 32px rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.5);
}

.mode-card.locked {
  opacity: 0.55;
  filter: grayscale(40%);
}

.mode-card.locked:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(124,58,237,0.25);
}

.mode-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.mode-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mode-card:hover .mode-image-wrapper img {
  transform: scale(1.08);
}

.mode-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,5,40,0.85) 100%);
  pointer-events: none;
}

.mode-content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
}

.mode-title {
  font-family: 'Lilita One', cursive;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin: 0;
}

.mode-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  flex-grow: 1;
  font-family: system-ui, sans-serif;
  font-weight: 400;
}

.badge-locked {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: 'Lilita One', cursive;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 10;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 14px rgba(239,68,68,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lock-icon {
  font-size: 1rem;
}

.mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Lilita One', cursive;
  font-size: 1.05rem;
  cursor: url('/static/cursor/select.cur'), pointer !important;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(124,58,237,0.4);
  min-height: 48px;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mode-button:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(124,58,237,0.55);
}

.mode-button:disabled {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  cursor: url('/static/cursor/base.cur'), not-allowed !important;
  box-shadow: none;
  opacity: 0.55;
}

.mode-button:disabled:hover {
  transform: none;
  box-shadow: none;
}

.difficulty-selector {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 420px;
}

.diff-btn {
  flex: 1;
  padding: 8px 2px;
  border: 1.5px solid rgba(167,139,250,0.3);
  border-radius: 10px;
  background: rgba(15,5,40,0.5);
  color: rgba(255,255,255,0.65);
  font-family: 'Lilita One', cursive;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.diff-btn:hover {
  border-color: rgba(167,139,250,0.55);
  background: rgba(124,58,237,0.15);
  color: #fff;
}

.diff-btn.active {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-color: #a78bfa;
  color: #fff;
  box-shadow: 0 2px 12px rgba(124,58,237,0.4);
}

.campaign-chapters {
  max-width: 1000px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.chapter-block {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

.chapter-label {
  margin-bottom: 1rem;
}

.chapter-label-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(91,33,182,0.15));
  border: 1.5px solid rgba(124,58,237,0.3);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.chapter-num {
  font-family: 'Lilita One', cursive;
  font-size: 1.2rem;
  color: #a78bfa;
  letter-spacing: 0.06em;
  text-shadow: 0 0 16px rgba(167,139,250,0.4);
}

.chapter-status.done {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34,197,94,0.12);
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(34,197,94,0.25);
}

.chapter-status.free {
  font-family: 'Lilita One', cursive;
  font-size: 0.72rem;
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(251,191,36,0.3);
  letter-spacing: 0.03em;
}

.chapter-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 14px;
  align-items: stretch;
}

.lvl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 10px 18px;
  background: linear-gradient(160deg, rgba(30,41,59,0.85), rgba(15,23,42,0.9));
  border: 2px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: #fff;
  cursor: url('/static/cursor/select.cur'), pointer;
  transition: transform 0.4s cubic-bezier(0.21,0.61,0.35,1), box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(124,58,237,0.1);
  overflow: hidden;
  opacity: 0;
  animation: lvlCardIn 0.5s ease-out forwards;
  min-height: 130px;
}

.lvl-card * {
  pointer-events: none;
}

@keyframes lvlCardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.92); }
  to   { opacity: 1; transform: none; }
}

.lvl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 20%, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lvl-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px rgba(124,58,237,0.35), 0 0 30px rgba(167,139,250,0.15);
  border-color: rgba(167,139,250,0.5);
}

.lvl-card.lvl-completed {
  border-color: rgba(34,197,94,0.35);
  background: linear-gradient(160deg, rgba(20,50,35,0.85), rgba(10,35,25,0.9));
}

.lvl-card.lvl-completed::before {
  background: radial-gradient(circle at 30% 20%, rgba(34,197,94,0.1) 0%, transparent 60%);
}

.lvl-card.lvl-completed:hover {
  box-shadow: 0 16px 40px rgba(34,197,94,0.3), 0 0 30px rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.6);
}

.lvl-card.lvl-locked {
  opacity: 0.4;
  filter: grayscale(40%) brightness(0.65);
  cursor: not-allowed;
}

.lvl-card.lvl-locked:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-color: rgba(124,58,237,0.2);
}

.lvl-card.lvl-current {
  border-color: rgba(167,139,250,0.6);
  animation: lvlCardIn 0.5s ease-out forwards, currentPulse 2.5s 1s ease-in-out infinite;
}

@keyframes currentPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(124,58,237,0.2); }
  50% { box-shadow: 0 8px 34px rgba(124,58,237,0.4), 0 0 40px rgba(167,139,250,0.25); }
}

.lvl-card.lvl-boss {
  background: linear-gradient(160deg, rgba(60,15,20,0.9), rgba(40,8,12,0.95));
  border-color: rgba(239,68,68,0.4);
  border-width: 2.5px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 25px rgba(239,68,68,0.15), 0 0 50px rgba(251,191,36,0.08);
  animation: lvlCardIn 0.5s ease-out forwards, bossBreath 3s 1.5s ease-in-out infinite;
}

.lvl-card.lvl-boss::before {
  background: radial-gradient(circle at 50% 30%, rgba(239,68,68,0.12) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(251,191,36,0.06) 0%, transparent 50%);
}

@keyframes bossBreath {
  0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 25px rgba(239,68,68,0.15), 0 0 50px rgba(251,191,36,0.08); }
  50% { box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 40px rgba(239,68,68,0.25), 0 0 70px rgba(251,191,36,0.15); }
}

.lvl-card.lvl-boss:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 50px rgba(239,68,68,0.3), 0 0 40px rgba(239,68,68,0.2), 0 0 60px rgba(251,191,36,0.12);
  border-color: rgba(239,68,68,0.7);
}

.lvl-card.lvl-boss.lvl-completed {
  background: linear-gradient(160deg, rgba(20,50,35,0.85), rgba(10,35,25,0.9));
  border-color: rgba(34,197,94,0.4);
  animation: lvlCardIn 0.5s ease-out forwards;
}

.lvl-card.lvl-boss.lvl-completed:hover {
  box-shadow: 0 16px 40px rgba(34,197,94,0.3), 0 0 30px rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.6);
}

.lvl-card.lvl-boss.lvl-locked {
  animation: lvlCardIn 0.5s ease-out forwards;
}

.lvl-card.lvl-boss.lvl-current {
  animation: lvlCardIn 0.5s ease-out forwards, bossBorderPulse 2.5s 1s ease-in-out infinite;
}

@keyframes bossBorderPulse {
  0%, 100% { border-color: rgba(239,68,68,0.5); box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 25px rgba(239,68,68,0.2); }
  50% { border-color: rgba(251,191,36,0.6); box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 45px rgba(239,68,68,0.3), 0 0 60px rgba(251,191,36,0.15); }
}

.boss-glow-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(251,191,36,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lvl-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4px;
  min-height: 22px;
  position: relative;
  z-index: 2;
}

.boss-badge {
  font-family: 'Lilita One', cursive;
  font-size: 0.65rem;
  color: #fbbf24;
  background: linear-gradient(135deg, rgba(239,68,68,0.25), rgba(251,191,36,0.15));
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(251,191,36,0.3);
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(251,191,36,0.5);
  white-space: nowrap;
}

.lvl-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  box-shadow: 0 2px 10px rgba(34,197,94,0.45);
  border: 2px solid rgba(255,255,255,0.25);
  margin-left: auto;
}

.lvl-lock {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-left: auto;
}

.lvl-num {
  font-family: 'Lilita One', cursive;
  font-size: 2.4rem;
  color: #a78bfa;
  text-shadow: 0 0 20px rgba(167,139,250,0.4), 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1;
  position: relative;
  z-index: 2;
}

.lvl-card.lvl-completed .lvl-num {
  color: #4ade80;
  text-shadow: 0 0 20px rgba(34,197,94,0.4), 0 2px 4px rgba(0,0,0,0.3);
}

.lvl-card.lvl-boss .lvl-num {
  font-size: 2.8rem;
  color: #fbbf24;
  text-shadow: 0 0 24px rgba(251,191,36,0.5), 0 2px 4px rgba(0,0,0,0.4);
}

.lvl-card.lvl-boss.lvl-completed .lvl-num {
  color: #4ade80;
  text-shadow: 0 0 20px rgba(34,197,94,0.4), 0 2px 4px rgba(0,0,0,0.3);
}

.lvl-stars {
  display: flex;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.star {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s;
}

.star.filled {
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.5));
}

.lvl-card.lvl-completed .star.filled {
  color: #4ade80;
  filter: drop-shadow(0 0 4px rgba(34,197,94,0.5));
}

.lvl-score-text {
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.lvl-play-hint {
  font-family: 'Lilita One', cursive;
  font-size: 0.75rem;
  color: rgba(167,139,250,0.6);
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}

.lvl-card.lvl-boss .lvl-play-hint {
  color: rgba(251,191,36,0.5);
}

.lvl-next-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  border: 2px solid rgba(167,139,250,0.4);
  animation: cardPulseRing 2s ease-in-out infinite;
  pointer-events: none;
}

.lvl-card.lvl-boss .lvl-next-pulse {
  border-color: rgba(239,68,68,0.4);
}

@keyframes cardPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 0; }
}

.coming-soon-block {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 0;
  opacity: 0;
  animation: fadeUp 0.6s 1.5s ease-out forwards;
}

.coming-soon-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(91,33,182,0.08));
  border: 1.5px dashed rgba(167,139,250,0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.coming-soon-icon {
  font-size: 1.4rem;
}

.coming-soon-text {
  font-family: 'Lilita One', cursive;
  font-size: 1.1rem;
  color: rgba(167,139,250,0.6);
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgba(167,139,250,0.2);
}

@media (max-width: 1100px) {
  .back-button {
    left: 10px;
  }
}

@media (max-width: 900px) {
  .back-button {
    top: 100px;
    left: 10px;
    padding: 10px 18px;
    font-size: 1.05rem;
  }

  .campaign-page-title {
    font-size: 2.4rem;
  }

  .chapter-levels {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .campaign-page {
    padding: 180px 12px 60px;
  }

  .campaign-page-title {
    font-size: 2rem;
  }

  .campaign-subtitle {
    gap: 8px;
    padding: 0 8px;
  }

  .campaign-subtitle .sub-pill {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .chapter-levels {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .lvl-card {
    padding: 16px 6px 14px;
    border-radius: 16px;
    min-height: 110px;
  }

  .lvl-num {
    font-size: 1.8rem;
  }

  .lvl-card.lvl-boss .lvl-num {
    font-size: 2rem;
  }

  .boss-badge {
    font-size: 0.55rem;
    padding: 2px 6px;
  }

  .lvl-check {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }

  .star {
    font-size: 0.7rem;
  }

  .chapter-num {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .campaign-page {
    padding: 160px 8px 60px;
  }

  .back-button {
    top: 60px;
    left: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    gap: 6px;
  }

  .back-button svg {
    width: 16px;
    height: 16px;
  }

  .campaign-page-title {
    font-size: 1.6rem;
  }

  .campaign-chapters {
    gap: 1.8rem;
  }

  .chapter-levels {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .lvl-card.lvl-boss {
    grid-column: span 2;
  }

  .lvl-card {
    padding: 14px 4px 12px;
    border-radius: 14px;
    min-height: 95px;
    gap: 5px;
  }

  .lvl-num {
    font-size: 1.5rem;
  }

  .lvl-card.lvl-boss .lvl-num {
    font-size: 1.8rem;
  }

  .boss-badge {
    font-size: 0.5rem;
    padding: 2px 5px;
  }

  .lvl-check {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
  }

  .star {
    font-size: 0.6rem;
  }

  .lvl-play-hint {
    font-size: 0.65rem;
  }

  .chapter-num {
    font-size: 0.95rem;
  }

  .chapter-label-inner {
    padding: 8px 16px;
    gap: 8px;
