:root {
  --teal: #3ecfbd;
  --teal-dark: #1a9e8e;
  --teal-glow: rgba(62, 207, 189, 0.55);
  --gold: #d4a017;
  --gold-light: #f0c040;
  --green: #3ecf3e;
  --green-glow: rgba(62, 207, 62, 0.55);
  --gold-glow: rgba(212, 160, 23, 0.55);
  --dark: #06090f;
  --dark-mid: #0a1120;
  --dark-card: #0b1422;
  --dark-border: #1a2e48;
  --text-main: #c8dff0;
  --text-muted: #6a8aaa;
  --highlight: #ff5522;
  --bevel-l: #3a6a9a;
  --bevel-d: #040b16;
  --pixel: "Press Start 2P", monospace;
  --vt: "VT323", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

/* ════════════════════════════════
       BODY — deep space tiled stars
    ════════════════════════════════ */
body {
  background-color: var(--dark);
  background-image: url("background.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  color: var(--text-main);
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  min-height: 100vh;
}

/* ════════════════════════════════
       FLOATING STARS (JS-driven)
    ════════════════════════════════ */
#starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  animation: starFloat linear infinite;
}
@keyframes starFloat {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

/* ════════════════════════════════
       OUTER CHROME FRAME
    ════════════════════════════════ */
.chrome-frame {
  position: relative;
  z-index: 1;
  /* width: 96%; */
  max-width: 920px;
  margin: 14px auto;
  border: 4px solid;
  border-color: var(--bevel-l) var(--bevel-d) var(--bevel-d) var(--bevel-l);
  box-shadow:
    0 0 0 1px #020608,
    0 0 40px rgba(62, 207, 189, 0.18),
    0 0 80px rgba(62, 207, 189, 0.08),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
}
.chrome-inner {
  border: 2px solid;
  border-color: var(--bevel-d) var(--bevel-l) var(--bevel-l) var(--bevel-d);
  background: transparent;
}

/* ════════════════════════════════
       MARQUEE
    ════════════════════════════════ */
.marquee-bar {
  background: rgba(2, 8, 16, 0.92);
  border-bottom: 2px solid var(--teal-dark);
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--vt);
  font-size: 22px;
  color: var(--teal);
  letter-spacing: 0.06em;
}
.m-sep {
  color: var(--gold);
  margin: 0 16px;
}
@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════
       HERO HEADER
    ════════════════════════════════ */
.hero {
  background: linear-gradient(
    180deg,
    rgba(4, 13, 28, 0.88) 0%,
    rgba(6, 15, 32, 0.82) 60%,
    rgba(2, 8, 16, 0.9) 100%
  );
  border-bottom: 3px solid var(--teal-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* scanline overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.18) 3px,
    rgba(0, 0, 0, 0.18) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* top pixel art border strip */
.pixel-strip {
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal-dark) 0px,
    var(--teal-dark) 8px,
    var(--dark) 8px,
    var(--dark) 16px,
    var(--gold) 16px,
    var(--gold) 24px,
    var(--dark) 24px,
    var(--dark) 32px
  );
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 260px;
}

/* GIF placeholder — left */
.hero-gif-left {
  width: 160px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 12px;
  border-right: 2px solid var(--dark-border);
}

/* GIF placeholder — right */
.hero-gif-right {
  width: 160px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 12px;
  border-left: 2px solid var(--dark-border);
}

/* hero center */
.hero-center {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
}

.hero-eyebrow {
  font-family: var(--pixel);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-shadow: 0 0 10px var(--gold-glow);
}

.hero-title {
  font-family: var(--pixel);
  font-size: clamp(16px, 3.5vw, 30px);
  line-height: 1.4;
  color: var(--teal);
  text-shadow:
    3px 3px 0 #021828,
    0 0 18px var(--teal-glow),
    0 0 40px rgba(62, 207, 189, 0.2);
  margin-bottom: 10px;
}
.hero-title .yr {
  color: var(--gold-light);
  text-shadow:
    3px 3px 0 #2a1800,
    0 0 18px var(--gold-glow);
}

