*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #e01c1c;
  --red-dark:   #9b0000;
  --red-glow:   #ff2222;
  --gold:       #d4a017;
  --gold-light: #f5c842;
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --bg3:        #1a1a1a;
  --border:     #2a2a2a;
  --text:       #e8e8e8;
  --text-muted: #888;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Scanline overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.18) 2px,
    rgba(0,0,0,.18) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

/* ── Noise texture ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* ── Page wrapper ── */
.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 16px 60px;
}

/* ── Top red stripe ── */
.top-stripe {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  margin-bottom: 0;
}

/* ── Header ── */
header {
  width: 100%;
  max-width: 860px;
  text-align: center;
  padding: 36px 16px 16px;
}

.skull-row {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.skull-row img {
  width: 100%;
  max-width: 860px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(224,28,28,.6)) drop-shadow(0 0 30px rgba(224,28,28,.3));
  animation: flicker 5s infinite;
}

h1.title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 10px var(--red-glow),
    0 0 30px var(--red),
    0 0 60px rgba(224,28,28,.4),
    4px 4px 0 var(--red-dark);
  animation: flicker 5s infinite;
}

.tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(.85rem, 2.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(212,160,23,.6);
}

.divider {
  width: 100%;
  max-width: 700px;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold-light), var(--red), transparent);
}

/* ── Mission image ── */
.mission-image-wrap {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 40px;
  position: relative;
}

.mission-image-wrap::before,
.mission-image-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--red), var(--gold), var(--red-dark), var(--gold));
  z-index: -1;
  animation: borderSpin 4s linear infinite;
}

.mission-image-wrap::after {
  filter: blur(12px);
  opacity: 0.55;
}

/* ── Slider ── */
.mission-slider {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 2px;
  border: 3px solid var(--red-dark);
  background: #0a0000;
}

.mission-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}

.mission-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide 1 — image */
.slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: imgPan 5s linear infinite alternate;
}

@keyframes imgPan {
  0%   { object-position: center top; }
  100% { object-position: center bottom; }
}

.slide-img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 16px;
  color: var(--red);
  font-family: 'Black Ops One', cursive;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-shadow: 0 0 10px var(--red-glow);
  line-height: 2;
}

/* Slide 2 — text */
.slide-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 32px 28px;
  gap: 20px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, rgba(10,0,0,.85) 55%, rgba(10,0,0,.2) 100%);
}

.slide-text-eye {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212,160,23,.5);
}

.slide-text-body {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(1.1rem, 3.2vw, 1.6rem);
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.9), 0 0 20px rgba(224,28,28,.5);
  max-width: 540px;
}

.slide-text-cta {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border: 1px solid var(--red-dark);
  padding: 6px 20px;
  border-radius: 2px;
  transition: all .2s ease;
}

.slide-text-cta:hover {
  background: var(--red-dark);
  color: #fff;
  border-color: var(--red);
}

/* Slide 3 — iframe */
.iframe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.iframe-wrap iframe {
  width: 200%;
  height: 200%;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}

.iframe-blocked {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #0d0000, #1a0505);
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-align: center;
}

.iframe-blocked a {
  color: var(--red);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 3px;
  font-size: .9rem;
  border: 1px solid var(--red-dark);
  padding: 6px 20px;
  border-radius: 2px;
  transition: all .2s ease;
}

.iframe-blocked a:hover {
  background: var(--red-dark);
  color: #fff;
}

/* Tyler — inside slide 2, behind the text */
.tyler-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .7s ease, transform .7s ease;
}

.tyler-img.tyler-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide dots */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 4px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--red-dark);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}

.slide-dot.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 8px rgba(224,28,28,.6);
}

.slide-dot:hover {
  border-color: var(--red);
}

.img-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 5px;
  padding: 7px 26px;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
  white-space: nowrap;
}

/* ── Missions heading ── */
.section-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(1.3rem, 4vw, 2rem);
  text-align: center;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(245,200,66,.5);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.section-title span {
  color: var(--red);
}

/* ── Mission links grid ── */
.missions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 50px;
}

.mission-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all .22s ease;
  cursor: pointer;
}

.mission-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: linear-gradient(90deg, rgba(224,28,28,.15), transparent);
  transition: width .3s ease;
}

.mission-link:hover {
  border-left-color: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224,28,28,.25), 0 0 0 1px rgba(212,160,23,.2);
}

