/* =========================================================
   RESET & BASE
   ========================================================= */

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

:root {
  --brand-orange: #ff6a00;
  --bg-main: #0b0b0b;
  --bg-alt: #0e0e0e;
  --text-main: #e5e5e5;
  --text-soft: #cfcfcf;
  --text-muted: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(255, 255, 255, 0.08);
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
}

main {
  padding-top: 110px;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  transition: height 0.3s ease, background 0.3s ease;
  z-index: 9999;
}

.site-header.scrolled {
  height: 75px;
  background: rgba(0, 0, 0, 0.9);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================================================
   LOGO
   ========================================================= */

.logo img {
  height: 48px;
  display: block;
  transition: height 0.3s ease;
}

.site-header.scrolled .logo img {
  height: 30px;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--brand-orange);
}

/* =========================================================
   SOCIAL ICONS HEADER
   ========================================================= */

.nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 30px;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-social img {
  height: 18px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-social a:hover img {
  filter: invert(53%) sepia(79%) saturate(3200%) hue-rotate(-2deg)
    brightness(102%) contrast(103%);
  transform: scale(1.05);
}

/* =========================================================
   BURGER MENU
   ========================================================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */

.hero-slider {
  position: relative;
  height: 75vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
  will-change: transform;
}

.hero-slider .slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    rgba(0, 0, 0, 0.34) 10%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.hero-inner {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 92vw);
  padding: 0 24px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-inner h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero-inner p {
  margin-top: 18px;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  line-height: 1.4;
}

/* =========================================================
   STREAMING ICONS
   ========================================================= */

.stream-platforms {
  position: absolute;
  bottom: calc(32px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  text-align: center;
  z-index: 2;
}

.stream-platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stream-platforms img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.stream-platforms a:hover img {
  filter: invert(47%) sepia(92%) saturate(2022%) hue-rotate(3deg)
    brightness(103%) contrast(102%);
  transform: scale(1.08);
}

/* =========================================================
   ABOUT SECTION (HOME)
   ========================================================= */

.about-section {
  background: var(--bg-main);
  padding: 40px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-weight: 500;
  letter-spacing: 0.4px;
}

.about-text p:first-child {
  margin-bottom: 40px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand-orange);
}

.about-text p:not(:first-child) {
  margin-bottom: 18px;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.6;
  opacity: 0.9;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   ABOUT DIVIDER / PARALLAX
   ========================================================= */

.about-divider {
  position: relative;
  margin-top: 120px;
  height: 400px;
  overflow: hidden;
}

.parallax-inner {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.parallax-inner img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translateZ(0);
}

/* =========================================================
   COMMON SECTION HEAD
   ========================================================= */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
}

.section-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.section-link:hover {
  color: var(--brand-orange);
}

/* =========================================================
   HOME UPDATES + UPDATES OVERVIEW
   ========================================================= */

.updates-page,
.home-updates {
  padding: 80px 0;
}

.updates-header {
  margin-bottom: 40px;
  text-align: center;
}

.updates-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.updates-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.7;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.updates-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.updates-card {
  background: #111;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.updates-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.updates-card-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.updates-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.updates-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.updates-card:hover .updates-card-image img {
  transform: scale(1.04);
}

.updates-card-content {
  padding: 20px;
}

.updates-card-date {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  margin-bottom: 10px;
}

.updates-card-content h2,
.updates-card-content h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.updates-card-content p {
  margin: 0;
  color: #c7c7c7;
  line-height: 1.6;
}

.updates-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  border: 1px solid rgba(255,255,255,0.15);
}

/* =========================================================
   UPDATES DETAIL
   ========================================================= */

.updates-detail {
  background: var(--bg-main);
}

.updates-detail-hero {
  position: relative;
  height: 48vh;
  min-height: 320px;
  overflow: hidden;
  background: #000;
}

.updates-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.updates-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
}

.updates-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--brand-orange);
}