.hero-tagline {
  font-family: var(--vt);
  font-size: 28px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* animated neon underline */
.neon-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal),
    var(--gold),
    var(--teal),
    transparent
  );
  background-size: 200% 100%;
  animation: neonSlide 3s linear infinite;
  margin: 16px auto;
  width: 70%;
}
@keyframes neonSlide {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* ════════════════════════════════
       GIF PLACEHOLDER WIDGET
    ════════════════════════════════ */
.join-us-bar .gif-slot {
  width: 150px;
  height: 150px;
}
.gif-slot {
  width: 100%;
  background: rgba(2, 8, 16, 0.92);
  border: 2px dashed var(--teal-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
}
.gif-slot:hover {
  border-color: var(--teal);
}
.gif-slot.gold {
  border-color: var(--gold);
}
.gif-slot.gold:hover {
  border-color: var(--gold-light);
}
.gif-image {
  height: 100%;
  width: 100%;
}

/* animated placeholder spinner */
.gif-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--dark-border);
  border-top-color: var(--teal);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}
.gif-slot.gold .gif-spinner {
  border-top-color: var(--gold-light);
  border-right-color: var(--teal);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.gif-label {
  font-family: var(--pixel);
  font-size: 6px;
  color: var(--teal);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.gif-slot.gold .gif-label {
  color: var(--gold);
}
.gif-dims {
  font-family: var(--vt);
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ════════════════════════════════
       PIXEL ART DIVIDER
    ════════════════════════════════ */
.px-divider {
  height: 16px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  margin: 0;
}
.px-divider-inner {
  width: 100%;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    #0a1a2e 0px,
    #0a1a2e 4px,
    var(--teal-dark) 4px,
    var(--teal-dark) 8px,
    #0a1a2e 8px,
    #0a1a2e 12px,
    var(--gold) 12px,
    var(--gold) 14px,
    #0a1a2e 14px,
    #0a1a2e 20px,
    var(--teal-dark) 20px,
    var(--teal-dark) 22px,
    #0a1a2e 22px,
    #0a1a2e 28px
  );
  opacity: 0.6;
  animation: divScroll 6s linear infinite;
}
@keyframes divScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 280px 0;
  }
}

/* ════════════════════════════════
       SAVE THE DATE
    ════════════════════════════════ */