.mission-link:hover::before { width: 100%; }

.mission-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--red-dark);
  border-radius: 2px;
  font-family: 'Black Ops One', cursive;
  font-size: .9rem;
  color: #fff;
  text-shadow: none;
  transition: background .22s ease;
  flex-shrink: 0;
}

.mission-link:hover .mission-num {
  background: var(--gold);
  color: #000;
}

.mission-logo {
  width: 36px;
  height: 36px;
  min-width: 36px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #000;
  flex-shrink: 0;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.mission-link:hover .mission-logo {
  border-color: var(--gold-light);
  box-shadow: 0 0 8px rgba(245,200,66,.4);
}

.mission-label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mission-label .sub {
  font-size: .7rem;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .22s ease;
}

.mission-link:hover .mission-label .sub {
  color: var(--gold-light);
}

.mission-arrow {
  margin-left: auto;
  color: var(--red);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s ease;
  flex-shrink: 0;
}

.mission-link:hover .mission-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold-light);
}

/* ── Share button ── */
.share-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 32px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 22px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border: 2px solid var(--red);
  border-radius: 4px;
  color: #fff;
  font-family: 'Black Ops One', cursive;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
  box-shadow: 0 0 20px rgba(224,28,28,.3), inset 0 0 30px rgba(224,28,28,.04);
  text-shadow: 0 0 10px rgba(255,255,255,.4);
}

.share-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  opacity: 0;
  transition: opacity .25s ease;
}

.share-btn:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 40px rgba(224,28,28,.6), 0 0 80px rgba(224,28,28,.2);
  transform: translateY(-3px) scale(1.01);
}

.share-btn:hover::before { opacity: 1; }

.share-btn:active { transform: translateY(0) scale(.99); }

.share-btn span,
.share-btn svg {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.x-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}

.share-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Bottom stripe ── */
.bottom-stripe {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  margin-top: auto;
  position: fixed;
  bottom: 0;
  left: 0;
}

/* ── Completed mission state ── */
.mission-link.completed {
  border-left-color: #4a0000;
  border-color: rgba(80,0,0,.55);
}

.mission-link.completed .mission-num {
  background: #2e0000;
  color: #7a7a7a;
}

.mission-link.completed::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 68'%3E%3Cg opacity='0.78'%3E%3Cellipse cx='200' cy='34' rx='58' ry='22' fill='%23780000' transform='rotate(-3 200 34)'/%3E%3Cellipse cx='178' cy='29' rx='32' ry='17' fill='%236a0000' transform='rotate(7 178 29)'/%3E%3Cellipse cx='226' cy='39' rx='27' ry='14' fill='%236a0000' transform='rotate(-9 226 39)'/%3E%3Cellipse cx='188' cy='55' rx='5' ry='14' fill='%23780000'/%3E%3Cellipse cx='211' cy='59' rx='4' ry='10' fill='%23780000'/%3E%3Cellipse cx='167' cy='51' rx='3' ry='8' fill='%23780000'/%3E%3Ccircle cx='94' cy='27' r='10' fill='%23780000'/%3E%3Ccircle cx='74' cy='45' r='6' fill='%23700000'/%3E%3Ccircle cx='113' cy='53' r='5' fill='%23680000'/%3E%3Ccircle cx='58' cy='21' r='4' fill='%23600000'/%3E%3Ccircle cx='44' cy='49' r='3' fill='%23600000'/%3E%3Ccircle cx='306' cy='23' r='9' fill='%23780000'/%3E%3Ccircle cx='332' cy='47' r='6' fill='%23700000'/%3E%3Ccircle cx='316' cy='59' r='5' fill='%23680000'/%3E%3Ccircle cx='356' cy='17' r='4' fill='%23600000'/%3E%3Ccircle cx='372' cy='51' r='3' fill='%23600000'/%3E%3Ccircle cx='138' cy='9' r='3' fill='%23600000'/%3E%3Ccircle cx='261' cy='11' r='3' fill='%23600000'/%3E%3Ccircle cx='155' cy='61' r='2' fill='%23600000'/%3E%3Ccircle cx='244' cy='62' r='2' fill='%23600000'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
  border-radius: 4px;
}

