:root {
  --bg-main: #0b0c10;
  --accent: #ff9f43;
  --accent-light: #ffd2a6;
  --text-main: rgba(255,255,255,0.95);
  --text-dim: rgba(255,255,255,0.6);
}

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
  background-color: var(--bg-main);
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg-main);
  background-color: var(--bg-main);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  max-width: 100%;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  overscroll-behavior-y: auto;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 70% 15%, #1b1f2a 0%, var(--bg-main) 60%);
  background-color: var(--bg-main);
  transform: translateZ(0);
}

.hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: clamp(380px, 64vh, 640px);
}

.hero-banner__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.hero-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 50% 40%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.74) 70%, rgba(0,0,0,0.90) 100%),
    linear-gradient(180deg, rgba(11,12,16,0.25) 0%, rgba(11,12,16,0.92) 100%);
  pointer-events: none;
}

.hero-banner__media::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(closest-side, rgba(255,159,67,0.16), rgba(255,159,67,0) 70%),
    radial-gradient(closest-side, rgba(255,210,166,0.12), rgba(255,210,166,0) 68%);
  filter: blur(12px);
  opacity: 0.9;
  animation: heroGlowMove 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, calc(var(--hero-parallax-y, 0px) + var(--hero-auto-y, 0px)), 0) scale(1.08);
  will-change: transform;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: clamp(380px, 64vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  max-width: 820px;
}

.hero-banner__title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-shadow: 0 10px 26px rgba(0,0,0,0.65);
}

.hero-banner__subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
  transition: opacity 0.8s ease;
  opacity: 1;
  text-shadow: 0 10px 26px rgba(0,0,0,0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  min-height: 52px;
  border-radius: 999px;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

@keyframes heroGlowMove {
  0% { transform: translate3d(-2%, -1%, 0) rotate(-4deg); }
  100% { transform: translate3d(2%, 2%, 0) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__media::before {
    animation: none;
  }
}

@media (max-width: 700px) {
  .hero-banner {
    min-height: clamp(420px, 70vh, 640px);
  }
  .hero-banner__inner {
    min-height: clamp(420px, 70vh, 640px);
  }
  .hero-banner__content {
    padding: 18px 16px;
    border-radius: 16px;
    max-width: 100%;
  }
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  min-height: 72px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

body > .header:first-of-type {
  margin-top: 0 !important;
}

body.article-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.article-page > .header:first-of-type {
  margin-top: 0 !important;
  top: 0;
}

.header .logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  gap: 6px;
  text-decoration: none;
  padding: 0;
}

.header .logo img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  transform-origin: left center;
}

@media (max-width: 700px) {
  .header {
    padding: 0 14px;
    min-height: 56px;
  }
  .header .logo img {
    height: 40px;
  }
}

.header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
}

.header nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header nav a:hover {
  color: var(--accent);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  max-width: 700px;
  margin: 38px auto 60px;
  text-align: center;
  padding: 0 20px;
  flex: 1;
}

.main-content h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== ANIMATED TEXT ===== */
.animated-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 40px;
  transition: opacity 0.8s ease;
  opacity: 1;
}

/* ===== NEW MATERIALS ===== */
.new-materials h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.new-materials ul {
  list-style: none;
}

