/* ═══════════════════════════════════════════════
   VILLAINARC — GLOBAL STYLES
   ═══════════════════════════════════════════════ */

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

:root {
  --bg: #050508;
  --bg-card: #0a0f18;
  --bg-card-hover: #0f1520;
  --border: #1a1525;
  --border-glow: #2a1a35;
  --fire: #ff6b1a;
  --fire-glow: rgba(255, 107, 26, 0.3);
  --fire-intense: #ff8c42;
  --red: #ff3c5a;
  --red-glow: rgba(255, 60, 90, 0.3);
  --text: #e8e4ef;
  --text-dim: #8a8494;
  --text-muted: #5a5464;
  --white: #ffffff;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Lexend', sans-serif;
  --font-thesis: 'Abril Fatface', serif;
  --font-mono: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  display: none;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.page.active {
  display: block;
}

.dm-mono {
  font-family: var(--font-mono);
}

.text-fire {
  color: var(--fire);
  text-shadow: 0 0 30px var(--fire-glow), 0 0 60px rgba(255, 107, 26, 0.15);
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px var(--fire-glow));
}
.logo-accent {
  color: var(--fire);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}
.btn-nav-cta {
  background: var(--fire) !important;
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.btn-nav-cta:hover {
  box-shadow: 0 0 20px var(--fire-glow);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--fire), #e85d10);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--fire-glow), 0 0 60px rgba(255, 107, 26, 0.2);
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════ */

.landing-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: center;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fire);
  letter-spacing: 2px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.landing-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.title-line {
  display: block;
  animation: fadeInUp 0.8s ease backwards;
}
.title-line-1 { animation-delay: 0.2s; }
.title-line-2 { animation-delay: 0.4s; }

.landing-subtitle {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 44px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}
.landing-subtitle strong {
  color: var(--fire);
}

.btn-cta-main {
  font-size: 18px;
  padding: 20px 48px;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}
.btn-arrow {
  font-size: 20px;
  transition: transform 0.3s;
}
.btn-cta-main:hover .btn-arrow {
  transform: translateX(4px);
}

.landing-samples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 80px;
  animation: fadeInUp 0.8s ease 1s backwards;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: all 0.4s;
}
.sample-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.08);
  transform: translateY(-4px);
}
.sample-quote {
  font-family: var(--font-thesis);
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sample-style {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fire);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.landing-stats {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   FORM
   ═══════════════════════════════════════════════ */

.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.form-progress {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  padding: 12px 40px;
  z-index: 50;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(10px);
}
.progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--red));
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 20%;
}
.progress-label {
  text-align: right;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.form-step {
  display: none;
  animation: fadeInUp 0.6s ease;
}
.form-step.active {
  display: block;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 107, 26, 0.12);
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.step-desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.step-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.step-input:focus {
  border-color: var(--fire);
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.1);
}
.step-input::placeholder {
  color: var(--text-muted);
}

.gift-input {
  margin-bottom: 0;
  padding: 14px 20px;
}

.btn-next, .btn-submit {
  margin-top: 28px;
  width: 100%;
}

.btn-back {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 50;
  display: none;
}
.btn-back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Mythology Cards */
.mythology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
.myth-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
}
.myth-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.myth-card.selected {
  border-color: var(--fire);
  background: rgba(255, 107, 26, 0.06);
  box-shadow: 0 0 30px var(--fire-glow);
}
.myth-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.myth-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.myth-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Gift */
.gift-intro-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: center;
}
.gift-fields {
  display: grid;
  gap: 20px;
  margin: 32px 0;
  text-align: left;
}
.gift-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════
   LOADING
   ═══════════════════════════════════════════════ */

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.loading-skull {
  font-size: 72px;
  animation: fireGlow 2s ease-in-out infinite, float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--fire-glow));
  margin-bottom: 16px;
}

.loading-flames {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.flame {
  width: 8px;
  height: 24px;
  background: var(--fire);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: flameFlicker 0.8s ease-in-out infinite alternate;
  filter: blur(1px);
}
.flame.f2 { animation-delay: 0.2s; height: 32px; }
.flame.f3 { animation-delay: 0.4s; height: 20px; }

.loading-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 600;
  margin-bottom: 32px;
  animation: textGlow 2s ease-in-out infinite;
}

.loading-bar-container {
  width: 300px;
  max-width: 80%;
  height: 4px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--fire), var(--red), var(--fire));
  background-size: 200% 100%;
  border-radius: 10px;
  animation: shimmer 2s linear infinite;
  transition: width 0.5s;
}

.loading-texts {
  height: 30px;
  position: relative;
}
.loading-text {
  position: absolute;
  width: 100%;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.5s;
}
.loading-text.active {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   STORY DISPLAY
   ═══════════════════════════════════════════════ */

.story-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.story-header {
  text-align: center;
  margin-bottom: 48px;
}

.story-style-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fire);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-gift-badge {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-dim);
}