.splat-stamp {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(-14deg);
  font-family: 'Black Ops One', cursive;
  font-size: .8rem;
  letter-spacing: 3px;
  color: rgba(200,0,0,.92);
  border: 2px solid rgba(200,0,0,.75);
  padding: 2px 7px;
  z-index: 4;
  pointer-events: none;
  white-space: nowrap;
  animation: stampIn .4s cubic-bezier(.175,.885,.32,1.275) both;
}

.splat-stamp.instant { animation: none; }

/* ── Animations ── */
@keyframes flicker {
  0%,96%,100%   { opacity: 1; }
  97%           { opacity: .85; }
  98%           { opacity: 1; }
  99%           { opacity: .75; }
}

@keyframes borderSpin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 20px rgba(224,28,28,.3); }
  50%     { box-shadow: 0 0 40px rgba(224,28,28,.7); }
}

@keyframes stampIn {
  from { transform: translateY(-50%) rotate(-14deg) scale(3); opacity: 0; }
  60%  { opacity: 1; }
  to   { transform: translateY(-50%) rotate(-14deg) scale(1); opacity: 1; }
}

/* ── Share button lock / unlock states ── */

/* Locked button — shape visible, content hidden */
.share-btn.locked {
  cursor: pointer;
  animation: pulse-red 2.5s ease-in-out infinite;
}

.share-btn.locked:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 30px rgba(224,28,28,.4);
}

/* Hide only the direct text/icon children, not the mask contents */
.share-btn.locked > span,
.share-btn.locked > svg {
  opacity: 0;
}

/* Lock mask over the button */
.btn-lock-mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,.75);
  z-index: 5;
  pointer-events: none;
  border-radius: 3px;
  transition: background .2s ease;
}


.btn-lock-mask .lock-label {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase;
}