.new-materials li {
  background: rgba(255,255,255,0.06);
  padding: 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.new-materials a {
  color: var(--text-main);
  text-decoration: none;
  display: block;
}

.new-materials a:hover {
  color: var(--text-main);
}

.new-materials li:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* ===== COMING SOON ===== */
.coming {
  max-width: 700px;
  margin: 80px auto 120px;
  padding: 0 20px;
  text-align: center;
  flex: 1;
}

.coming h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.coming p {
  color: var(--text-dim);
}

/* ===== DONATE ===== */
.donate {
  max-width: 760px;
  margin: 70px auto 110px;
  padding: 0 20px;
  flex: 1;
}

.donate__box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.donate h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.donate p {
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.45;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.donate__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.donate__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.4;
}

.donate__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.donate__text {
  min-width: 0;
  flex: 1 1 auto;
}

.donate__label {
  color: var(--accent-light);
  font-weight: 600;
}

.donate__value {
  overflow-wrap: anywhere;
}

.donate__banks {
  color: var(--text-main);
}

.donate__small {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

.donate__copy {
  flex: 0 0 auto;
  min-width: 104px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  cursor: pointer;
  font-size: 13px;
}

.donate__copy.is-done {
  border-color: rgba(255,159,67,0.8);
  background: rgba(255,159,67,0.18);
}

.donate a {
  color: var(--accent);
  text-decoration: none;
}

.donate a:hover {
  text-decoration: underline;
}

.donate__list + p {
  margin-top: 14px;
}

/* ===== ARTICLES LIST ===== */
.articles {
  max-width: 1200px;
  margin: 60px auto 90px;
  padding: 0 20px;
  flex: 1;
}

.articles__header {
  margin-bottom: 20px;
}

.articles h1 {
  font-size: 30px;
}

.articles__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}

.article-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.article-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 150px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.article-card h2 {
  font-size: 17px;
  line-height: 1.3;
}


.articles__sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* ===== ALBUMS ===== */
.albums {
  max-width: 1200px;
  margin: 60px auto 90px;
  padding: 0 20px;
  flex: 1;
}

.albums__header {
  margin-bottom: 20px;
}

.albums h1 {
  font-size: 30px;
}

.albums__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.album-card {
  display: block;
  text-decoration: none;
  color: var(--text-main);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 320px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.35);
  margin-bottom: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.album-title {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.album-year {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== ALBUM PAGE ===== */
.album {
  max-width: 900px;
  margin: 60px auto 90px;
  padding: 0 20px;
  flex: 1;
}

.album__header {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.album__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.35);
}

.album__meta h1 {
  font-size: 28px;
  margin-bottom: 6px;
}

.album__meta .year {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 10px;
}

.album__desc {
  color: var(--text-dim);
  line-height: 1.6;
}

.tracklist {
  margin: 24px 0;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.tracklist h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tracklist ol {
  margin: 0;
  padding-left: 22px;
  list-style-position: outside;
  list-style-type: decimal;
}

.tracklist ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.tracklist ol li {
  list-style: decimal;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platforms a {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platforms a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 159, 67, 0.3);
}

.topics {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
}

.topics__title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.topics__item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font: inherit;
  display: block;
  color: var(--text-main);
  text-decoration: none;
  padding: 6px 4px;
  border-radius: 8px;
  cursor: pointer;
}

.topics__item:hover {
  background: rgba(255,255,255,0.06);
}

.topics__item.is-active {
  color: var(--accent);
}


/* ===== ARTICLE PAGE ===== */
.article {
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 0 20px 0;
  flex: 1;
  width: 100%;
  overflow-x: clip;
}

.app {
  flex: 1;
}

.article__hero {
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 100%;
  overflow-x: clip;
}

/* Keep natural flow under sticky header */
.header + .article {
  margin-top: 0;
}

/* Desktop article pages: keep a small breathing space under header */
.article-page .article {
  padding-top: 10px;
}

.article__meta {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.article h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article__subtitle {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  line-height: 1;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
}

.tag:hover {
  border-color: rgba(255,255,255,0.25);
}

.article__hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-top: 10px;
}

.article__content {
  line-height: 1.7;
  font-size: 17px;
  max-width: 100%;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article__content > * {
  max-width: 100%;
}

.article__content h2 {
  margin: 26px 0 12px;
  font-size: 24px;
}

.article__content h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  color: var(--accent-light);
}

.article__content h4 {
  margin: 16px 0 8px;
  font-size: 18px;
  color: var(--accent-light);
}

.article__content p {
  margin: 0 0 14px;
}

.article__content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin: 16px 0;
}

.article__content a {
  color: var(--accent);
  text-decoration: none;
}

.article__content a:hover {
  text-decoration: underline;
}

.article__cta-wrap {
  margin: 30px 0 10px;
  text-align: center;
}

.article__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #111;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article__content .article__cta-btn {
  color: #111;
}

.article__cta-btn:hover {
  color: #111;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 159, 67, 0.3);
}

.article__content blockquote {
  margin: 18px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,0.03);
  border-radius: 0 8px 8px 0;
  color: var(--text-main);
}

.quote--with-author {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.05);
  border-radius: 0 12px 12px 0;
  position: relative;
}

.quote--with-author p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: var(--text-main);
}

.quote--with-author p::before {
  content: '"';
  font-size: 24px;
  color: var(--accent);
  margin-right: 4px;
}

.quote--with-author p::after {
  content: '"';
  font-size: 24px;
  color: var(--accent);
  margin-left: 4px;
}

