.page-home {
  --home-plain: #F5EFE0;
  --home-ink: #101820;
  --home-gold: #D4A845;
  --home-crimson: #C0392B;
  --home-teal: #1A3A4A;
  --home-pearl: #E8E3D8;
  --home-white: #FFFFFF;
  --home-amber: #E67E22;
  --home-rail-width: 280px;
  --home-content-max: 1200px;
  --home-font-head: "Oswald", "Bebas Neue", "Arial Narrow", "Roboto Condensed", "DIN Condensed", "Microsoft YaHei", sans-serif;
  --home-font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: "Roboto Mono", "SFMono-Regular", "Consolas", "Courier New", monospace;
  background: var(--home-plain);
  color: var(--home-ink);
  font-family: var(--home-font-body);
  max-width: 100%;
  overflow-x: hidden;
}

.page-home .container {
  width: min(100% - 48px, var(--home-content-max));
  margin-inline: auto;
}

.page-home .page-section {
  padding-block: 64px;
}

.page-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--home-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-crimson);
  margin-bottom: 8px;
}

.page-home .section-title {
  font-family: var(--home-font-head);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 2px solid var(--home-gold);
  border-radius: 0;
  background: linear-gradient(135deg, #E6C165 0%, var(--home-gold) 55%, #B8913A 100%);
  color: var(--home-ink);
  font-family: var(--home-font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.page-home .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.18);
  filter: brightness(1.06);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--home-ink);
  border-color: var(--home-teal);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-home .btn--ghost:hover {
  background: rgba(26, 58, 74, 0.08);
  box-shadow: none;
}

.page-home .cut-panel {
  border: 2px solid var(--home-ink);
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding: 24px;
}

.page-home .cut-panel--gold {
  border-color: var(--home-gold);
  background: linear-gradient(145deg, #FBF3DF 0%, #F5EFE0 60%, #EFE3C8 100%);
}

.page-home .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-amber);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.25);
  margin-right: 6px;
  vertical-align: 1px;
}

.page-home .hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(16, 24, 32, 0.12);
  padding-bottom: 16px;
}

.page-home .hp-section-more {
  font-family: var(--home-font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--home-teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.page-home .hp-section-more:hover {
  border-bottom-color: currentColor;
}

/* 首屏拼贴海报 */
.page-home .hp-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--home-ink);
  color: var(--home-white);
  overflow: hidden;
}

.page-home .hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.page-home .hp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92) 0%, rgba(16, 24, 32, 0.6) 45%, rgba(16, 24, 32, 0.3) 100%);
}

.page-home .hp-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--home-content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  padding-block: 80px;
}

.page-home .hp-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--home-font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--home-gold);
  margin-bottom: 14px;
}

.page-home .hp-hero__kicker::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--home-crimson);
}

.page-home .hp-hero__title {
  font-family: var(--home-font-head);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.page-home .hp-hero__lead {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.page-home .hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .hp-hero .btn {
  border-color: var(--home-gold);
}

.page-home .hp-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--home-white);
  background: transparent;
}

.page-home .hp-hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.page-home .hp-hero__badge {
  font-family: var(--home-font-head);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 16px 20px;
  border: 2px solid var(--home-gold);
  background: rgba(16, 24, 32, 0.6);
  color: var(--home-gold);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-home .hp-hero__badge span {
  font-size: 16px;
  margin-left: 4px;
}

.page-home .hp-hero__speed {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: var(--home-crimson);
  padding: 10px 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-home .hp-hero__speed-num {
  font-family: var(--home-font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-white);
}

.page-home .hp-hero__speed-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

/* 今日动态 */
.page-home .hp-news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-home .hp-news__item {
  position: relative;
  background: var(--home-white);
  border: 1px solid rgba(16, 24, 32, 0.12);
}

.page-home .hp-news__item--lead h3 {
  font-size: 24px;
}

.page-home .hp-news__item h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 12px 0 8px;
}

.page-home .hp-news__item h3 a {
  color: inherit;
  text-decoration: none;
}

.page-home .hp-news__item h3 a:hover {
  color: var(--home-gold);
}

.page-home .hp-news__item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.72);
  margin: 0;
}