.updates-detail-date {
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.updates-detail h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.updates-detail-teaser {
  font-size: 1.2rem;
  color: #d8d8d8;
  line-height: 1.7;
  margin-bottom: 28px;
}

.updates-detail-body {
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.updates-detail-body p {
  margin-bottom: 1.2em;
}

.updates-detail-category {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.updates-detail-video {
  margin: 0 0 36px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.updates-detail-actions {
  margin-top: 36px;
}

.updates-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.updates-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* =========================================================
   LIVE SECTION
   ========================================================= */

.home-live {
  padding: 80px 0;
}

.live-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.live-headline {
  margin-bottom: 60px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand-orange);
  text-align: center;
}

.live-list {
  margin-top: 80px;
  border-top: 1px solid #333;
}

.live-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  min-height: 130px;
  border-bottom: 1px solid #333;
  transition: background 0.3s ease;
}

.live-row:hover {
  background: linear-gradient(
    to right,
    rgba(255, 106, 0, 0.08),
    rgba(0, 0, 0, 0.4)
  );
}

.live-date-box {
  background: #1a1a1a;
  border: 3px solid var(--brand-orange);
  text-align: center;
  padding: 20px 10px;
}

.live-day {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-orange);
}

.live-month {
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.live-time {
  margin-top: 8px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.6;
}

.live-info {
  padding: 0 40px;
}

.live-info h3 {
  margin: 0;
  font-size: 1.8rem;
}

.live-info p {
  margin: 8px 0 0;
  opacity: 0.7;
}

.live-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}

.live-button {
  display: inline-block;
  max-width: 140px;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
  letter-spacing: 1px;
  border: 1px solid #555;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.live-button:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #000;
}

.live-button.disabled,
.live-soon {
  opacity: 0.5;
  pointer-events: none;
}

.live-booking {
  margin-top: 100px;
  text-align: center;
}

.live-booking p {
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.booking-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--brand-orange);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.booking-button:hover {
  background: #ff8c33;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: grayscale(12%) contrast(1.04) brightness(0.72);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.38) 10%,
    rgba(0, 0, 0, 0.14) 55%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 20px 80px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: 700;
}

.about-hero h1 {
  margin: 0 0 20px;
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
}

.about-hero-text {
  max-width: 760px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.about-main {
  padding: 90px 20px;
  background: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.95fr);
  gap: 60px;
  align-items: start;
}

.about-content h2,
.about-members h2,
.about-cta h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.about-intro {
  margin-bottom: 28px;
  color: rgba(229, 229, 229, 0.9);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-intro p {
  margin: 0 0 18px;
}

.about-side {
  padding: 28px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.about-side h3 {
  margin: 0 0 20px;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.about-fact:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-fact-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.about-fact-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.about-members {
  padding: 0 20px 90px;
  background: var(--bg-main);
}

.about-members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-member-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.about-member-image {
  aspect-ratio: 4 / 5;
  background: #111;
}

.about-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.03);
}

.about-member-info {
  padding: 22px;
}

.about-member-info h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #fff;
}

.about-member-role {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.about-member-info p {
  margin: 0;
  color: rgba(229, 229, 229, 0.82);
  line-height: 1.7;
}

.about-quote-section {
  padding: 0 20px 90px;
  background: var(--bg-main);
}

.about-quote {
  margin: 0;
  padding: 36px 0 0;
  border-top: 2px solid rgba(255, 106, 0, 0.9);
}

.about-quote p {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1.35;
  color: #fff;
}

.about-cta {
  padding: 0 20px 100px;
  background: var(--bg-main);
}

.about-cta p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(229, 229, 229, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.about-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.about-btn.is-primary {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

.about-btn.is-primary:hover {
  background: transparent;
  color: var(--brand-orange);
}

/* =========================================================
   RELEASES – HOME FEATURED
   ========================================================= */

.latest-release {
  padding: 120px 40px;
  background: var(--bg-alt);
  color: #fff;
}

.latest-release-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.latest-release-cover img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.release-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}

.latest-release-info h2 {
  margin: 0 0 10px;
  font-size: 48px;
}

.release-date {
  margin-bottom: 20px;
  opacity: 0.75;
}

.release-excerpt {
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.latest-release-streams {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.latest-release-streams a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.latest-release-streams img {
  width: 84px;
  height: auto;
  display: block;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.latest-release-streams a:hover img {
  opacity: 1;
  transform: scale(1.15);
  filter: invert(46%) sepia(93%) saturate(7424%) hue-rotate(4deg)
    brightness(101%) contrast(102%);
}

.release-button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}

.release-button:hover {
  background: #fff;
  color: #000;
}

/* =========================================================
   RELEASES – DISCOGRAPHY PAGE
   ========================================================= */

.releases {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 40px;
}

.releases-title {
  margin-bottom: 80px;
  text-align: center;
  font-size: 42px;
}

.releases-discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.release-card {
  text-decoration: none;
  color: inherit;
}

.release-card img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.35s ease;
}

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

.release-card-info {
  margin-top: 14px;
  text-align: center;
}

.release-card-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.release-year {
  font-size: 12px;
  opacity: 0.6;
}

/* =========================================================
   RELEASE DETAIL PAGE
   ========================================================= */

.release-page {
  padding: 60px 20px 100px;
  background: var(--bg-main);
}

.release-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.release-topbar {
  margin-bottom: 36px;
}

.release-back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.release-back-link:hover {
  color: var(--brand-orange);
  transform: translateX(-2px);
}

.release-detail-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}

.release-cover-wrap {
  position: relative;
  max-width: 340px;
}

.release-cover-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 106, 0, 0.12) 0%,
    rgba(255, 106, 0, 0.05) 35%,
    rgba(255, 106, 0, 0.015) 55%,
    transparent 75%
  );
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.release-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.release-content {
  padding-top: 4px;
}

.release-title {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.8px;
  color: #fff;
}

.release-story {
  max-width: 680px;
}

.release-story p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.release-detail-streams {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.release-detail-streams a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.release-detail-streams img {
  width: 80px;
  height: auto;
  display: block;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.release-detail-streams a:hover img {
  opacity: 1;
  transform: scale(1.15);
  filter: invert(46%) sepia(93%) saturate(7424%) hue-rotate(4deg)
    brightness(101%) contrast(102%);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  padding-bottom: 80px;
}

.contact-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(11, 11, 11, 1));
}

.contact-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #cfcfcf;
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-sections {
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.contact-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.45);
}