.quote__author {
  display: block;
  text-align: right;
  font-style: normal;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.article__content ul,
.article__content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article__content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.article__content ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}

.article__content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.4;
}

.article__content ol li {
  list-style-type: decimal;
  padding-left: 8px;
}

.article__content ul ul,
.article__content ol ol,
.article__content ul ol,
.article__content ol ul {
  margin: 8px 0;
}

.article__content ul ul li::before {
  color: var(--accent-light);
}

.article__content ul ul ul li::before {
  color: var(--text-dim);
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article__table-scroll {
  margin: 20px 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: 12px;
  max-width: 100%;
}

.article__table-scroll .article__table {
  margin: 0;
  width: max-content;
  min-width: 640px;
}

.article__table th,
.article__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article__table th {
  background: rgba(255,255,255,0.05);
  font-weight: 600;
  color: var(--text-main);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article__table td {
  color: var(--text-main);
  font-size: 15px;
}

.article__table--numeric-center td {
  text-align: center;
}

.article__table tr:last-child td {
  border-bottom: none;
}

.article__table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.tag--small {
  font-size: 11px;
  padding: 2px 8px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .donate__list {
    margin-bottom: 20px;
  }

  .donate__list + p {
    margin-top: 16px;
  }

  .donate__row {
    flex-direction: column;
    align-items: stretch;
  }

  .donate__copy {
    width: 100%;
  }

  .article {
    padding-top: 0;
  }

  .article__hero {
    margin-top: 0;
  }

  .article-page .article {
    padding-top: 8px;
  }

  .article h1 {
    font-size: 28px;
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .article__content h4 {
    font-size: 17px;
    margin: 14px 0 8px;
  }

  .article__content p {
    margin: 0 0 12px;
  }

  .article__cta-wrap {
    margin: 24px 0 8px;
  }

  .article__cta-btn {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
  }

  .article__table {
    font-size: 14px;
  }

  .article__table-scroll .article__table {
    min-width: 560px;
  }
  
  .article__table th,
  .article__table td {
    padding: 8px 12px;
  }

  .article__table--numeric-center td {
    text-align: center;
  }
  
  .quote--with-author {
    padding: 16px 20px;
  }
  
  .quote--with-author p {
    font-size: 16px;
  }
}

.article__nav {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.article__nav a {
  flex: 1;
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-main);
  text-decoration: none;
}

.article__nav a:hover {
  border-color: rgba(255,255,255,0.2);
}

.article__nav .label {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 6px;
}

.article__nav .title {
  font-size: 14px;
  line-height: 1.3;
}

.article__nav .spacer {
  flex: 1;
}

.article__nav:has(a:only-child) {
  justify-content: center;
}

.article__nav a:only-child {
  flex: 0 1 420px;
}

.embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 18px 0;
  border-radius: 16px;
  overflow: hidden;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== FOOTER ===== */
.footer {
  padding: 20px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  color: var(--text-dim);
  margin-top: auto;
}

.footer .footer-main {
  flex: 1;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  position: relative;
}

.footer .socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

/* Force all social icons to be visible */
.footer .socials a,
.footer .socials .dzen-link {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-shrink: 0;
  min-width: 56px;
  min-height: 56px;
  margin: 6px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

/* Desktop: large icons */
@media (min-width: 768px) {
  .footer .socials {
    gap: 12px;
  }
  
  .footer .socials img {
    width: 34px;
    height: 34px;
  }
}

/* Tablet: medium icons */
@media (max-width: 767px) and (min-width: 481px) {
  .footer .socials {
    gap: 8px;
  }
  
  .footer .socials a,
  .footer .socials .dzen-link {
    margin: 4px;
    padding: 8px;
    min-width: 48px;
    min-height: 48px;
  }
  
  .footer .socials img {
    width: 28px;
    height: 28px;
  }
  
  .dzen-link::before {
    width: 28px;
    height: 28px;
  }
}

/* Mobile: small icons */
@media (max-width: 480px) {
  .footer .socials {
    gap: 6px;
  }
  
  .footer .socials a,
  .footer .socials .dzen-link {
    margin: 3px;
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .footer .socials img {
    width: 24px;
    height: 24px;
  }
  
  .dzen-link::before {
    width: 24px;
    height: 24px;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  .footer .socials {
    gap: 4px;
  }
  
  .footer .socials a,
  .footer .socials .dzen-link {
    margin: 2px;
    padding: 4px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .footer .socials img {
    width: 20px;
    height: 20px;
  }
  
  .dzen-link::before {
    width: 20px;
    height: 20px;
  }
}

/* Dzen icon via CSS pseudo-element */
.dzen-link::before {
  content: '';
  display: block;
  width: 34px;
  height: 34px;
  background-image: url('assets/social/dzen.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .socials a:hover,
.footer .socials .dzen-link:hover {
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.footer .socials img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer .socials a:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.footer .copyright {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  position: absolute;
  right: 20px;
}

/* ===== BACK LINK ===== */

.back-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--accent-light);
  text-decoration: none;
  opacity: 0.8;
}

.back-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===== SOON / BOOK TEASER ===== */

.soon-page {
  background:
    linear-gradient(180deg, rgba(11,12,16,1) 0%, rgba(14,12,11,1) 46%, rgba(7,8,10,1) 100%);
}

.soon-page::before {
  background:
    radial-gradient(780px 420px at 72% 12%, rgba(255,159,67,0.16), rgba(255,159,67,0) 68%),
    radial-gradient(680px 360px at 20% 34%, rgba(255,210,166,0.10), rgba(255,210,166,0) 70%),
    linear-gradient(180deg, #0b0c10 0%, #08090d 100%);
}

.soon {
  flex: 1;
  width: 100%;
}

.soon__hero {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 92px) 0 clamp(42px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 34px);
  text-align: center;
}

.soon__copy {
  width: min(100%, 980px);
  max-width: 980px;
}

.soon__eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.soon__copy h1 {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0,0,0,0.72);
}

.soon__lead {
  max-width: 920px;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
  text-align: left;
  text-wrap: balance;
}

.soon__lead p + p {
  margin-top: 20px;
}

.soon__lead p:first-child {
  max-width: 920px;
  margin-inline: auto;
}

.soon__invitation {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,0.75), 0 0 24px rgba(255,159,67,0.18);
}

.soon__video-shell {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,210,166,0.34);
  border-radius: 8px;
  background: #050507;
  box-shadow:
    0 36px 90px rgba(0,0,0,0.62),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 54px rgba(255,159,67,0.12);
}

.soon__video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 18%),
    radial-gradient(900px 360px at 50% 100%, rgba(255,159,67,0.16), rgba(255,159,67,0) 72%);
}

.soon__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soon__audio {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.soon__sound {
  position: static;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(8,9,12,0.72);
  color: var(--accent-light);
  cursor: pointer;
  backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.soon__sound:hover {
  transform: translateY(-1px);
  border-color: rgba(255,210,166,0.56);
  background: rgba(20,17,14,0.86);
}

.soon__sound-icon {
  position: relative;
  width: 25px;
  height: 22px;
  display: block;
}

.soon__sound-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 10px;
  border-radius: 2px;
  background: currentColor;
}

.soon__sound-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 11px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}

.soon__sound-icon span::before,
.soon__sound-icon span::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  border-left: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.88;
}

.soon__sound-icon span::before {
  left: 16px;
  top: 5px;
  width: 6px;
  height: 10px;
}

.soon__sound-icon span::after {
  left: 18px;
  top: 2px;
  width: 10px;
  height: 16px;
}

.soon__sound-icon--off span::before,
.soon__sound-icon--off span::after {
  display: none;
}

.soon__sound-icon--off::after {
  opacity: 0.72;
}

.soon__sound-icon--off::before {
  box-shadow: 15px 1px 0 -6px currentColor;
}

.soon__sound-icon--off span {
  position: absolute;
  left: 2px;
  top: 10px;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: center;
}

.soon__volume {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  width: 220px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(8,9,12,0.62);
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease 1s, transform 0.18s ease 1s;
}

.soon__audio:hover .soon__volume,
.soon__audio:focus-within .soon__volume {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.soon__volume input {
  width: 100%;
  min-width: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.soon__genres {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(760px, 100%);
}

.soon__genre-frame {
  position: relative;
  width: min(620px, 100%);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,210,166,0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,159,67,0.06), rgba(255,210,166,0.13), rgba(255,159,67,0.06)),
    rgba(8,9,12,0.58);
  box-shadow:
    0 22px 52px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 42px rgba(255,159,67,0.10);
  backdrop-filter: blur(16px);
}

.soon__genre-frame::before,
.soon__genre-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255,210,166,0.18);
}