.story-sections {
  margin-bottom: 60px;
}

.story-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease backwards;
}
.story-section:nth-child(1) { animation-delay: 0.1s; }
.story-section:nth-child(2) { animation-delay: 0.3s; }
.story-section:nth-child(3) { animation-delay: 0.5s; }

.story-section-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--fire);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 107, 26, 0.15);
}

.story-section-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
}
.story-section-text p {
  margin-bottom: 16px;
}

.story-thesis-container {
  text-align: center;
  padding: 60px 20px;
  margin: 40px -24px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 26, 0.06), transparent 70%);
  border-top: 1px solid rgba(255, 107, 26, 0.1);
  border-bottom: 1px solid rgba(255, 107, 26, 0.1);
  animation: fadeInUp 0.8s ease 0.7s backwards;
}

.thesis-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--fire);
  margin-bottom: 24px;
}

.story-thesis {
  font-family: var(--font-thesis);
  font-size: clamp(24px, 5vw, 42px);
  color: var(--white);
  line-height: 1.4;
  border: none;
  padding: 0;
  text-shadow: 0 0 40px var(--fire-glow), 0 0 80px rgba(255, 107, 26, 0.1);
  animation: textGlow 3s ease-in-out infinite;
}

.story-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 100px;
  color: var(--fire);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-fire:hover {
  background: rgba(255, 107, 26, 0.2);
  box-shadow: 0 0 20px var(--fire-glow);
  transform: scale(1.05);
}
.btn-fire.fired {
  background: var(--fire);
  color: var(--bg);
}
.fire-icon {
  font-size: 20px;
  transition: transform 0.3s;
}
.btn-fire:hover .fire-icon {
  transform: scale(1.2);
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-share:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--border-glow);
}

.story-footer {
  text-align: center;
  margin-top: 60px;
}

/* ═══════════════════════════════════════════════
   HALL OF VILLAINS
   ═══════════════════════════════════════════════ */

.hall-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hall-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}
.hall-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.hall-weekly {
  margin-bottom: 48px;
}
.weekly-badge {
  text-align: center;
  font-size: 12px;
  color: var(--fire);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.weekly-card {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.06), rgba(255, 60, 90, 0.04));
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
}
.weekly-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 26, 0.12);
}
.weekly-thesis {
  font-family: var(--font-thesis);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}
.weekly-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.hall-sort {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.sort-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}
.sort-btn:hover {
  border-color: var(--border-glow);
  color: var(--white);
}
.sort-btn.active {
  background: var(--fire);
  border-color: var(--fire);
  color: var(--bg);
  font-weight: 600;
}

.hall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.hall-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.hall-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--fire-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.hall-card:hover {
  border-color: rgba(255, 107, 26, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.hall-card:hover::before {
  opacity: 1;
}

.hall-card-content {
  position: relative;
  z-index: 1;
}

.hall-card-style {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fire);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hall-card-thesis {
  font-family: var(--font-thesis);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 16px;
}
.hall-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.hall-card-fires {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--fire);
  font-weight: 600;
}
.hall-card-gift {
  font-size: 11px;
  color: var(--red);
  margin-bottom: 8px;
}

.hall-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}

.btn-load-more {
  display: block;
  margin: 36px auto 0;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-load-more:hover {
  border-color: var(--fire);
  color: var(--fire);
}

/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fireGlow {
  0%, 100% { filter: drop-shadow(0 0 20px var(--fire-glow)); }
  50% { filter: drop-shadow(0 0 40px rgba(255, 107, 26, 0.5)); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes flameFlicker {
  0% { transform: scaleY(1) scaleX(1); opacity: 1; }
  100% { transform: scaleY(1.3) scaleX(0.8); opacity: 0.7; }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 30px var(--fire-glow); }
  50% { text-shadow: 0 0 50px var(--fire-glow), 0 0 80px rgba(255, 107, 26, 0.15); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-mobile-toggle {
    display: block;
  }

  .landing-container {
    padding: 120px 20px 60px;
  }
  .landing-title {
    font-size: clamp(32px, 10vw, 56px);
  }
  .landing-samples {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .form-container {
    padding: 140px 20px 80px;
  }
  .form-progress {
    padding: 12px 20px;
  }

  .mythology-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-container {
    padding: 100px 20px 60px;
  }

  .story-thesis {
    font-size: clamp(20px, 6vw, 32px);
  }

  .story-actions {
    gap: 8px;
  }
  .btn-share {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hall-grid {
    grid-template-columns: 1fr;
  }

  .btn-back {
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 480px) {
  .mythology-grid {
    grid-template-columns: 1fr;
  }
  .story-actions {
    flex-direction: column;
  }
  .story-actions .btn-share,
  .story-actions .btn-fire {
    width: 100%;
    justify-content: center;
  }
}