.contact-card-featured {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.08);
}

.contact-card h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  color: #ffffff;
}

.contact-card p {
  margin: 0 0 22px;
  color: #cfcfcf;
  line-height: 1.7;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff6a00;
}

.contact-line a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-line a:hover {
  color: #ff6a00;
}

.contact-rider-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.contact-rider-link:hover {
  border-color: rgba(255, 106, 0, 0.5);
  color: #ff6a00;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-social-link:hover {
  border-color: rgba(255, 106, 0, 0.5);
  transform: translateY(-2px);
}

.contact-social-link img.social-icon {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.contact-social-link:hover img.social-icon {
  filter: invert(53%) sepia(79%) saturate(3200%) hue-rotate(-2deg)
    brightness(102%) contrast(103%);
  transform: scale(1.05);
}

.contact-content {
  max-width: 900px;
  margin: 50px auto 0;
  color: #cfcfcf;
  line-height: 1.8;
  text-align: center;
}

.contact-content a {
  color: #ffffff;
}

.contact-content a:hover {
  color: #ff6a00;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-hero {
    padding: 120px 20px 50px;
  }
}

/* =========================================================
   CONTACT DOWNLOAD BUTTONS
   ========================================================= */

.contact-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.contact-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;

  color: #fff;
  text-decoration: none;

  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;

  transition: all 0.25s ease;
}

.contact-download-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px);
}