.page-home .hp-news__tag {
  display: inline-block;
  font-family: var(--home-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--home-teal);
  color: var(--home-white);
  padding: 4px 10px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.page-home .hp-news__item--lead .hp-news__tag {
  background: var(--home-crimson);
}

.page-home .hp-news__meta {
  display: block;
  margin-top: 12px;
  font-family: var(--home-font-mono);
  font-size: 12px;
  color: rgba(16, 24, 32, 0.5);
}

/* 积分榜快照 */
.page-home .hp-standing {
  background: var(--home-pearl);
}

.page-home .hp-standing__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.page-home .hp-standing__panel {
  background: linear-gradient(150deg, #FDF8EB 0%, #F5EFE0 70%, #EADFC7 100%);
}

.page-home .hp-standing__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(212, 168, 69, 0.4);
  padding-bottom: 12px;
}

.page-home .hp-standing__league {
  font-family: var(--home-font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-home .hp-standing__status {
  font-size: 12px;
  color: var(--home-teal);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.page-home .hp-standing__table {
  width: 100%;
  font-family: var(--home-font-mono);
  font-size: 13px;
}

.page-home .hp-standing__row {
  display: grid;
  grid-template-columns: 32px 1fr 40px 1fr 72px 56px;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.06);
  transition: background 0.2s ease;
}

.page-home .hp-standing__row:hover {
  background: rgba(26, 58, 74, 0.06);
}

.page-home .hp-standing__row--head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(16, 24, 32, 0.5);
  text-transform: uppercase;
  border-bottom-width: 2px;
}

.page-home .hp-standing__row--head:hover {
  background: transparent;
}

.page-home .hp-standing__rank {
  font-weight: 700;
  color: var(--home-ink);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home .hp-standing__row:nth-child(2) .hp-standing__rank {
  background: var(--home-gold);
  color: var(--home-ink);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.page-home .hp-standing__row:nth-child(3) .hp-standing__rank {
  background: #B8C0C8;
  color: var(--home-ink);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.page-home .hp-standing__row:nth-child(4) .hp-standing__rank {
  background: #C9763A;
  color: var(--home-white);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.page-home .hp-standing__team {
  font-family: var(--home-font-body);
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .hp-standing__gd {
  font-weight: 500;
  color: rgba(16, 24, 32, 0.65);
}

.page-home .hp-standing__pts {
  font-family: var(--home-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--home-gold);
  text-align: right;
}

.page-home .hp-standing__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(16, 24, 32, 0.55);
  padding-top: 12px;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
}

.page-home .hp-standing__foot a {
  font-family: var(--home-font-mono);
  font-weight: 600;
  color: var(--home-crimson);
  text-decoration: none;
  white-space: nowrap;
}

.page-home .hp-standing__foot a:hover {
  text-decoration: underline;
}

.page-home .hp-standing__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .hp-standing__visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--home-ink);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  object-fit: cover;
}

.page-home .hp-standing__visual-caption {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.65);
  margin: 0;
  padding-inline: 4px;
}

/* 赛事日历 */
.page-home .hp-calendar__switch {
  display: flex;
  gap: 0;
  border: 1px solid var(--home-teal);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-home .hp-calendar__switch-item {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--home-font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home .hp-calendar__switch-item.is-active {
  background: var(--home-teal);
  color: var(--home-white);
}

.page-home .hp-calendar__switch-item:not(.is-active) {
  color: var(--home-teal);
  background: transparent;
}

.page-home .hp-calendar__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: stretch;
}

.page-home .hp-calendar__main {
  background: var(--home-white);
  border: 1px solid rgba(16, 24, 32, 0.14);
  min-height: 380px;
}

.page-home .hp-calendar__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--home-teal);
  margin-bottom: 16px;
}

.page-home .hp-calendar__day {
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 4px;
  color: rgba(16, 24, 32, 0.5);
  border-right: 1px solid var(--home-pearl);
}

.page-home .hp-calendar__day:last-child {
  border-right: none;
}

.page-home .hp-calendar__day b {
  display: block;
  font-family: var(--home-font-head);
  font-size: 24px;
  color: var(--home-ink);
}

.page-home .hp-calendar__day.is-today {
  background: var(--home-gold);
  color: var(--home-ink);
}

.page-home .hp-calendar__day.is-today b {
  color: var(--home-ink);
}

.page-home .hp-calendar__events {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(4, 60px);
  gap: 6px;
  padding: 4px 6px 12px;
}

.page-home .hp-calendar__event {
  grid-column: var(--col) / span 2;
  grid-row: var(--row) / span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6px 10px;
  background: var(--home-teal);
  color: var(--home-white);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-home .hp-calendar__event:hover {
  transform: translateY(-2px);
  background: var(--home-crimson);
}

.page-home .hp-calendar__event:nth-child(2n) {
  background: var(--home-crimson);
}

.page-home .hp-calendar__event:nth-child(2n):hover {
  background: var(--home-amber);
}

.page-home .hp-calendar__event-time {
  font-family: var(--home-font-mono);
  font-size: 11px;
  opacity: 0.8;
}

.page-home .hp-calendar__event-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home .hp-calendar__event-tag {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--home-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.18);
  padding: 1px 6px;
}

.page-home .hp-calendar__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--home-teal);
  color: var(--home-white);
  padding: 20px;
}

.page-home .hp-calendar__aside img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--home-gold);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-home .hp-calendar__aside-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .hp-calendar__aside-text strong {
  color: var(--home-gold);
}

.page-home .hp-calendar__aside .btn--ghost {
  border-color: var(--home-gold);
  color: var(--home-gold);
  align-self: flex-start;
}

