/* ============================================
   MYTHIC ANTHEMS — MAIN STYLESHEET
   Dark, cinematic Norse aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --primary-dark: #05080f;
  --secondary-dark: #0a0f1a;
  --card-dark: #0f151f;
  --accent-gold: #d4af37;
  --accent-flame: #ff7a18;
  --accent-red: #8b0000;
  --text-light: #ececf1;
  --text-muted: #9a9ab0;
  --border-dark: #1e2635;

  --font-display: 'Outfit', sans-serif;      /* store versal-overskrifter */
  --font-accent: 'DM Serif Display', serif;  /* kursiv aksentlinje */
  --font-sans: 'Space Grotesk', sans-serif;  /* brodtekst */
  --transition: all 0.3s ease;
}


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

body {
  font-family: var(--font-sans);
  color: var(--text-light);
  background: var(--primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }

/* ---- PILL ---- */
.pill {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.06);
  margin-bottom: 2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: #e8c14f;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
}

.btn-ghost {
  border-color: var(--border-dark);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 1.4rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 1000;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease,
              padding 0.35s ease, backdrop-filter 0.35s ease;
}

/* Klassen settes av JS naar man har scrollet forbi toppen */
body nav.scrolled {
  background: rgba(5, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1rem 2.5rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin-left: auto;
}

.nav-menu a {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding-bottom: 6px;
}

/* Understrek som glir inn fra midten pa hover */
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

.nav-menu a:hover::after { transform: scaleX(1); }

.nav-social { display: flex; gap: 0.7rem; }

/* Plattform-piller i navigasjonen */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid;
  white-space: nowrap;
}

.pill-yt {
  color: #ff4444;
  border-color: rgba(255, 68, 68, 0.45);
  background: rgba(255, 40, 40, 0.12);
}

.pill-yt:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.pill-sp {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.45);
  background: rgba(30, 215, 96, 0.1);
}

.pill-sp:hover {
  background: #1ed760;
  color: #08160c;
  border-color: #1ed760;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.45);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--accent-gold); border-radius: 2px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: left;
  padding: 9rem 3rem 6rem;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(255, 122, 24, 0.18), transparent 60%),
    linear-gradient(165deg, #05080f, #120a14 55%, #1a0d10);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 8, 15, 0.92) 22%, rgba(5, 8, 15, 0.55) 55%, rgba(5, 8, 15, 0.4)),
    linear-gradient(to bottom, rgba(5, 8, 15, 0.55), rgba(5, 8, 15, 0.35) 45%, rgba(5, 8, 15, 0.9));
  z-index: 2;
}

/* Flamme-gnister som stiger */
.hero-embers { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

.ember {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: var(--accent-flame);
  box-shadow: 0 0 8px rgba(255, 122, 24, 0.9);
  opacity: 0;
  animation-name: rise;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { transform: translateY(-90vh) translateX(28px); opacity: 0; }
}

.hero-content { position: relative; z-index: 4; max-width: 1200px; width: 100%; margin: 0 auto; }

.hero-heading {
  font-size: clamp(2.6rem, 9vw, 7.5rem);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 2.2rem;
}

.hero-heading span { display: block; }
.hero-heading .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.45);
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 2.8rem;
  line-height: 2;
}

.hero-sub .muted {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

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

/* ---- SECTIONS ---- */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 780px; }

.section-listen {
  background:
    radial-gradient(circle at 12% 25%, rgba(30, 215, 96, 0.055) 0%, transparent 60%),
    linear-gradient(180deg, #05080f 0%, #060c14 100%);
  position: relative;
  overflow: hidden;
}

.section-watch {
  background:
    radial-gradient(circle at 88% 75%, rgba(255, 0, 0, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #060c14 0%, #0d0812 100%);
  position: relative;
  overflow: hidden;
}

.section-releases {
  background: linear-gradient(180deg, #0d0812 0%, #05080f 100%);
}
.section-about {
  background:
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 65%),
    linear-gradient(180deg, #05080f 0%, #080c18 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.section-head { margin-bottom: 3.5rem; }

.section-heading {
  font-size: clamp(2.1rem, 5.5vw, 4.4rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin-bottom: 1.4rem;
}

.section-heading span { display: block; }

.section-heading .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-gold);
}

.section-body {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-about .section-body, .section-about .section-head { margin-left: auto; margin-right: auto; }

.section-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-link:hover { text-shadow: 0 0 14px rgba(212, 175, 55, 0.6); }

/* reveal-animasjon */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- LISTEN ---- */
.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.listen-player { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }

/* Spotify-pille over spilleren */
.listen-pill-cta {
  margin-bottom: 1.4rem;
  padding: 0.6rem 1.3rem;
  font-size: 0.76rem;
}

.listen-text { padding-top: 1rem; }
.listen-text .section-body { margin-bottom: 3rem; }

.spotify-embed {
  border: 1px solid rgba(30, 215, 96, 0.16);
  border-radius: 18px;
  padding: 4px;
  background: rgba(30, 215, 96, 0.04);
  box-shadow:
    0 10px 40px rgba(30, 215, 96, 0.05),
    0 0 0 1px rgba(30, 215, 96, 0.08);
  width: 100%;
}

.spotify-embed iframe {
  display: block;
  border: none;
  border-radius: 14px;
  width: 100%;
}

.most-played-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 0.5rem;
}

.track-list { list-style: none; }

.track-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.95rem 0.3rem;
  border-bottom: 1px solid rgba(30, 38, 53, 0.8);
}

.track-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-muted);
  min-width: 22px;
}

.track-text { display: flex; flex-direction: column; }

.track-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.8px;
}