/* Optional: erster Button (Stagerider) leicht hervorheben */
.contact-download-btn:first-child {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.contact-download-btn:first-child:hover {
  background: var(--brand-orange);
  color: #000;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .about-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .updates-grid,
  .updates-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-main {
    padding: 70px 20px;
  }

  .about-hero {
    min-height: 62vh;
  }

  .about-hero-content {
    padding-bottom: 56px;
  }

  .latest-release-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .latest-release-streams {
    justify-content: center;
  }

  .release-detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .release-cover-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .release-content {
    text-align: center;
  }

  .release-story {
    max-width: 100%;
  }

  .release-detail-streams {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .about-divider {
    height: 150px;
  }

  .parallax-inner img {
    height: 115%;
    object-fit: cover;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    padding: 20px 0;
    z-index: 9999;
    text-align: center;
  }

  .site-header nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .hero-slider {
    height: 72vh;
    min-height: 520px;
  }

  .hero-inner {
    top: 14%;
    padding: 0 18px;
  }

  .stream-platforms img {
    height: 26px;
  }

  .nav-social {
    margin-top: 28px;
    justify-content: center;
    gap: 32px;
  }

  .nav-social a {
    width: 40px;
    height: 40px;
  }

  .nav-social img {
    height: 26px;
  }

  .live-row {
    grid-template-columns: 80px 1fr 90px;
    min-height: 90px;
  }

  .live-date-box {
    padding: 10px 6px;
    border-width: 2px;
  }

  .live-day {
    font-size: 1.8rem;
  }

  .live-month {
    margin-top: 4px;
    font-size: 0.7rem;
  }

  .live-time {
    margin-top: 2px;
    font-size: 0.65rem;
  }

  .live-info {
    padding: 0 14px;
  }

  .live-info h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .live-info p {
    font-size: 0.8rem;
  }

  .live-action {
    padding-right: 10px;
  }

  .live-button {
    max-width: 80px;
    padding: 6px 8px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .release-page {
    padding: 56px 20px 90px;
  }

  .release-topbar {
    margin-bottom: 28px;
  }

  .release-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .release-story p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .release-detail-streams img {
    width: 60px;
  }
}

@media (max-width: 680px) {
  .about-members-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-text,
  .about-intro,
  .about-cta p {
    font-size: 1rem;
  }

  .about-side {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .updates-grid,
  .updates-grid-home {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .updates-detail-hero {
    height: 34vh;
    min-height: 220px;
  }

  .latest-release {
    padding: 90px 20px;
  }

  .releases {
    padding: 90px 20px;
  }

  .releases-title {
    margin-bottom: 50px;
    font-size: 34px;
  }

  .latest-release-info h2 {
    font-size: 36px;
  }
}

/* =========================================================
   SPACER
   ========================================================= */

.page-spacer {
  height: 120px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 40px 20px;
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.footer-content a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-content a:hover {
  color: var(--brand-orange);
}

.footer-separator {
  color: var(--border-soft);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 20px;
  }

  .footer-content {
    font-size: 0.7rem;
    gap: 10px;
  }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.page-impressum {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px 100px;
}

.page-impressum h1 {
  margin: 0 0 60px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.page-impressum h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.page-impressum p {
  margin: 0 0 42px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.page-impressum a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-impressum a:hover {
  color: var(--brand-orange);
}

@media (max-width: 768px) {
  .page-impressum {
    padding: 110px 20px 70px;
  }

  .page-impressum h1 {
    margin-bottom: 45px;
  }

  .page-impressum p {
    margin-bottom: 36px;
  }
}

/* ==========================================================
   SIRENS LANDING PAGE
   ========================================================== */

.page-sirens {
    background: #080808;
}


/* ==========================================================
   MAIN WRAPPER
   ========================================================== */

.sirens-page {
    max-width: 1200px;
    margin: 0 auto;
}


/* ==========================================================
   HERO
   ========================================================== */

.sirens-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 70px;

    min-height: calc(100vh - 90px);

    padding: 60px 40px 80px;
}


/* ==========================================================
   COVER
   ========================================================== */

.sirens-cover {
    width: 100%;
    max-width: 610px;
    margin: 0 auto;
}

.sirens-cover img {
    display: block;
    width: 100%;
    height: auto;
}


/* ==========================================================
   HERO CONTENT
   ========================================================== */

.sirens-hero-content {
    width: 100%;
}


/* ==========================================================
   TITLE
   ========================================================== */

.sirens-hero h1 {
    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;

    line-height: 0.9;
    letter-spacing: -0.04em;
}


/* ==========================================================
   INTRO
   ========================================================== */

.sirens-intro {
    margin: 0 0 34px;

    color: #aaa;

    font-size: 0.88rem;
    line-height: 1.5;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* ==========================================================
   STREAMING AREA
   ========================================================== */

.sirens-streaming {
    width: 100%;
    max-width: 470px;
}

.sirens-streaming-title {
    margin: 0 0 16px;

    color: #ff9200;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ==========================================================
   PLATFORM GRID
   ========================================================== */

.sirens-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}


/* ==========================================================
   PLATFORM TILE
   ========================================================== */

.sirens-platform {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 76px;
    padding: 18px 22px;

    border: 1px solid #303030;

    background: #0d0d0d;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.sirens-platform:hover {
    border-color: #ff9200;
    background: #121212;

    transform: translateY(-2px);
}


/* ==========================================================
   PLATFORM LOGOS
   Default: WHITE
   Hover: ORANGE
   ========================================================== */

.sirens-platform img {
    display: block;

    max-width: 150px;
    max-height: 30px;

    width: auto;
    height: auto;

    /* Convert all SVG logos to white */
    filter:
        grayscale(1)
        brightness(0)
        invert(1);

    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}


/* Orange logo on hover */

.sirens-platform:hover img {
    filter:
        brightness(0)
        saturate(100%)
        invert(60%)
        sepia(100%)
        saturate(3000%)
        hue-rotate(2deg)
        brightness(105%)
        contrast(105%);
}


/* ==========================================================
   SPOTIFY DISABLED
   ========================================================== */

.sirens-platform-disabled {
    position: relative;

    cursor: default;

    opacity: 0.4;
}


/* No hover effect for disabled Spotify */

.sirens-platform-disabled:hover {
    border-color: #303030;
    background: #0d0d0d;

    transform: none;
}


/* Keep disabled Spotify logo white/grey */

.sirens-platform-disabled:hover img {
    filter:
        grayscale(1)
        brightness(0)
        invert(1);
}


/* Coming Soon label */

.sirens-platform-disabled span {
    position: absolute;

    right: 8px;
    bottom: 6px;

    color: #777;

    font-size: 0.48rem;
    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* ==========================================================
   ABOUT SECTION
   ========================================================== */

.sirens-about {
    max-width: 760px;
    margin: 0 auto;

    padding: 95px 40px;

    text-align: center;
}

.sirens-about h2,
.sirens-video h2 {
    margin: 0 0 30px;

    color: #ff9200;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.sirens-about p {
    margin: 0 0 20px;

    color: #ccc;

    font-size: 1.05rem;
    line-height: 1.8;
}

.sirens-about p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   VIDEO SECTION
   ========================================================== */

.sirens-video {
    padding: 30px 40px 110px;

    text-align: center;
}


/* ==========================================================
   YOUTUBE LINK
   ========================================================== */

.sirens-youtube-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin: 0 auto 28px;
    padding: 15px 24px;

    border: 1px solid #303030;

    background: #0d0d0d;

    color: #aaa;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.sirens-youtube-link:hover {
    border-color: #ff9200;

    background: #121212;

    color: #ff9200;

    transform: translateY(-2px);
}


/* ==========================================================
   YOUTUBE LOGO
   Default: WHITE
   Hover: ORANGE
   ========================================================== */

.sirens-youtube-link img {
    display: block;

    width: auto;
    height: 24px;

    max-width: 130px;

    filter:
        grayscale(1)
        brightness(0)
        invert(1);

    transition: filter 0.2s ease;
}

.sirens-youtube-link:hover img {
    filter:
        brightness(0)
        saturate(100%)
        invert(60%)
        sepia(100%)
        saturate(3000%)
        hue-rotate(2deg)
        brightness(105%)
        contrast(105%);
}


/* ==========================================================
   VIDEO EMBED
   ========================================================== */

.sirens-video-wrapper {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    aspect-ratio: 16 / 9;

    background: #111;
}

.sirens-video-wrapper iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .sirens-hero {
        gap: 45px;

        padding-left: 30px;
        padding-right: 30px;
    }

    .sirens-cover {
        max-width: 520px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 800px) {

    /* HERO */

    .sirens-hero {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 22px;

        padding: 22px 20px 55px;

        text-align: center;
    }


    /* COVER */

    .sirens-cover {
        width: 64%;
        max-width: 310px;

        margin: 0 auto;
    }


    /* HERO CONTENT */

    .sirens-hero-content {
        width: 100%;
    }


    /* TITLE */

    .sirens-hero h1 {
        margin: 0 0 8px;

        font-size: clamp(2.8rem, 14vw, 4.2rem);

        line-height: 0.9;
    }


    /* INTRO */

    .sirens-intro {
        margin: 0 0 20px;

        font-size: 0.68rem;
        line-height: 1.5;

        letter-spacing: 0.15em;
    }


    /* STREAMING */

    .sirens-streaming {
        width: 100%;
        max-width: 420px;

        margin: 0 auto;
    }

    .sirens-streaming-title {
        margin-bottom: 13px;
    }


    /* PLATFORM GRID */

    .sirens-platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    /* PLATFORM TILE */

    .sirens-platform {
        min-height: 64px;

        padding: 14px 16px;
    }


    /* PLATFORM LOGOS */

    .sirens-platform img {
        max-width: 120px;
        max-height: 26px;
    }


    /* ABOUT */

    .sirens-about {
        padding: 65px 24px;
    }

    .sirens-about h2 {
        margin-bottom: 25px;
    }

    .sirens-about p {
        font-size: 0.95rem;
        line-height: 1.7;
    }


    /* VIDEO */

    .sirens-video {
        padding: 25px 20px 70px;
    }

    .sirens-video h2 {
        margin-bottom: 25px;
    }

    .sirens-youtube-link {
        margin-bottom: 22px;
    }

}


/* ==========================================================
   SMALL PHONES
   ========================================================== */

@media (max-width: 480px) {

    .sirens-hero {
        padding-top: 18px;
    }


    /* Smaller cover so streaming services
       remain visible without excessive scrolling */

    .sirens-cover {
        width: 58%;
        max-width: 270px;
    }


    /* TITLE */

    .sirens-hero h1 {
        font-size: clamp(2.5rem, 13vw, 3.7rem);
    }


    /* STREAMING TILES */

    .sirens-platform {
        min-height: 58px;

        padding: 12px 10px;
    }

    .sirens-platform img {
        max-width: 105px;
        max-height: 23px;
    }


    /* ABOUT */

    .sirens-about {
        padding-left: 20px;
        padding-right: 20px;
    }

}


/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media (max-width: 360px) {

    .sirens-platform-grid {
        grid-template-columns: 1fr;
    }

    .sirens-platform {
        min-height: 60px;
    }

}

/* ==========================================================
   SPOTIFY - COMING SOON
   ========================================================== */

.sirens-platform-disabled {
    position: relative;
    cursor: default;
    opacity: 1;
}

.sirens-platform-disabled img {
    opacity: 0.5;

    filter:
        grayscale(1)
        brightness(0)
        invert(1);
}

.sirens-platform-disabled:hover {
    border-color: #303030;
    background: #0d0d0d;
    transform: none;
}

.sirens-platform-disabled:hover img {
    filter:
        grayscale(1)
        brightness(0)
        invert(1);
}


/* COMING SOON */

.sirens-coming-soon {
    position: absolute;

    right: 10px;
    bottom: 8px;

    color: #ff9200;

    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ==========================================================
   DEMIAN COOKIE CONSENT
   ========================================================== */

.demian-consent {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 99999;

    padding: 14px 20px;

    background: #111;
    border-top: 1px solid #333;

    color: #fff;

    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}


.demian-consent[hidden] {
    display: none;
}


.demian-consent-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* TEXT */

.demian-consent-text {
    flex: 1;
}

.demian-consent-text strong {
    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: 0.9rem;
}

.demian-consent-text p {
    margin: 0;

    max-width: 650px;

    color: #aaa;

    font-size: 0.76rem;
    line-height: 1.5;
}


/* BUTTON AREA */

.demian-consent-main,
.demian-consent-settings-actions {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}


/* BUTTONS */

.demian-consent-button {
    min-height: 40px;

    padding: 9px 15px;

    border: 1px solid #555;

    background: transparent;
    color: #fff;

    font-family: inherit;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.demian-consent-button:hover {
    border-color: #ff9200;
    color: #ff9200;
}


.demian-consent-accept {
    border-color: #ff9200;

    background: #ff9200;
    color: #000;
}


.demian-consent-accept:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}


/* OPTIONS */

.demian-consent-options {
    flex: 1;
}


.demian-consent-options[hidden] {
    display: none;
}


.demian-consent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 8px 0;

    border-bottom: 1px solid #282828;
}


.demian-consent-option strong {
    display: block;

    color: #fff;

    font-size: 0.78rem;
}


.demian-consent-option small {
    display: block;

    margin-top: 2px;

    color: #888;

    font-size: 0.65rem;
    line-height: 1.4;
}


.demian-consent-option input {
    width: 18px;
    height: 18px;

    accent-color: #ff9200;

    flex-shrink: 0;
}


.demian-consent-settings-actions {
    justify-content: flex-end;

    margin-top: 12px;
}


/* COOKIE SETTINGS BUTTON */

.demian-cookie-settings {
    position: fixed;

    left: 12px;
    bottom: 12px;

    z-index: 9998;

    padding: 7px 10px;

    border: 1px solid #333;

    background: #0d0d0d;
    color: #777;

    font-family: inherit;

    font-size: 0.58rem;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;
}


.demian-cookie-settings:hover {
    border-color: #ff9200;
    color: #ff9200;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 800px) {

    .demian-consent {
        padding: 12px 14px;
    }


    .demian-consent-inner {
        display: block;
    }


    .demian-consent-text strong {
        font-size: 0.82rem;
    }


    .demian-consent-text p {
        margin-bottom: 10px;

        font-size: 0.68rem;
        line-height: 1.4;
    }


    .demian-consent-main {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        width: 100%;
    }


    .demian-consent-button {
        min-height: 38px;

        padding: 8px 5px;

        font-size: 0.57rem;

        letter-spacing: 0.04em;
    }


    .demian-consent-settings-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 7px;
    }


    .demian-consent-settings-actions
    .demian-consent-accept {

        grid-column: 1 / -1;
    }


    .demian-cookie-settings {
        left: 8px;
        bottom: 8px;

        font-size: 0.52rem;
    }

}