/* ════════════════════════════════
   COUNTDOWN
════════════════════════════════ */
.countdown-bar {
  background: rgba(2, 6, 12, 0.96);
  border-top: 1px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.countdown-lbl {
  font-family: var(--pixel);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.1em;
  opacity: 0.75;
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}
.cd-num {
  font-family: var(--vt);
  font-size: 38px;
  color: var(--gold-light);
  text-shadow: 0 0 10px var(--gold-glow);
  line-height: 1;
}
.cd-unit-lbl {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-top: 3px;
}
.cd-sep {
  font-family: var(--vt);
  font-size: 38px;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.std-band {
  background: linear-gradient(
    90deg,
    rgba(5, 15, 0, 0.9),
    rgba(10, 26, 0, 0.88),
    rgba(5, 15, 0, 0.9)
  );
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 20px;
  position: relative;
}
.std-gif {
  flex-shrink: 0;
}
.std-text {
  text-align: center;
}
.std-lbl {
  font-family: var(--pixel);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  opacity: 0.8;
}
.std-date {
  margin-top: 18px;
  font-family: var(--pixel);
  font-size: clamp(11px, 2.8vw, 19px);
  color: var(--gold-light);
  text-shadow:
    2px 2px 0 #3a1f00,
    0 0 20px var(--gold-glow);
  animation: datePulse 2.4s ease-in-out infinite;
  font-size: 36px;
}
@keyframes datePulse {
  0%,
  100% {
    text-shadow:
      2px 2px 0 #3a1f00,
      0 0 8px var(--gold-glow);
  }
  50% {
    text-shadow:
      2px 2px 0 #3a1f00,
      0 0 28px rgba(240, 192, 64, 0.85);
  }
}
.std-sub {
  font-family: var(--vt);
  font-size: 32px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ════════════════════════════════
       NAV
    ════════════════════════════════ */
.site-nav {
  background: rgba(3, 8, 16, 0.92);
  border-bottom: 2px solid var(--dark-border);
}
.site-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.site-nav li {
  border-right: 1px solid var(--dark-border);
}
.site-nav li:first-child {
  border-left: 1px solid var(--dark-border);
}
.site-nav a {
  display: block;
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--teal);
  text-decoration: none;
  padding: 11px 18px;
  letter-spacing: 0.08em;
  transition:
    background 0.15s,
    color 0.15s;
}
.site-nav a:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* ════════════════════════════════
       CONTENT WRAPPER
    ════════════════════════════════ */
.content {
  padding: 0 22px 48px;
  background: rgba(6, 9, 15, 0.82);
}

/* ════════════════════════════════
       SECTION HEADINGS
    ════════════════════════════════ */
.sec-head {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-head-txt {
  font-family: var(--pixel);
  font-size: 16px;
  white-space: nowrap;
  color: var(--teal);
  text-shadow: 0 0 8px var(--teal-glow);
}
.sec-head-txt.gold-txt {
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold-glow);
}
.sec-rule {
  flex: 1;
  height: 0;
  border: none;
  border-top: 2px solid var(--teal-dark);
  box-shadow: 0 1px 0 var(--bevel-d);
}
.sec-rule.gold-rule {
  border-top-color: var(--gold);
}

/* ════════════════════════════════
       FORMAT CARDS
    ════════════════════════════════ */
.formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 620px) {
  .formats-grid {
    grid-template-columns: 1fr;
  }
}

.format-card {
  background: var(--dark-card);
  border: 2px solid;
  border-color: var(--bevel-l) var(--bevel-d) var(--bevel-d) var(--bevel-l);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.format-card:hover {
  box-shadow: 0 0 18px rgba(62, 207, 189, 0.15);
}
.format-card:nth-child(2):hover {
  box-shadow: 0 0 18px rgba(212, 160, 23, 0.15);
}

.format-gif-banner {
  background: rgba(2, 8, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--dark-border);
  position: relative;
  overflow: hidden;
  padding: 10px;
}
/* animated diagonal scan */
.format-gif-banner::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(62, 207, 189, 0.04) 50%,
    transparent 60%
  );
  animation: scan 3s linear infinite;
}
.format-card:nth-child(2) .format-gif-banner::after {
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(212, 160, 23, 0.05) 50%,
    transparent 60%
  );
  animation-duration: 2.6s;
}
@keyframes scan {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.format-body {
  padding: 20px 22px;
  flex: 1;
}
.format-num {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.format-name {
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
}
.format-card:nth-child(2) .format-name {
  color: var(--gold-light);
}
.format-card:nth-child(3) .format-name {
  color: var(--green);
}
.format-tag {
  font-family: var(--vt);
  font-size: 19px;
  color: var(--text-main);
  margin-bottom: 3px;
}
.format-tag em {
  color: var(--text-muted);
  font-style: normal;
}
.f-hr {
  border: none;
  border-top: 1px solid var(--dark-border);
  margin: 10px 0;
}
.format-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}
.format-desc strong {
  color: var(--highlight);
  font-weight: 600;
}

/* ════════════════════════════════
       AWARDS
    ════════════════════════════════ */
.awards-layout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.awards-gif-col {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.awards-inset {
  flex: 1;
  background: #040b16;
  border: 2px solid;
  border-color: var(--bevel-d) var(--bevel-l) var(--bevel-l) var(--bevel-d);
  padding: 22px 24px;
}
.awards-inset p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}
.awards-inset strong {
  color: var(--gold-light);
  font-weight: 600;
}
@media (max-width: 580px) {
  .awards-layout {
    flex-direction: column;
  }
  .awards-gif-col {
    flex-direction: row;
    width: 100%;
  }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  flex-direction: column;
}
.badge {
  flex: 1;
  min-width: 160px;
  background: #040b16;
  border: 2px solid;
  border-color: var(--bevel-l) var(--bevel-d) var(--bevel-d) var(--bevel-l);
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  cursor: default;
  gap: 24px;
}
.badge-info {
  width: 100%;
  text-align: left;
}
.badge:hover {
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.25);
  border-color: var(--gold) var(--dark-border) var(--dark-border) var(--gold);
}
.badge-icon {
  font-size: 22px;
  width: 180px;
  margin-bottom: 6px;
  height: 136px;
  display: flex;
  align-items: end;
  padding-bottom: 12px;
  justify-content: center;
}
.badge-icon img {
  height: 120px;
}
.badge-name {
  font-family: var(--pixel);
  font-size: 14px;
  color: var(--gold-light);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.badge-desc {
  margin-top: 10px;
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

/* ════════════════════════════════
       INFO GRID
    ════════════════════════════════ */
.info-grid {
  grid-template-columns: repeat(6, 1fr);
}
.info-cell {
  grid-column: span 2;
} /* 1×   */
.info-cell.span-15 {
  grid-column: span 3;
} /* 1.5× */
.info-cell.span-2 {
  grid-column: span 4;
} /* 2×   */
.info-cell.span-all {
  grid-column: span 6;
} /* 2×   */

.info-grid {
  display: grid;
  gap: 1px;
  background: var(--dark-border);
  border: 2px solid var(--dark-border);
}
@media (max-width: 580px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.info-cell {
  background: var(--dark-card);
  padding: 18px 16px;
}
.info-lbl {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.info-val {
  font-family: var(--vt);
  font-size: 24px;
  color: var(--text-main);
}
.info-sub {
  font-size: 16px;
  color: var(--text-muted);
}
.info-cell ol {
  padding-left: 22px;
  margin-top: 10px;
}
.info-cell li {
  margin-bottom: 8px;
  padding-left: 6px;
}

/* ════════════════════════════════
   ARTISTS SECTION
════════════════════════════════ */
#artists {
  background: linear-gradient(135deg, rgba(28, 8, 8, 0.88), rgba(20, 6, 14, 0.85));
  border: 1px solid #c04060;
  border-radius: 2px;
  padding: 28px 32px;
  margin: 0 0 8px;
  box-shadow:
    0 0 30px rgba(192, 64, 96, 0.12),
    inset 0 0 40px rgba(0, 0, 0, 0.3);
}
.coral-txt { color: #ff7090; }
.coral-rule { border-top-color: #c04060 !important; }
.artists-body {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-main);
  text-align: center;
}
.artists-body p { margin-bottom: 14px; line-height: 1.75; }
.artists-lead {
  font-family: var(--vt);
  font-size: 24px;
  color: #ff7090;
  margin-bottom: 18px !important;
  text-shadow: 0 0 12px rgba(255, 112, 144, 0.45);
}
.artists-contact {
  display: inline-block;
  margin: 4px 0 28px;
  font-family: var(--pixel);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #ff7090;
  border: 1px solid #c04060;
  padding: 8px 18px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.artists-contact:hover {
  background: #c04060;
  color: #fff;
}
.artists-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.artist-card {
  width: 180px;
  background: rgba(4, 8, 16, 0.8);
  border: 1px solid #c04060;
  border-radius: 2px;
  padding: 16px 12px 12px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(192, 64, 96, 0.3);
}
.artist-img-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #c04060;
}
.artist-img-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(192, 64, 96, 0.15),
    rgba(192, 64, 96, 0.15) 4px,
    rgba(4, 8, 16, 0.6) 4px,
    rgba(4, 8, 16, 0.6) 8px
  );
}
.artist-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-name {
  font-family: var(--pixel);
  font-size: 8px;
  color: #ff7090;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 6px;
}
.artist-credits {
  font-family: var(--vt);
  font-size: 16px;
  color: var(--text-muted);
}

/* ════════════════════════════════
   STOCKHOLM SECTION
════════════════════════════════ */
#stockholm {
  background: linear-gradient(135deg, rgba(18, 6, 30, 0.88), rgba(6, 12, 28, 0.85));
  border: 1px solid #7b4fbe;
  border-radius: 2px;
  padding: 28px 32px;
  margin: 0 0 8px;
  box-shadow:
    0 0 30px rgba(123, 79, 190, 0.12),
    inset 0 0 40px rgba(0, 0, 0, 0.3);
}
.purple-txt { color: #b07eff; }
.purple-rule { border-top-color: #7b4fbe !important; }
.stockholm-body {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-main);
}
.stockholm-body p { margin-bottom: 14px; line-height: 1.75; }
.stockholm-body strong { color: #c8a8ff; }
.stockholm-lead {
  font-family: var(--vt);
  font-size: 24px;
  color: #b07eff;
  margin-bottom: 18px !important;
  text-shadow: 0 0 12px rgba(176, 126, 255, 0.5);
}
.stockholm-list {
  padding-left: 24px;
  margin: 0;
}
.stockholm-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}
.stockholm-list a {
  color: #c8a8ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 126, 255, 0.35);
  transition: color 0.15s, border-color 0.15s;
}
.stockholm-list a:hover {
  color: #e0ccff;
  border-bottom-color: #b07eff;
}

/* ════════════════════════════════
       CTA
    ════════════════════════════════ */
.cta-gif-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px 20px 0;
}
.cta-body {
  padding: 18px 24px;
  text-align: center;
}
.cta-title {
  font-family: var(--pixel);
  font-size: clamp(9px, 2vw, 14px);
  color: #fff;
  line-height: 1.6;
}
.cta-sub {
  margin-top: 10px;
  font-family: var(--vt);
  font-size: 22px;
  color: var(--text-muted);
}
.btn-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn {
  font-family: var(--pixel);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 11px 22px;
  border: 2px solid;
  border-color: var(--bevel-l) var(--bevel-d) var(--bevel-d) var(--bevel-l);
  display: inline-block;
  cursor: pointer;
  line-height: 1.6;
  transition:
    filter 0.15s,
    transform 0.1s;
}
.btn:active {
  border-color: var(--bevel-d) var(--bevel-l) var(--bevel-l) var(--bevel-d);
  transform: translateY(1px);
}
.btn-primary {
  background: var(--teal-dark);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.35);
}
.btn-secondary {
  background: #1a1200;
  color: var(--gold-light);
}
.btn-secondary:hover {
  filter: brightness(1.4);
}

/* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
.site-footer {
  background: rgba(2, 8, 16, 0.92);
  border-top: 3px solid var(--dark-border);
  padding: 18px 22px;
  text-align: center;
}
.counter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.counter-lbl {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--text-muted);
}
.counter-digits {
  background: #000;
  border: 2px solid var(--teal-dark);
  color: var(--teal);
  font-family: var(--vt);
  font-size: 22px;
  padding: 2px 10px;
  letter-spacing: 0.2em;
  text-shadow: 0 0 8px var(--teal-glow);
}
.footer-gif-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-links a {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--teal);
  text-decoration: underline;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-hosts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-hosts-lbl {
  font-family: var(--pixel);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  opacity: 0.6;
  text-transform: uppercase;
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer-logo {
  height: 132px;
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(62, 207, 189, 0.2));
  transition: opacity 0.2s, filter 0.2s;
}
.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(62, 207, 189, 0.45));
}
.footer-copy {
  font-family: var(--vt);
  font-size: 20px;
  color: var(--text-muted);
}
.best-viewed {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.4;
  padding: 8px;
  letter-spacing: 0.08em;
}

/* ════════════════════════════════
   CHARITY SECTION
════════════════════════════════ */
#charity {
  background: linear-gradient(135deg, rgb(10 4 20 / 68%), rgb(20 8 8 / 0%));
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 28px 32px;
  margin: 0 0 8px;
  box-shadow:
    0 0 30px rgba(212, 160, 23, 0.1),
    inset 0 0 40px rgba(0, 0, 0, 0.3);
}
.charity-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-main);
}
.charity-body p {
  margin-bottom: 14px;
  line-height: 1.75;
}
.charity-body strong {
  color: var(--gold-light);
}
.charity-lead {
  font-family: var(--vt);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px !important;
  text-shadow: 0 0 12px var(--gold-glow);
}
.charity-callout {
  margin-top: 22px;
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  line-height: 1.8;
  opacity: 0.85;
}