.track-subtitle { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

/* ---- WATCH ---- */
/* Videoen er BAKGRUNN for hele rammen; panelet ligger oppa til hoyre */
.watch-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  background: #05080f;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2.2rem;
}

.watch-visual { position: absolute; inset: 0; z-index: 0; }

.watch-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* Morkner hoyre side sa panelet er lesbart */
.watch-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 8, 15, 0.15) 28%, rgba(5, 8, 15, 0.78) 58%, rgba(5, 8, 15, 0.92)),
    linear-gradient(to bottom, rgba(5, 8, 15, 0.3), rgba(5, 8, 15, 0.5));
  pointer-events: none;
}

/* Panel med spiller + liste, svevende oppa videoen */
.watch-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 1.6rem;
  background: rgba(10, 15, 26, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 38, 53, 0.9);
  border-radius: 12px;
}

.watch-player {
  aspect-ratio: 16/9;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.watch-player iframe { width: 100%; height: 100%; border: none; display: block; }

/* facade = thumbnail + play, byttes til iframe ved klikk */
.facade {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  display: block;
}

.facade img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.facade:hover img { filter: brightness(0.8); transform: scale(1.03); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(5, 8, 15, 0.62);
  border: 2px solid var(--accent-gold);
  transition: var(--transition);
  pointer-events: none;
}

.play-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 23px;
  border-color: transparent transparent transparent var(--accent-gold);
}

.facade:hover .play-btn {
  background: rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.watch-now {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.2rem;
}

.now-label {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-flame);
}

.now-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.now-subtitle { font-size: 0.9rem; color: var(--text-muted); font-style: italic; }

.watch-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.3rem;
}

.watch-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
  background: var(--card-dark);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.watch-row:hover { background: #141b27; }

.watch-row.active {
  background: linear-gradient(100deg, rgba(255, 38, 38, 0.14), rgba(15, 21, 31, 0.9));
  box-shadow: inset 3px 0 0 #ff2626;
}

/* niva-streker som markerer aktiv rad */
.watch-bars { display: flex; align-items: flex-end; gap: 2px; height: 14px; margin-top: 4px; }

.watch-bars i {
  width: 3px;
  background: var(--text-muted);
  border-radius: 1px;
  height: 5px;
}

.watch-bars i:nth-child(2) { height: 10px; }
.watch-bars i:nth-child(3) { height: 7px; }

.watch-row.active .watch-bars i {
  background: #ff2626;
  animation: bars 1s ease-in-out infinite alternate;
}

.watch-row.active .watch-bars i:nth-child(2) { animation-delay: 0.2s; }
.watch-row.active .watch-bars i:nth-child(3) { animation-delay: 0.4s; }

@keyframes bars { from { height: 4px; } to { height: 14px; } }

.watch-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-muted);
  min-width: 34px;
}

.watch-row.active .watch-num { color: #ff2626; }

.watch-text { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; min-width: 0; }

.watch-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-row.active .watch-title { color: var(--accent-gold); }

.watch-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-tag {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 0.18rem 0.5rem;
  margin-top: 0.2rem;
}

.watch-row.active .watch-tag {
  color: #ff8080;
  border-color: rgba(255, 38, 38, 0.4);
  background: rgba(255, 38, 38, 0.12);
}

/* Brede kort under spilleren */
.watch-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  overflow: hidden;
}

