@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Bebas Neue";
  src: url("/assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --cr-yellow: #ffd200;
  --cr-ink: #0a0a0a;
  --cr-muted: #707070;
  --cr-line: #e7e7e7;
  --cr-soft: #f7f7f7;
  --cr-card: #ffffff;
  --cr-green: #16985a;
  --cr-red: #d84e58;
  --cr-blue: #4aa3df;
  --cr-radius: 8px;
}

* {
  box-sizing: border-box;
}

body.cr-site {
  margin: 0;
  overflow-x: hidden;
  color: var(--cr-ink);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.cr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--cr-line);
  backdrop-filter: blur(14px);
}

.cr-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.cr-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.cr-logo-img {
  display: block;
  width: min(276px, 48vw);
  max-height: 48px;
  object-fit: contain;
}

.cr-logo-wave {
  position: absolute;
  left: 24.9%;
  top: 49.75%;
  display: flex;
  width: 34px;
  height: 26px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #ffffff;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.cr-logo-wave i {
  display: block;
  width: 2.5px;
  height: 54%;
  background: #111111;
  border-radius: 999px;
  animation: crLogoWave 1.08s ease-in-out infinite;
}

.cr-logo-type {
  display: none;
}

.cr-logo-wave i:nth-child(1),
.cr-logo-wave i:nth-child(5) {
  height: 40%;
  animation-delay: -0.35s;
}

.cr-logo-wave i:nth-child(2),
.cr-logo-wave i:nth-child(4) {
  height: 66%;
  animation-delay: -0.18s;
}

.cr-logo-wave i:nth-child(3) {
  height: 82%;
}

@keyframes crLogoWave {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(0.38);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.86);
  }
}

.cr-menu-toggle {
  display: none;
}

.cr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
}

.cr-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #262626;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-nav-light {
  margin-left: 0.32em;
  font-weight: 400;
}

.cr-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  background: transparent;
}

.cr-nav a.is-active::after,
.cr-nav a:hover::after {
  background: var(--cr-yellow);
}

.cr-main {
  width: min(1260px, calc(100% - 34px));
  margin: 0 auto;
  padding: 46px 0 74px;
}

.cr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--cr-line);
}

.cr-hero > div:first-child,
.cr-hero-side,
.cr-week-picker {
  min-width: 0;
}

.cr-hero-side {
  display: grid;
  gap: 28px;
  align-self: stretch;
  align-content: center;
}