.soon__genre-frame::before {
  border-left-color: transparent;
  border-right-color: transparent;
}

.soon__genre-frame::after {
  inset: 0;
  border: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 36%, rgba(255,236,210,0.36) 49%, rgba(255,159,67,0.18) 53%, rgba(255,255,255,0) 66%, transparent 100%);
  transform: translateX(-120%);
  animation: genreSweep 2.6s ease-in-out infinite;
}

.soon__genres span {
  position: relative;
  z-index: 1;
  color: var(--accent-light);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow:
    0 14px 34px rgba(0,0,0,0.72),
    0 0 18px rgba(255,159,67,0.24);
  opacity: 1;
  transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.soon__genres span.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  filter: blur(8px);
}

.soon__genres span.is-revealed {
  animation: genreReveal 0.62s ease both;
}

@keyframes genreSweep {
  0% { transform: translateX(-125%); opacity: 0; }
  16% { opacity: 0.85; }
  34% { transform: translateX(125%); opacity: 0; }
  100% { transform: translateX(125%); opacity: 0; }
}

@keyframes genreReveal {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(1.03);
    filter: blur(6px);
  }
  28% {
    opacity: 1;
    transform: translateY(0) translateX(2px) scale(1.01);
    filter: blur(0);
  }
  44% {
    transform: translateX(-2px);
  }
  62% {
    transform: translateX(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon__genre-frame::after,
  .soon__genres span.is-revealed {
    animation: none;
  }
}

@media (max-width: 700px) {
  .soon__hero {
    width: min(100% - 28px, 1120px);
    min-height: auto;
    padding-top: 42px;
  }

  .soon__lead {
    line-height: 1.55;
    max-width: 620px;
    text-align: center;
    text-wrap: pretty;
  }

  .soon__video-shell {
    border-radius: 6px;
  }

  .soon__audio {
    right: 12px;
    bottom: 12px;
  }

  .soon__sound {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .soon__volume {
    width: 200px;
  }

  .soon__genres {
    min-height: 66px;
  }

  .soon__genre-frame {
    min-height: 66px;
  }

  .soon__genres span {
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  .soon__hero {
    width: min(100% - 24px, 1120px);
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .soon__eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .soon__copy h1 {
    font-size: clamp(31px, 10vw, 38px);
    line-height: 1.04;
  }

  .soon__lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .soon__invitation {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .soon__audio {
    left: auto;
    right: auto;
    bottom: 10px;
    right: 10px;
  }

  .soon__sound:hover {
    transform: translateY(-1px);
  }

  .soon__volume {
    display: none;
  }

  .soon__genres {
    min-height: 60px;
  }

  .soon__genre-frame {
    min-height: 60px;
  }

  .soon__genre-frame::before {
    inset: 8px;
  }

  .soon__genres span {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 360px) {
  .soon__copy h1 {
    font-size: 29px;
  }

  .soon__lead {
    font-size: 14px;
  }

  .soon__genres span {
    font-size: 15px;
    letter-spacing: 0.02em;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 500px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: auto;
    padding: 12px 14px 14px;
  }
  .header .logo {
    justify-content: center;
  }
  .header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
  }
  .header nav a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
  }
}

/* Article pages: keep a cleaner mobile header rhythm and safe gap below sticky bar */
@media (max-width: 500px) {
  .article-page .header {
    padding-top: 14px;
    padding-bottom: 16px;
    gap: 14px;
  }

  .article-page .header .logo {
    justify-content: center;
  }

  .article-page .header nav ul {
    justify-content: center;
    gap: 12px 24px;
  }

  .article-page .header nav a {
    min-height: 30px;
    padding: 2px 0;
  }

  .article-page .article {
    padding-top: 12px;
  }
}

@media(max-width: 900px) {
  .footer .footer-inner {
    flex-direction: column;
  }
}

/* On small screens place copyright below the icons to avoid overlap */
@media (max-width: 900px) {
  .footer .copyright {
    position: static;
    margin-top: 10px;
    right: auto;
  }
}

@media(max-width: 900px) {
  .articles__layout {
    grid-template-columns: 1fr;
  }
  .articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .albums__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .album__header {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .articles__grid {
    grid-template-columns: 1fr;
  }

  .albums__grid {
    grid-template-columns: 1fr;
  }
}