/* ════════════════════════════════
   RAFFLE SECTION
════════════════════════════════ */
#raffle {
  background: linear-gradient(
    135deg,
    rgba(4, 20, 18, 0.92),
    rgba(4, 14, 22, 0.88)
  );
  border: 1px solid var(--teal-dark);
  border-radius: 2px;
  padding: 28px 32px;
  margin: 0 0 8px;
  box-shadow:
    0 0 30px rgba(62, 207, 189, 0.1),
    inset 0 0 40px rgba(0, 0, 0, 0.3);
}
.raffle-body {
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-main);
}
.raffle-body p {
  margin-bottom: 14px;
  line-height: 1.75;
}
.raffle-body strong {
  color: var(--gold-light);
}
.raffle-lead {
  font-family: var(--vt);
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 18px !important;
  text-shadow: 0 0 12px var(--teal-glow);
}
.raffle-donate {
  margin-top: 24px;
  border-top: 1px solid rgba(62, 207, 189, 0.25);
  padding-top: 20px;
}
.raffle-donate-lbl {
  font-family: var(--pixel);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.raffle-contact {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid var(--teal-dark);
  padding: 8px 16px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.raffle-contact:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

/* ════════════════════════════════
   VISIBILITY UTILITIES
════════════════════════════════ */
@media (max-width: 767px) {
  .join-us-bar .gif-slot {
    width: 120px;
    height: 120px;
  }

  .d-sm-none {
    display: none !important;
  }

  .sec-head-txt {
    white-space: normal;
  }

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

  .badge {
    flex: unset;
    width: 100%;
    flex-direction: column;
  }

  .badge-info {
    text-align: center;
  }

  .info-cell,
  .info-cell.span-15,
  .info-cell.span-2,
  .info-cell.span-4,
  .info-cell.span-all {
    grid-column: span 1;
  }

  .std-band {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .std-text {
    order: 1;
    width: 100%;
  }

  .std-band .std-gif:first-child,
  .std-band .std-gif:last-child {
    order: 2;
    flex: 1;
    justify-content: center;
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    min-height: unset;
  }

  .hero-gif-left,
  .hero-gif-right {
    flex-direction: row;
    width: 100%;
    align-self: auto;
    border-right: none;
    border-left: none;
    border-top: 2px solid var(--dark-border);
    padding: 12px;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .d-lg-none {
    display: none !important;
  }
}

.card-wrapper .top,
.card-wrapper .bottom {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #cd5b56;
  border-radius: 10px;
  border: 1px solid purple;
}
.card-wrapper .top {
  top: 10px;
}
.card-wrapper .bottom {
  bottom: 10px;
}
.card-wrapper .top.left,
.card-wrapper .bottom.left {
  left: 10px;
}
.card-wrapper .top.right,
.card-wrapper .bottom.right {
  right: 10px;
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 233px;
  height: 310px;
  border-radius: 12px;
  border: 10px solid #000000;
  background-color: #51341f;
  padding-top: 36px;
}

.card-wrapper .oval {
  position: absolute;
  top: 15px;
  height: 260px;
  width: 170px;
  border: 2px solid #7d9cc8;
  background-color: #734e37;
  border-radius: 50%;
}

.card-wrapper pre {
  z-index: 10;
}

.card-wrapper .card-title {
  z-index: 9;
  font-size: 22px;
  display: flex;
  line-height: 22px;
  letter-spacing: 6px;
  position: absolute;
  top: 50px;
  -webkit-text-stroke: 1px red;
}
.card-wrapper .card-title span:first-child {
  font-size: 40px;
  line-height: 40px;
}

.card-subtitle {
  position: absolute;
  z-index: 9;
  font-size: 9px;
  left: 73px;
  top: 74px;
  letter-spacing: 0px;
  -webkit-text-stroke: 0.5px red;
}

.card-footer {
  position: absolute;
  bottom: 40px;
  z-index: 9;
  padding: 1px 7px;
  background-color: #54ddff;
  width: auto;
  font-size: 11px;
  letter-spacing: normal;
  color: black;
  text-align: center;
}

.join-us-bar {
  background: rgba(2, 6, 12, 0.96);
  border-top: 1px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}