.cr-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--cr-ink) !important;
  background: var(--cr-yellow);
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.cr-hero h1 {
  max-width: 800px;
  margin: 14px 0 12px;
  font-family: "Bebas Neue", "Poppins", Arial, sans-serif;
  font-size: clamp(62px, 8.2vw, 122px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.cr-hero h1 strong {
  display: inline-block;
  font-family: inherit;
  font-weight: 900;
}

.cr-chart-hero h1 {
  line-height: 0.82;
}

.cr-chart-hero .cr-title-light {
  display: inline-block;
  font-weight: 400;
  transform: scaleX(0.94);
  transform-origin: left bottom;
}

.cr-independent-hero h1 {
  max-width: 1100px;
  font-size: clamp(56px, 7.4vw, 112px);
}

.cr-independent-hero .cr-title-yellow {
  color: var(--cr-yellow);
  font-weight: 400;
}

.cr-hero p {
  margin: 0;
  color: #363636;
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 850;
  line-height: 1.2;
}

.cr-rd-hero {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cr-week-picker {
  display: grid;
  gap: 9px;
  padding: 18px 0 0;
  border-top: 5px solid var(--cr-yellow);
  color: #333333;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-week-picker select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  color: var(--cr-ink);
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  font: inherit;
  font-size: 13px;
  text-transform: none;
}

.cr-monitor-stats {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 5px solid var(--cr-yellow);
}

.cr-monitor-stats > span {
  color: #9aa3af;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.cr-monitor-stats dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.cr-monitor-stats div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cr-line);
}

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

.cr-monitor-stats dt {
  color: #9aa3af;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-monitor-stats dd {
  margin: 0;
  color: #5b6472;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.cr-chart-list {
  display: grid;
  gap: 0;
}

.cr-chart-head,
.cr-chart-row {
  display: grid;
  grid-template-columns: 72px 88px minmax(0, 1fr) 88px 86px 86px 92px 48px;
  gap: 16px;
  align-items: center;
}

.cr-chart-head {
  min-height: 38px;
  padding: 0 0 0 0;
  color: var(--cr-muted);
  border-bottom: 2px solid var(--cr-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-chart-row {
  min-height: 104px;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--cr-line);
}

.cr-chart-row.is-first {
  min-height: 116px;
  border-bottom: 2px solid var(--cr-yellow);
}

.cr-rank {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  color: var(--cr-ink);
  font-family: "Bebas Neue", "Poppins", Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.cr-rank span {
  display: inline-grid;
  grid-template-columns: 7px auto;
  align-items: center;
  gap: 14px;
  line-height: 1;
}

.cr-rank span::before {
  content: "";
  display: block;
  width: 7px;
  height: 0.72em;
  background: var(--cr-yellow);
  border-radius: 999px;
  transform: none;
}

.cr-chart-row.is-first .cr-rank {
  font-size: 52px;
}

.cr-cover,
.cr-rd-cover,
.cr-rd-detail-cover {
  overflow: hidden;
  background: #111111;
  border-radius: 4px;
}

.cr-cover {
  width: 76px;
  aspect-ratio: 1;
}

.cr-chart-row.is-first .cr-cover {
  width: 88px;
}

.cr-cover-img,
.cr-rd-img,
.cr-rd-detail-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cr-cover-empty {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  align-items: center;
  padding: 28%;
}

.cr-cover-empty span {
  display: block;
  height: 44%;
  background: var(--cr-yellow);
  border-radius: 999px;
}

.cr-track {
  display: block;
  min-width: 0;
  overflow: hidden;
}

.cr-track h2 {
  margin: 0;
  overflow: hidden;
  overflow-wrap: normal;
  color: var(--cr-ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 900;
  line-height: 1.02;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  word-break: normal;
}

.cr-track p {
  margin: 1px 0 0;
  overflow: hidden;
  color: #444444;
  font-size: 15px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}

.cr-track-label {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: #a8a8a8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  word-break: normal;
}

.cr-chart-row .cr-track,
.cr-chart-row .cr-track h2,
.cr-chart-row .cr-track p,
.cr-chart-row .cr-track-label {
  max-width: 100%;
}

.cr-chart-row .cr-track h2,
.cr-chart-row .cr-track p,
.cr-chart-row .cr-track-label {
  overflow: hidden !important;
  overflow-wrap: normal !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-break: normal !important;
}

.cr-move,
.cr-prev,
.cr-peak,
.cr-spin,
.cr-share {
  display: flex;
  min-height: 76px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.cr-head-metrics,
.cr-metrics {
  display: contents;
}

.cr-move span {
  display: block;
  color: var(--cr-muted);
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}

.cr-move small {
  display: block;
  margin-top: 2px;
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
}

.cr-move.is-sale,
.cr-move.is-nuovo {
  color: var(--cr-green);
}

.cr-move.is-scende {
  color: var(--cr-red);
}

.cr-move.is-stabile {
  color: #e58b2d;
}

.cr-independent-badge span {
  display: inline-flex;
  min-width: 42px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #1f1f1f;
  background: var(--cr-yellow);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
}

.cr-prev span,
.cr-peak span,
.cr-spin span {
  display: block;
  color: var(--cr-muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-prev strong,
.cr-peak strong,
.cr-spin strong {
  display: block;
  margin-top: 4px;
  color: var(--cr-ink);
  font-size: 18px;
  font-weight: 900;
}

.cr-share-btn {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--cr-ink);
  background: #ffffff;
  border: 1px solid var(--cr-line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.cr-share-btn:hover {
  background: #fff7c5;
  border-color: var(--cr-yellow);
  transform: translateY(-1px);
}

.cr-share-btn svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform: translateX(-1px);
}

.cr-share-modal[hidden] {
  display: none;
}

.cr-share-open {
  overflow: hidden;
}

.cr-share-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.44);
}

.cr-share-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  background: #ffffff;
  border: 2px solid var(--cr-yellow);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.cr-share-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--cr-ink);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.cr-share-dialog > .cr-kicker {
  margin-bottom: 14px;
}

.cr-share-dialog h2 {
  margin: 0 42px 8px 0;
  font-family: "Bebas Neue", "Poppins", Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.cr-share-dialog p {
  margin: 0;
  color: #444444;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.cr-share-track {
  display: grid;
  gap: 2px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--cr-line);
  border-bottom: 1px solid var(--cr-line);
}

.cr-share-track strong {
  font-size: 20px;
  font-weight: 900;
}

.cr-share-track span {
  color: #555555;
  font-size: 14px;
  font-weight: 800;
}

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

.cr-share-choice {
  display: grid;
  min-height: 156px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px;
  background: #fafafa;
  border: 1px solid var(--cr-line);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.cr-share-choice:hover {
  background: #fffdf0;
  border-color: var(--cr-yellow);
  transform: translateY(-1px);
}

.cr-share-choice-icon {
  display: block;
  background: #ffffff;
  border: 3px solid var(--cr-ink);
  border-radius: 6px;
  box-shadow: inset 0 -9px 0 #fff2a3;
}

.cr-share-choice-icon.is-post {
  width: 42px;
  height: 52px;
}

.cr-share-choice-icon.is-story {
  width: 34px;
  height: 60px;
}

.cr-share-choice strong {
  font-family: "Bebas Neue", "Poppins", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.cr-share-choice small {
  color: var(--cr-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-tabs {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 6px;
  width: max-content;
  max-width: 100%;
  justify-self: end;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--cr-line);
  border-radius: 999px;
}

.cr-tabs a {
  display: inline-flex;
  min-width: 154px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cr-tabs a.is-active {
  background: var(--cr-yellow);
}

.cr-tabs a:hover,
.cr-tabs a:focus-visible {
  background: #fff2a3;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.cr-tabs a.is-active:hover,
.cr-tabs a.is-active:focus-visible {
  background: #f0be00;
}

.cr-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin: -8px 0 24px;
}

.cr-pager a,
.cr-hero-link,
.cr-back,
.cr-rd-link,
.cr-press-box a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--cr-ink);
  background: var(--cr-yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cr-pager a:hover,
.cr-pager a:focus-visible,
.cr-hero-link:hover,
.cr-hero-link:focus-visible,
.cr-back:hover,
.cr-back:focus-visible,
.cr-rd-link:hover,
.cr-rd-link:focus-visible,
.cr-press-box a:hover,
.cr-press-box a:focus-visible {
  background: var(--cr-ink);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.cr-rd-list,
.cr-rd-day {
  display: grid;
  gap: 22px;
}

.cr-rd-list {
  gap: 40px;
}

.cr-rd-day header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px solid var(--cr-ink);
}

.cr-rd-day h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.cr-rd-day header span {
  display: inline-flex;
  min-width: 34px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--cr-ink);
  background: var(--cr-yellow);
  border-radius: 999px;
  font-weight: 900;
}

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

.cr-rd-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
}

.cr-rd-cover {
  display: block;
  aspect-ratio: 1;
}

.cr-rd-card > div {
  min-width: 0;
  padding: 16px;
}

.cr-rd-card time,
.cr-rd-detail time {
  color: var(--cr-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-rd-card h3 {
  min-width: 0;
  margin: 7px 0 5px;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cr-rd-card h3 a {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cr-rd-card p,
.cr-rd-card small {
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #424242;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cr-rd-card small {
  margin-top: 4px;
  color: var(--cr-muted);
  font-size: 12px;
}

.cr-rd-link {
  border-radius: 0;
}

.cr-rd-detail {
  display: grid;
  gap: 24px;
}

.cr-rd-detail-hero {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 56px);
  color: #ffffff;
  background: #111111;
  border-radius: var(--cr-radius);
}

.cr-rd-detail-cover {
  aspect-ratio: 1;
}

.cr-rd-detail-hero .cr-kicker {
  margin-right: 12px;
}

.cr-rd-detail-hero time {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  opacity: 0.9;
}

.cr-rd-detail h1 {
  margin: 10px 0 6px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
}

.cr-rd-detail h2 {
  margin: 0 0 10px;
  color: var(--cr-yellow);
  font-size: clamp(22px, 3vw, 34px);
}

.cr-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cr-socials a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  color: var(--cr-ink);
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.cr-socials a:hover,
.cr-socials a:focus-visible {
  background: var(--cr-yellow);
  transform: translateY(-1px);
}

.cr-release,
.cr-legal {
  padding: clamp(22px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
}

.cr-release h2,
.cr-legal h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
}

.cr-copy {
  color: #3d3d3d;
  font-size: 17px;
  line-height: 1.7;
}

.cr-copy img,
.cr-copy iframe {
  max-width: 100%;
}

.cr-press-box,
.cr-legal aside,
.cr-cookie-preferences {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--cr-soft);
  border-radius: var(--cr-radius);
}

.cr-press-box {
  margin-top: 24px;
}

.cr-press-box span,
.cr-updated {
  color: var(--cr-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-press-box div,
.cr-cookie-preferences div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cr-legal {
  display: grid;
  gap: 24px;
}

.cr-legal section {
  border-top: 1px solid var(--cr-line);
  padding-top: 20px;
}

.cr-legal p {
  margin: 0;
  color: #3d3d3d;
  line-height: 1.75;
}

.cr-contact-page {
  display: grid;
  gap: 34px;
}

.cr-contact-head {
  display: grid;
  gap: 12px;
  max-width: 840px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--cr-line);
  justify-items: start;
}

.cr-contact-head .cr-kicker {
  width: auto;
  max-width: max-content;
}

.cr-contact-head h1 {
  margin: 0;
  font-family: "Bebas Neue", "Poppins", Arial, sans-serif;
  font-size: clamp(76px, 11vw, 156px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.cr-contact-head p:not(.cr-kicker) {
  max-width: 760px;
  margin: 0;
  color: #3d3d3d;
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.28;
}

.cr-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.cr-contact-copy {
  display: grid;
  gap: 14px;
  padding-top: 12px;
  border-top: 6px solid var(--cr-yellow);
}

.cr-contact-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", "Poppins", Arial, sans-serif;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.cr-contact-copy p {
  margin: 0;
  color: #444444;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.cr-contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
}

.cr-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cr-contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cr-contact-form label > span {
  color: var(--cr-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cr-contact-form input,
.cr-contact-form select,
.cr-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--cr-ink);
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.cr-contact-form textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
  line-height: 1.5;
}

.cr-contact-form input:focus,
.cr-contact-form select:focus,
.cr-contact-form textarea:focus {
  border-color: var(--cr-ink);
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.28);
}

.cr-contact-email-grid {
  position: relative;
}

.cr-contact-field-note {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: var(--cr-red);
  font-size: 13px;
  font-weight: 800;
}

.cr-contact-email-grid.is-invalid input[data-cr-contact-email-confirm] {
  border-color: var(--cr-red);
}

.cr-contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cr-contact-submit {
  appearance: none;
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--cr-ink);
  background: var(--cr-yellow);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cr-contact-submit:hover,
.cr-contact-submit:focus-visible {
  color: #ffffff;
  background: var(--cr-ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.cr-contact-alert {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.cr-contact-alert strong {
  font-size: 15px;
}

.cr-contact-alert ul {
  margin: 4px 0 0;
  padding-left: 18px;
}

.cr-contact-alert.is-success {
  color: #0d5f34;
  background: #eaf8f0;
  border: 1px solid rgba(22, 152, 90, 0.25);
}

.cr-contact-alert.is-error {
  color: #8f2731;
  background: #fff0f1;
  border: 1px solid rgba(216, 78, 88, 0.25);
}

.cr-empty {
  margin: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
  color: var(--cr-muted);
  font-weight: 800;
}

.cr-footer {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(280px, 1fr) minmax(240px, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: #ffffff;
  background: #333333;
  border-top: 0;
}

.cr-footer-logo,
.cr-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cr-footer-logo {
  justify-content: flex-start;
}

.cr-footer-links {
  justify-content: center;
  text-align: center;
}

.cr-footer-logo > img {
  width: 180px;
  max-width: 42vw;
}

.cr-logo-wrap.is-footer .cr-logo-mark {
  width: 58px;
  height: 45px;
}

.cr-logo-wrap.is-footer .cr-logo-type {
  font-size: 22px;
}

.cr-footer-copy {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  justify-self: end;
}

.cr-footer a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  transition: color 0.16s ease;
}

.cr-footer a:hover,
.cr-footer a:focus-visible {
  color: var(--cr-yellow);
}

.cr-cookie {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 260px);
  gap: 22px;
  width: min(760px, calc(100% - 44px));
  padding: 22px 24px;
  background: #ffffff;
  border: 2px solid var(--cr-yellow);
  border-radius: var(--cr-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.cr-cookie.is-hidden {
  display: none;
}

.cr-cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  color: var(--cr-ink);
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

.cr-cookie-copy {
  max-width: 440px;
  padding-right: 0;
}

.cr-cookie-copy strong {
  display: block;
  padding-right: 36px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
}

.cr-cookie-copy p {
  margin: 10px 0 12px;
  color: #363636;
  font-size: 15px;
  line-height: 1.48;
}

.cr-cookie-copy nav,
.cr-cookie-actions,
.cr-cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cr-cookie-copy a {
  color: var(--cr-ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  transition: color 0.16s ease;
}

.cr-cookie-copy a:hover,
.cr-cookie-copy a:focus-visible {
  color: #8a6c00;
}

.cr-cookie-actions {
  display: grid;
  align-content: center;
  justify-content: stretch;
}

.cr-cookie-options {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cr-line);
}

.cr-cookie-options[hidden] {
  display: none;
}

.cr-btn {
  appearance: none;
  color: var(--cr-ink);
  -webkit-text-fill-color: var(--cr-ink);
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(9, 9, 9, 0.12);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cr-btn:hover,
.cr-btn:focus-visible {
  border-color: var(--cr-ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.cr-cookie-actions .cr-btn {
  width: 100%;
}

.cr-btn.is-primary {
  background: var(--cr-yellow);
  border-color: var(--cr-yellow);
}

.cr-btn.is-primary:hover,
.cr-btn.is-primary:focus-visible {
  background: #f0be00;
}

.cr-btn.is-soft {
  background: #fff7c5;
}

.cr-btn.is-soft:hover,
.cr-btn.is-soft:focus-visible {
  background: #ffe56b;
}

.cr-btn.is-ghost {
  background: #ffffff;
}

.cr-btn.is-ghost:hover,
.cr-btn.is-ghost:focus-visible {
  background: #f5f5f5;
}

@media (max-width: 1040px) {
  .cr-chart-head,
  .cr-chart-row {
    grid-template-columns: 62px 88px minmax(0, 1fr) 74px 68px 68px 78px 42px;
    gap: 12px;
  }

  .cr-move span {
    font-size: 28px;
  }

  .cr-move.is-nuovo span {
    font-size: 18px;
  }
}

@media (max-width: 820px) {
  .cr-header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 70px;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
  }

  .cr-brand {
    grid-column: 2;
    justify-content: center;
  }

  .cr-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #ffffff;
    border: 1px solid var(--cr-line);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
  }

  .cr-menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--cr-ink);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .cr-header.is-menu-open .cr-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .cr-header.is-menu-open .cr-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .cr-header.is-menu-open .cr-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cr-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--cr-line);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  }

  .cr-header.is-menu-open .cr-nav {
    display: grid;
  }

  .cr-nav a {
    min-height: 46px;
    justify-content: center;
    border-radius: 10px;
  }

  .cr-nav a.is-active {
    background: #fff5b8;
  }

  .cr-nav a::after {
    display: none;
  }

  .cr-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cr-footer-links {
    order: 1;
    justify-content: center;
  }

  .cr-footer-logo {
    order: 2;
    justify-content: center;
  }

  .cr-footer-copy {
    order: 3;
    justify-self: center;
    text-align: center;
  }

  .cr-hero,
  .cr-rd-detail-hero {
    grid-template-columns: 1fr;
  }

  .cr-hero-side {
    gap: 18px;
    align-content: start;
  }

  .cr-monitor-stats > span {
    text-align: left;
  }

  .cr-monitor-stats dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .cr-monitor-stats div {
    display: block;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .cr-monitor-stats dd {
    margin-top: 3px;
    font-size: 22px;
  }

  .cr-contact-layout {
    grid-template-columns: 1fr;
  }

  .cr-contact-copy {
    max-width: 680px;
  }

  .cr-chart-head {
    display: none;
  }

  .cr-chart-row,
  .cr-chart-row.is-first {
    grid-template-columns: 60px 82px repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    min-height: 0;
    padding: 14px 0 16px;
  }

  .cr-track {
    grid-column: 3 / 5;
    grid-row: 1;
  }

  .cr-rank,
  .cr-chart-row.is-first .cr-rank {
    font-size: 32px;
    grid-column: 1 / 2;
    grid-row: 1;
    align-self: stretch;
    justify-content: center;
  }

  .cr-rank span::before {
    display: none;
  }

  .cr-rank span {
    display: inline-flex;
    width: 54px;
    height: 82px;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    text-align: center;
    background: #fff7c5;
    border-left: 6px solid var(--cr-yellow);
    border-radius: 10px;
  }

  .cr-cover,
  .cr-chart-row.is-first .cr-cover {
    grid-column: 2 / 3;
    grid-row: 1;
    width: 82px;
  }

  .cr-move {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .cr-metrics {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 0.9fr 1fr 1fr 1fr 52px;
    gap: 10px;
  }

  .cr-prev {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .cr-peak {
    grid-column: 3 / 4;
    grid-row: 2;
  }

  .cr-spin {
    grid-column: 4 / 5;
    grid-row: 2;
  }

  .cr-share {
    grid-column: 5 / 6;
    grid-row: 2;
  }

  .cr-move,
  .cr-prev,
  .cr-peak,
  .cr-spin,
  .cr-share {
    min-height: 58px;
    padding: 7px 5px;
    background: #fafafa;
    border: 1px solid var(--cr-line);
    border-radius: 10px;
  }

  .cr-share-btn {
    width: 36px;
    height: 36px;
    border-color: transparent;
  }

  .cr-rd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr-cookie {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: auto;
    max-height: calc(100dvh - 28px);
    gap: 14px;
    overflow: auto;
    padding: 18px;
  }

  .cr-cookie-actions {
    grid-template-columns: 1fr;
  }

  .cr-contact-grid {
    grid-template-columns: 1fr;
  }

  .cr-contact-form {
    padding: 18px;
  }

  .cr-contact-submit {
    width: 100%;
  }

  .cr-cookie-copy {
    max-width: none;
  }

  .cr-cookie-copy strong {
    font-size: 20px;
  }

  .cr-cookie-copy p {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  .cr-main {
    width: calc(100% - 22px);
    padding-top: 24px;
  }

  .cr-logo-img {
    width: min(190px, 60vw);
  }

  .cr-nav a {
    font-size: 12px;
  }

  .cr-hero {
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .cr-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(34px, 11.5vw, 43px);
    line-height: 0.94;
    text-wrap: balance;
  }

  .cr-hero p {
    font-size: 15px;
  }

  .cr-week-picker {
    padding-top: 14px;
  }

  .cr-monitor-stats {
    gap: 10px;
    padding-top: 14px;
  }

  .cr-monitor-stats dl {
    gap: 8px;
  }

  .cr-monitor-stats dt {
    font-size: 10px;
  }

  .cr-monitor-stats dd {
    font-size: 18px;
  }

  .cr-chart-row,
  .cr-chart-row.is-first {
    grid-template-columns: 54px 76px repeat(2, minmax(0, 1fr));
    gap: 9px 10px;
    padding: 13px 0 14px;
  }

  .cr-track {
    grid-column: 3 / 5;
  }

  .cr-cover,
  .cr-chart-row.is-first .cr-cover {
    width: 76px;
  }

  .cr-rank span {
    width: 48px;
    height: 76px;
  }

  .cr-track h2 {
    font-size: 21px;
  }

  .cr-track p {
    font-size: 13px;
    margin-top: 1px;
  }

  .cr-track-label {
    font-size: 8px;
  }

  .cr-move span {
    font-size: 24px;
  }

  .cr-metrics {
    gap: 8px;
  }

  .cr-share-btn {
    width: 32px;
    height: 32px;
  }

  .cr-share-btn svg {
    width: 16px;
    height: 16px;
  }

  .cr-move.is-nuovo span {
    font-size: 16px;
  }

  .cr-independent-badge span {
    min-width: 38px;
    min-height: 24px;
    font-size: 11px;
  }

  .cr-prev span,
  .cr-peak span,
  .cr-spin span {
    font-size: 9px;
  }

  .cr-prev strong,
  .cr-peak strong,
  .cr-spin strong {
    font-size: 15px;
  }

  .cr-rd-grid {
    grid-template-columns: 1fr;
  }

  .cr-share-dialog {
    padding: 22px;
  }

  .cr-share-dialog h2 {
    font-size: 34px;
  }

  .cr-share-options {
    grid-template-columns: 1fr;
  }

  .cr-tabs {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: var(--cr-radius);
  }

  .cr-tabs a {
    min-width: 0;
    padding: 0 8px;
    font-size: 12px;
  }

  .cr-rd-detail-hero,
  .cr-release,
  .cr-legal {
    padding: 18px;
  }

  .cr-cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 16px;
  }

  .cr-cookie-actions,
  .cr-cookie-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cr-cookie-actions .cr-btn,
  .cr-cookie-options .cr-btn {
    width: 100%;
  }

  .cr-cookie-copy strong {
    font-size: 19px;
  }

  .cr-cookie-copy p {
    margin: 8px 0 10px;
    font-size: 13px;
  }

  .cr-cookie-copy a {
    font-size: 12px;
  }

  .cr-btn {
    min-height: 42px;
  }
}
.cr-chart-head span:nth-child(n + 4) {
  justify-self: center;
  width: 100%;
  text-align: center;
}

.cr-head-metrics span {
  justify-self: center;
  width: 100%;
  text-align: center;
}