.watch-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 1.7rem;
  background: var(--card-dark);
  color: var(--text-light);
}

.watch-card:hover { background: #141b27; color: var(--text-light); }

.watch-card-sub-cta {
  background: linear-gradient(100deg, rgba(255, 38, 38, 0.1), var(--card-dark));
  box-shadow: inset 3px 0 0 #ff2626;
}

.watch-card-sub-cta:hover {
  background: linear-gradient(100deg, rgba(255, 38, 38, 0.18), #141b27);
}

.watch-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
}

.watch-card-sub-cta .watch-card-icon { background: rgba(255, 38, 38, 0.16); color: #ff5555; }
.watch-card:not(.watch-card-sub-cta) .watch-card-icon { background: rgba(255, 38, 38, 0.16); color: #ff2626; }

.watch-card-text { display: flex; flex-direction: column; flex: 1; }

.watch-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.watch-card-sub { font-size: 0.84rem; color: var(--text-muted); }

.watch-card-arrow { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; }
.watch-card:hover .watch-card-arrow { color: var(--accent-gold); }

/* ---- RELEASES ---- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-dark);
  overflow: hidden;
  color: var(--text-light);
  transition: background 0.3s ease;
}

.release-card:hover { background: #141b27; color: var(--text-light); }

/* Fast hoyde pa bildet, som referansen */
.release-visual {
  position: relative;
  display: block;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.release-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.release-card:hover .release-art { transform: scale(1.05); }

.release-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.release-video + .release-art { opacity: 0; }

/* Stor gjennomsiktig rune midt i bildet */
.release-rune {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 4rem;
  opacity: 0.1;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.release-card:hover .release-rune {
  opacity: 0.22;
  transform: translate(-50%, -50%) rotate(0deg) scale(1.15);
}

.release-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.release-kind {
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-flame);
}

.release-title {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.release-subtitle {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Pil nede til hoyre, kommer pa hover */
.release-arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--text-light);
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.release-arrow svg { width: 12px; height: 12px; }

.release-card:hover .release-arrow { opacity: 1; transform: translate(0, 0); }

/* Bred Spotify-knapp under Most Played (glir mot hoyre pa hover) */
.btn-spotify-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  margin-top: 2.2rem;
  padding: 1.15rem 2rem;
  border: 1px solid rgba(30, 215, 96, 0.35);
  border-radius: 100px;
  background: rgba(30, 215, 96, 0.05);
  color: #1ed760;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.btn-spotify-wide svg { flex-shrink: 0; transition: transform 0.3s ease; }

.btn-spotify-wide:hover {
  background: rgba(30, 215, 96, 0.14);
  border-color: #1ed760;
  color: #1ed760;
  box-shadow: 0 0 30px rgba(30, 215, 96, 0.25);
  transform: translateX(6px);
}

.btn-spotify-wide:hover svg { transform: scale(1.12); }

/* Diskret lenke under spilleren */
.embed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.embed-link:hover { color: #1ed760; transform: translateX(4px); }

/* Sentrert knapp under en seksjon */
.section-cta { display: flex; justify-content: center; }
.section-cta .platform-btn { width: auto; max-width: none; padding: 1rem 2.4rem; }

/* ---- THE CLAN ---- */
.section-clan {
  position: relative;
  padding: 7rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 122, 24, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 80%),
    linear-gradient(180deg, #080c18 0%, #05080f 100%);
  position: relative;
  overflow: hidden;
}

/* Videoen er BAKGRUNN for hele rammen; kortet ligger oppa til hoyre */
.clan-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  background: #05080f;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2.2rem;
}

/* Video dekker hele rammen */
.clan-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.clan-visual video,
.clan-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Morkner hoyre side sa kortet er lesbart oppa videoen */
.clan-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 8, 15, 0.1) 30%, rgba(5, 8, 15, 0.75) 60%, rgba(5, 8, 15, 0.9)),
    linear-gradient(to bottom, rgba(5, 8, 15, 0.35), rgba(5, 8, 15, 0.55));
  pointer-events: none;
}

/* Halvgjennomsiktig panel oppa videoen */
.clan-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 3rem 2.6rem;
  text-align: center;
  background: rgba(10, 15, 26, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 38, 53, 0.9);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clan-heading {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 200;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.clan-heading span { display: block; }
.clan-heading .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-gold);
  text-shadow: 0 0 34px rgba(212, 175, 55, 0.4);
}

.clan-body {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.clan-cta {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}

/* Plattformknapper med ekte merkefarger */
.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid;
  width: 100%;
  max-width: 340px;
}

.btn-yt {
  background: #ff2626;
  color: #fff;
  border-color: #ff2626;
  box-shadow: 0 0 26px rgba(255, 38, 38, 0.4);
}

.btn-yt:hover {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 0 38px rgba(255, 0, 0, 0.65);
  transform: translateY(-2px);
}

.btn-sp {
  background: transparent;
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.6);
}

