* {
  box-sizing: border-box;
}

:root {
  --hot-pink: #f72891;
  --berry: #9b0f55;
  --ink: #3c0925;
  --muted: #7b4360;
  --blush: #fff1f8;
  --paper: rgba(255, 255, 255, 0.94);
  --line: rgba(180, 22, 96, 0.18);
  --shine: rgba(255, 255, 255, 0.72);
  --accent: #16a3a3;
  --gold: #f6b73c;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(145deg, #ff9bc9 0%, #f72891 38%, #b80f61 72%, #6f0a44 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6%;
  background: rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.85);
}

.back-link,
.article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #fff;
  color: #d81774;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(102, 4, 54, 0.22), inset 0 1px 0 var(--shine);
}

.article-page {
  width: min(100% - 28px, 1040px);
  margin: 0 auto;
  padding: 24px 0 48px;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 250, 0.96));
  box-shadow:
    0 28px 70px rgba(85, 3, 46, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cover-frame {
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 211, 234, 0.64));
  border-bottom: 1px solid var(--line);
}

.article-cover {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(116, 10, 62, 0.2);
}

.article-content {
  padding: 26px 18px 30px;
}

.article-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot-pink), #b80f61);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(247, 40, 145, 0.28);
}

.article-sub-label {
  max-width: max-content;
  margin: -4px 0 14px;
  padding: 6px 11px;
  border: 1px solid rgba(184, 15, 97, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #a80f59;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.article-title {
  max-width: 900px;
  margin: 0;
  color: #2f061c;
  font-size: 2.05rem;
  line-height: 1.04;
  text-transform: uppercase;
}

.article-intro {
  max-width: 820px;
  margin: 18px 0 0;
  color: #5b1839;
  font-size: 1.12rem;
  font-weight: 700;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.article-body {
  margin-top: 28px;
}

.article-body p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #402039;
  font-size: 1.02rem;
}

.article-quote {
  margin: 28px 0;
  padding: 20px;
  border-left: 7px solid var(--hot-pink);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #ffe1f0);
  color: #8f0f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 var(--shine), 0 16px 32px rgba(126, 10, 67, 0.12);
}

.article-quote cite {
  display: block;
  margin-top: 12px;
  color: #5b1839;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 900;
}

.dossier-grid {
  display: grid;
  gap: 14px;
  margin: 30px 0 6px;
}

.dossier-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 var(--shine);
}

.dossier-block h2 {
  margin: 0 0 8px;
  color: #b80f61;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.dossier-block p,
.dossier-block ul,
.dossier-block ol,
.dossier-block dl {
  margin: 0;
  color: #49243b;
}

.dossier-block ul,
.dossier-block ol {
  padding-left: 20px;
}

.dossier-block li + li,
.dossier-block p + p {
  margin-top: 6px;
}

.fact-list {
  list-style: none;
  padding-left: 0;
}

.fact-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.fact-list span {
  flex: 0 0 auto;
}

.stats-list {
  display: grid;
  gap: 10px;
}

.stats-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184, 15, 97, 0.14);
}

.stats-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stats-list dt {
  font-weight: 800;
}

.stats-list dd {
  margin: 0;
  color: #d81774;
  font-size: 1.15rem;
  font-weight: 900;
}

.poll-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 220, 238, 0.88));
}

.poll-options {
  display: grid;
  gap: 10px;
  margin: 0;
}

.poll-options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(184, 15, 97, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #49243b;
  font-weight: 800;
}

.poll-options input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--hot-pink);
}

.article-comments {
  margin-top: 30px;
  padding: 20px;
  border: 1px dashed rgba(184, 15, 97, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 227, 241, 0.78));
}

.article-comments h2 {
  margin: 0 0 8px;
  color: #b80f61;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.article-comments p {
  margin: 0;
  color: #5a2142;
  font-weight: 800;
}

.article-footer {
  padding: 22px 6% 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

@media (min-width: 720px) {
  .site-header {
    padding: 18px 7%;
  }

  .brand {
    font-size: 1.6rem;
  }

  .article-page {
    width: min(100% - 64px, 1040px);
    padding: 36px 0 64px;
  }

  .cover-frame {
    padding: 18px;
  }

  .article-content {
    padding: 38px 44px 44px;
  }

  .article-title {
    font-size: 3.05rem;
  }

  .article-intro {
    font-size: 1.25rem;
  }

  .dossier-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dossier-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .poll-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-link {
    width: 100%;
  }

  .article-title {
    font-size: 1.72rem;
  }
}