.page-home .hp-calendar__aside .btn--ghost:hover {
  background: rgba(212, 168, 69, 0.12);
}

/* 新用户礼遇 */
.page-home .hp-offer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(140deg, #101820 0%, #1A3A4A 100%);
  border-color: var(--home-gold);
  color: var(--home-white);
  padding: 40px 36px;
  position: relative;
}

.page-home .hp-offer__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 6px;
  background: var(--home-crimson);
}

.page-home .hp-offer__inner .eyebrow {
  color: var(--home-gold);
}

.page-home .hp-offer__lead {
  font-size: 16px;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 480px;
}

.page-home .hp-offer__lead strong {
  color: var(--home-gold);
}

.page-home .hp-offer__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .hp-offer__point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 168, 69, 0.35);
  font-size: 13px;
  font-weight: 500;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-home .hp-offer__point-num {
  font-family: var(--home-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--home-gold);
}

.page-home .hp-offer .btn {
  border: none;
}

.page-home .hp-offer__visual img {
  width: 100%;
  height: auto;
  max-width: 360px;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

/* 数据控制台 */
.page-home .hp-console {
  background: var(--home-pearl);
}

.page-home .hp-console__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.page-home .hp-console__panel {
  background: var(--home-ink);
  color: var(--home-white);
  border-color: var(--home-teal);
  padding: 28px;
}

.page-home .hp-console__panel .console-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--home-font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.page-home .hp-console__panel .console-panel__status {
  font-size: 12px;
  color: var(--home-gold);
  display: inline-flex;
  align-items: center;
}

.page-home .hp-console__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.page-home .hp-console__stats .stat__value {
  font-family: var(--home-font-head);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--home-gold);
  display: block;
  margin-bottom: 8px;
}

.page-home .hp-console__stats .stat__label {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .hp-console__track {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--home-font-mono);
  font-size: 12px;
}

.page-home .hp-console__track-label {
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.page-home .hp-console__track-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  clip-path: polygon(2px 0, 100% 0, calc(100% - 2px) 100%, 0 100%);
}

.page-home .hp-console__track-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--home-gold), var(--home-crimson));
}

.page-home .hp-console__track-num {
  color: var(--home-gold);
  font-weight: 700;
}

.page-home .hp-console__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-home .hp-console__timeline li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0 12px 20px;
  border-left: 2px solid rgba(212, 168, 69, 0.4);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.page-home .hp-console__timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-gold);
  border: 2px solid var(--home-ink);
}

.page-home .hp-console__timeline li span {
  font-family: var(--home-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--home-gold);
  min-width: 52px;
}

/* 可信声明 */
.page-home .hp-trust {
  background: var(--home-ink);
  color: rgba(255, 255, 255, 0.8);
}

.page-home .hp-trust .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.page-home .hp-trust p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 460px;
}

.page-home .hp-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-home .hp-trust__links a {
  font-family: var(--home-font-mono);
  font-size: 14px;
  color: var(--home-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.page-home .hp-trust__links a:hover {
  border-bottom-color: currentColor;
}

/* 响应式 */
@media (max-width: 960px) {
  .page-home .hp-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 60px;
  }

  .page-home .hp-hero__side {
    flex-direction: row;
    align-items: center;
  }

  .page-home .hp-standing__wrap {
    grid-template-columns: 1fr;
  }

  .page-home .hp-calendar__grid {
    grid-template-columns: 1fr;
  }

  .page-home .hp-offer__inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .page-home .hp-offer__visual img {
    max-width: 300px;
  }

  .page-home .hp-console__grid {
    grid-template-columns: 1fr;
  }

  .page-home .hp-console__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .page-home .container {
    width: min(100% - 32px, var(--home-content-max));
  }

  .page-home .page-section {
    padding-block: 48px;
  }

  .page-home .hp-hero {
    min-height: 540px;
  }

  .page-home .hp-hero__title {
    font-size: 38px;
  }

  .page-home .hp-hero__badge {
    font-size: 36px;
  }

  .page-home .hp-news__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .hp-news__item--lead h3 {
    font-size: 20px;
  }

  .page-home .hp-section-head {
    flex-wrap: wrap;
  }

  .page-home .hp-standing__row {
    grid-template-columns: 28px 1fr 30px 1fr;
  }

  .page-home .hp-standing__row .hp-standing__gd,
  .page-home .hp-standing__row .hp-standing__pts {
    display: none;
  }

  .page-home .hp-standing__row--head {
    font-size: 11px;
  }

  .page-home .hp-calendar__switch {
    margin-top: 8px;
  }

  .page-home .hp-calendar__event-name {
    font-size: 11px;
  }

  .page-home .hp-console__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-home .hp-console__timeline li {
    padding-left: 14px;
  }

  .page-home .hp-offer__points {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .hp-trust .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.page-home {
  --col: var(--gold);
  --row: inherit;
}