.btn-sp:hover {
  background: rgba(30, 215, 96, 0.14);
  color: #1ed760;
  box-shadow: 0 0 26px rgba(30, 215, 96, 0.35);
  transform: translateY(-2px);
}

.clan-socials {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.clan-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
}

.clan-social:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.clan-social-icon { display: flex; color: var(--text-light); }

.clan-social-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.clan-social-handle { font-size: 0.76rem; color: var(--text-muted); }

.clan-contact { margin-top: 1.6rem; font-size: 0.84rem; color: var(--text-muted); }

/* ---- FOOTER ---- */
footer {
  padding: 5rem 3rem 2rem;
  border-top: 1px solid var(--border-dark);
  background: #03050a;
  position: relative;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-logo-img {
  width: 96px;
  height: auto;
  border-radius: 14px;
  margin-bottom: 1.3rem;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.18));
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 340px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.95rem;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

.footer-nav a:hover { color: var(--accent-gold); }

/* Runde sosiale ikoner */
.footer-socials { display: flex; gap: 0.7rem; }

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
}

.footer-icon:hover {
  transform: translateY(-3px);
  color: var(--text-light);
  border-color: var(--accent-gold);
}

.icon-yt {
  background: rgba(255, 38, 38, 0.16);
  border-color: rgba(255, 38, 38, 0.35);
  color: #ff4444;
}

.icon-yt:hover {
  background: #ff2626;
  color: #fff;
  border-color: #ff2626;
  box-shadow: 0 0 20px rgba(255, 38, 38, 0.5);
}

.icon-sp:hover {
  background: #1ed760;
  color: #08160c;
  border-color: #1ed760;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-dark);
}

.footer-legal { font-size: 0.8rem; color: var(--text-muted); }

.footer-tag {
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .listen-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0.9rem 1.2rem; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 8, 15, 0.98);
    border-bottom: 1px solid var(--border-dark);
    padding: 1rem 0;
  }

  .nav-menu.active { display: flex; }
  .nav-menu li { padding: 0.7rem 1.5rem; }
  .nav-menu { margin-left: 0; }
  .hamburger { display: flex; margin-left: auto; }

  /* Plattformpillene tar for mye plass i topplinja — flyttes ned i menypanelet */
  .nav-social {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 1.5rem 1.3rem;
    background: rgba(5, 8, 15, 0.98);
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-social.active { display: flex; }

  .section { padding: 4.5rem 1.2rem; }
  .section-head { margin-bottom: 2.5rem; }
  .hero { padding: 7rem 1.2rem 4rem; }
  .hero-cta .btn, .clan-cta .btn { width: 100%; max-width: 300px; }
  .watch-tag { display: none; }
      footer { padding: 3.5rem 1.2rem 1.5rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 1.2rem; }

  /* Video over, kort under — ellers dekker kortet hele videoen */
  .clan-frame {
    min-height: 0;
    padding: 0;
    display: block;
  }
  .clan-visual {
    position: relative;
    height: 300px;
  }
  .clan-visual video, .clan-visual img { object-position: center 20%; }
  .clan-visual::after {
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 21, 31, 0.95));
  }
  .clan-card {
    width: 100%;
    padding: 2rem 1.3rem 2.4rem;
    border-radius: 0;
    background: var(--card-dark);
    backdrop-filter: none;
    border: none;
    margin-top: -1px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .watch-cards { grid-template-columns: 1fr; }
  .watch-frame {
    min-height: 0;
    padding: 0;
    display: block;
  }
  .watch-visual {
    position: relative;
    height: 240px;
  }
  .watch-visual video { object-position: center 40%; }
  .watch-visual::after {
    background: linear-gradient(to bottom, transparent 35%, rgba(15, 21, 31, 0.95));
  }
  .watch-panel {
    width: 100%;
    padding: 1.2rem;
    border-radius: 0;
    background: var(--card-dark);
    backdrop-filter: none;
    border: none;
    margin-top: -1px;
  }
  .watch-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .releases-grid { grid-template-columns: 1fr; }
  .release-visual { height: 190px; }
  .footer-logo-img { width: 78px; }
}