.btn-lock-mask .lock-progress {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

/* "Mission Incomplete" flash */
.btn-lock-mask.rejected {
  animation: rejectFlash .7s ease both;
}

.btn-lock-mask.rejected .lock-icon {
  animation: rejectBounce .5s ease both;
}

@keyframes rejectFlash {
  0%   { background: rgba(0,0,0,.75); }
  25%  { background: rgba(180,0,0,.9); }
  75%  { background: rgba(180,0,0,.85); }
  100% { background: rgba(0,0,0,.75); }
}

@keyframes rejectBounce {
  0%,100% { transform: scale(1); }
  40%     { transform: scale(1.3) rotate(-10deg); }
  70%     { transform: scale(.9) rotate(5deg); }
}

/* Progress text below the button */
.mission-progress {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
}

.mission-progress .prog-count {
  color: var(--red);
  font-weight: 700;
  font-size: 1.05rem;
}

.mission-progress .prog-total {
  color: #444;
}


/* Unlock flash */
@keyframes unlockFlash {
  0%   { box-shadow: 0 0 10px rgba(224,28,28,.2); border-color: var(--red); filter: none; }
  15%  { box-shadow: 0 0 80px rgba(224,28,28,1), 0 0 160px rgba(224,28,28,.7); border-color: var(--red); }
  40%  { box-shadow: 0 0 100px rgba(245,200,66,1), 0 0 200px rgba(245,200,66,.6); border-color: var(--gold-light); color: var(--gold-light); }
  70%  { box-shadow: 0 0 60px rgba(224,28,28,.9); border-color: var(--red); }
  100% { box-shadow: 0 0 20px rgba(224,28,28,.3); border-color: var(--red); }
}

.share-btn.unlocking {
  animation: unlockFlash 1.8s ease forwards !important;
  cursor: pointer;
  filter: none;
  color: #fff;
}

/* Unlocked – enhanced pulse */
@keyframes pulse-red-intense {
  0%,100% {
    box-shadow:
      0 0 25px rgba(224,28,28,.5),
      0 0 60px rgba(224,28,28,.25),
      0 0 100px rgba(212,160,23,.1);
  }
  50% {
    box-shadow:
      0 0 55px rgba(224,28,28,1),
      0 0 110px rgba(224,28,28,.5),
      0 0 180px rgba(212,160,23,.3);
  }
}

.share-btn.unlocked {
  animation: pulse-red-intense 1.8s ease-in-out infinite !important;
  filter: none;
  border-color: var(--red);
  color: #fff;
  cursor: pointer;
}

.share-btn.unlocked:hover {
  animation: none !important;
}

/* Unlocked label flash */
.share-note.unlocked-note {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(245,200,66,.5);
  letter-spacing: 3px;
  animation: flicker 3s infinite;
}

/* Normal pulse (default, before any state) */
.share-btn { animation: pulse-red 2.5s ease-in-out infinite; }
.share-btn:hover { animation: none; }

/* ── Share pre-modal ── */
.share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.share-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.share-modal {
  background: linear-gradient(135deg, #0f0000 0%, #1e0505 60%, #0f0000 100%);
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 0 60px rgba(224,28,28,.4), 0 0 120px rgba(224,28,28,.15);
  transform: scale(.92);
  transition: transform .3s ease;
}

.share-modal-overlay.visible .share-modal {
  transform: scale(1);
}

.share-modal-title {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: var(--gold-light);
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(245,200,66,.5);
  line-height: 1.3;
}

.share-modal-body {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: .5px;
}

.share-modal-hint {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(.9rem, 2.5vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.5;
  border-left: 3px solid var(--red-dark);
  padding-left: 12px;
  text-align: left;
}

.share-modal-hint span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.share-modal-ok {
  margin-top: 6px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border: 2px solid var(--red);
  border-radius: 4px;
  color: #fff;
  font-family: 'Black Ops One', cursive;
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: 0 0 20px rgba(224,28,28,.4);
  align-self: center;
}

.share-modal-ok:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: var(--gold-light);
  color: #000;
  box-shadow: 0 0 30px rgba(245,200,66,.5);
  transform: translateY(-2px);
}

.share-modal-ok:active { transform: translateY(0); }

@media (max-width: 600px) {
  .share-modal { padding: 28px 20px; gap: 14px; }
  .share-modal-ok { padding: 12px 28px; font-size: 1rem; }
}

/* ── Responsive ── */

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
  .mission-slider { height: 300px; }

  .slide-text-body { font-size: clamp(1rem, 3.5vw, 1.3rem); }

  .mission-link { padding: 12px 14px; gap: 10px; }

  .share-btn { padding: 18px 24px; letter-spacing: 2px; }
}

/* Phone (≤ 600px) */
@media (max-width: 600px) {
  header { padding: 24px 12px 12px; }

  .skull-row { margin-bottom: 10px; }

  .tagline { letter-spacing: 3px; }

  .mission-image-wrap { margin-top: 28px; }

  .img-badge {
    font-size: .8rem;
    letter-spacing: 3px;
    padding: 5px 18px;
    top: -24px;
  }

  .mission-slider { height: 240px; }

  .slide-text { padding: 20px 16px; gap: 14px; }

  .slide-text-eye { font-size: .75rem; letter-spacing: 3px; }

  .slide-text-body { font-size: clamp(.9rem, 4vw, 1.1rem); }

  .slide-text-cta { font-size: .75rem; padding: 5px 14px; }

  /* Larger tap targets for dots */
  .slide-dots { padding: 12px 0 6px; gap: 14px; }
  .slide-dot  { width: 14px; height: 14px; }

  .missions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-title { letter-spacing: 1px; margin-bottom: 16px; }

  .mission-link { padding: 11px 12px; gap: 9px; font-size: .9rem; }

  .mission-num  { width: 26px; height: 26px; min-width: 26px; font-size: .8rem; }

  .mission-logo { width: 30px; height: 30px; min-width: 30px; }

  /* Always show arrow on touch devices */
  .mission-arrow { opacity: 1; transform: translateX(0); }

  /* Truncate long coin names */
  .mission-label span:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
  }

  .share-wrap { max-width: 100%; }

  .share-btn {
    padding: 16px 16px;
    letter-spacing: 1px;
    font-size: clamp(1rem, 5vw, 1.3rem);
    gap: 10px;
  }

  .x-icon { width: 22px; height: 22px; }

  .btn-lock-mask .lock-label {
    font-size: clamp(.9rem, 5vw, 1.2rem);
    letter-spacing: 3px;
  }

  .btn-lock-mask .lock-progress { font-size: .72rem; }

  .splat-stamp { font-size: .65rem; right: 8px; padding: 2px 5px; }

  .tyler-img { height: 90%; }
}

/* Very small phones (≤ 380px) */
@media (max-width: 380px) {
  h1.title { font-size: 2.4rem; }

  .mission-slider { height: 210px; }

  .mission-link { padding: 10px 10px; gap: 7px; font-size: .85rem; }

  .mission-label span:first-child { max-width: 110px; }

  .share-btn { font-size: clamp(.85rem, 5vw, 1.1rem); }
}
