.page-products {
  --page-gold-line: rgba(232, 184, 75, 0.18);
  --page-deep-bg: #0f0f0f;
  overflow: hidden;
}

.page-products .breadcrumb {
  padding: 24px 0 8px;
}

.page-products .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.page-products .breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.page-products .breadcrumb a:hover {
  color: var(--color-gold);
}

.page-products .breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: rgba(179, 169, 138, 0.55);
}

.page-products .page-head {
  position: relative;
  padding: 42px 0 54px;
  border-top: 1px solid var(--page-gold-line);
  overflow: hidden;
}

.page-products .page-head::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .page-head::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 18px;
  width: 140px;
  height: 36px;
  background: linear-gradient(135deg, transparent 46%, rgba(232, 184, 75, 0.3) 48%, rgba(192, 57, 43, 0.3) 52%, transparent 54%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  pointer-events: none;
  opacity: 0.7;
}

.page-products .section-kicker {
  font-family: var(--font-impact);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 10px;
}

.page-products .page-title {
  font-family: var(--font-impact);
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 0.95;
  margin: 0 0 18px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-products .page-intro {
  max-width: 640px;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

.page-products .section {
  padding: 54px 0;
}

.page-products .section-head {
  margin-bottom: 28px;
}

.page-products .section h2 {
  font-family: var(--font-impact);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-products .section .lede {
  max-width: 680px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 0.9875rem;
}

.page-products .media-frame {
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid Var(--page-gold-line);
}

.page-products .media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .layer-section {
  position: relative;
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.05) 0%, transparent 45%, rgba(192, 57, 43, 0.04) 100%);
}

.page-products .layer-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .layer-media {
  margin-bottom: 30px;
  max-height: 440px;
}

.page-products .layer-grid {
  display: grid;
  gap: 20px;
}

.page-products .service-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--page-gold-line);
  padding: 28px 22px 24px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-products .service-card:hover {
  border-color: rgba(232, 184, 75, 0.5);
  transform: translateY(-4px);
}

.page-products .service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-products .service-card-index {
  font-family: var(--font-impact);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.5;
}

.page-products .service-card h3 {
  font-family: var(--font-impact);
  font-size: 1.55rem;
  margin: 0;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.page-products .service-card p {
  margin: 16px 0 0;
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.page-products .service-details {
  margin-top: 18px;
  border-top: 1px dashed rgba(232, 184, 75, 0.3);
  padding-top: 14px;
}

.page-products .service-details summary {
  cursor: pointer;
  list-style: none;
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.2s var(--ease);
}

.page-products .service-details summary:hover {
  color: var(--color-gold-light);
}

.page-products .service-details summary::-webkit-details-marker {
  display: none;
}

.page-products .service-details ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.page-products .service-details li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.5;
}

.page-products .service-details li:last-child {
  border-bottom: 0;
}

.page-products .service-details li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 9px;
  height: 9px;
  background: var(--color-red);
  transform: rotate(45deg);
}

.page-products .platform-section {
  position: relative;
  border-top: 1px solid var(--page-gold-line);
  border-bottom: 1px solid var(--page-gold-line);
  background: linear-gradient(120deg, rgba(192, 57, 43, 0.07) 0%, transparent 45%, rgba(232, 184, 75, 0.05) 100%);
}

.page-products .platform-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 30%, var(--color-red) 70%, transparent);
  opacity: 0.4;
}

.page-products .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.page-products .filter-btn {
  border: 1px solid rgba(232, 184, 75, 0.35);
  background: rgba(10, 10, 10, 0.72);
  color: var(--color-text-secondary);
  padding: 9px 18px;
  cursor: pointer;
  font-family: var(--font-impact);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}

.page-products .filter-btn:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.page-products .filter-btn.is-active {
  background: var(--color-gold);
  color: #0a0a0a;
  border-color: var(--color-gold);
}

.page-products .platform-grid {
  display: grid;
  gap: 22px;
}

.page-products .platform-card {
  display: flex;
  flex-direction: column;
  background: var(--gradient-card);
  border: 1px solid var(--page-gold-line);
  overflow: hidden;
}

.page-products .platform-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--page-gold-line);
}

.page-products .platform-copy {
  padding: 24px 20px 22px;
}

.page-products .platform-copy h3 {
  font-family: var(--font-impact);
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.page-products .platform-copy p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin: 0;
}

.page-products .platform-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.page-products .platform-points li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.page-products .platform-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 17px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), rgba(192, 57, 43, 0.2));
}

.page-products .desktop-track,
.page-products .ios-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-products .track-step {
  flex: 1 1 120px;
  background: rgba(232, 184, 75, 0.05);
  border: 1px solid rgba(232, 184, 75, 0.2);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-products .track-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-impact);
  font-size: 1rem;
  margin-bottom: 8px;
}

.page-products .track-step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.page-products .track-line {
  display: none;
}

.page-products .schedule-section {
  background: rgba(20, 20, 20, 0.6);
  position: relative;
}

.page-products .schedule-grid {
  display: grid;
  gap: 12px;
}

.page-products .schedule-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 16px 18px;
  background: var(--color-panel);
  border-left: 3px solid var(--color-gold);
  transition: background 0.2s var(--ease);
}

.page-products .schedule-row:hover {
  background: #1d1d1d;
}

.page-products .schedule-date {
  flex-basis: 100%;
  font-family: var(--font-impact);
  font-size: 0.875rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-products .schedule-game {
  font-weight: 700;
  color: var(--color-text);
}

.page-products .schedule-event {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.page-products .schedule-tag {
  margin-left: auto;
  font-size: 0.75rem;
  white-space: nowrap;
}

.page-products .schedule-more {
  margin-top: 28px;
}

.page-products .freshness-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--gradient-hero);
  border: 1px solid var(--page-gold-line);
  padding: 24px 20px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.page-products .freshness-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .freshness-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.page-products .freshness-copy p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 0.9375rem;
  margin: 0;
}

.page-products .freshness-media {
  aspect-ratio: 1;
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 75, 0.24);
}

.page-products .freshness-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-products .freshness-stats li {
  background: rgba(232, 184, 75, 0.07);
  border: 1px solid rgba(232, 184, 75, 0.18);
  padding: 16px 14px;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.4;
}

.page-products .freshness-stats strong {
  display: block;
  font-family: var(--font-impact);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.page-products .download-section {
  position: relative;
}

.page-products .download-wrap {
  display: flex;
  flex-direction: column;
}

.page-products .download-media {
  min-height: 260px;
  overflow: hidden;
}

.page-products .download-card {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: -64px 12px 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.97), rgba(12, 12, 12, 0.92));
  border: 1px solid rgba(232, 184, 75, 0.34);
  border-left: 4px solid var(--color-gold);
  padding: 28px 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-products .download-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 12px;
  color: var(--color-text);
  font-family: var(--font-impact);
  text-transform: uppercase;
}

.page-products .download-card p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 0.9375rem;
  margin: 0 0 20px;
}

.page-products .download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .download-actions .btn-gold {
  position: relative;
  overflow: hidden;
}

.page-products .download-actions .btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-140%) skewX(-18deg);
  animation: pageProductsBtnShine 3.2s linear infinite;
}

@keyframes pageProductsBtnShine {
  0% {
    transform: translateX(-140%) skewX(-18deg);
  }

  55%,
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

.page-products .support-section {
  background: radial-gradient(ellipse at center, rgba(232, 184, 75, 0.07) 0%, transparent 70%);
}

.page-products .support-panel {
  text-align: center;
  padding: 48px 18px;
  border-top: 1px solid var(--page-gold-line);
  border-bottom: 1px solid var(--page-gold-line);
}

.page-products .support-panel h2 {
  margin-bottom: 12px;
}

.page-products .support-panel p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.page-products .support-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  text-decoration: none;
  font-family: var(--font-impact);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.page-products .btn-gold {
  background: linear-gradient(135deg, #a77b24 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
  color: #0a0a0a;
  border-color: transparent;
}

.page-products .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 184, 75, 0.25);
}

.page-products .btn-red {
  background: linear-gradient(135deg, #8a2418 0%, var(--color-red) 50%, var(--color-red-light) 100%);
  color: #fff;
}

.page-products .btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.25);
}

.page-products .tag {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-products .tag-gold {
  background: rgba(232, 184, 75, 0.12);
  color: var(--color-gold);
  border: 1px solid rgba(232, 184, 75, 0.28);
}

.page-products .tag-red {
  background: rgba(192, 57, 43, 0.14);
  color: #f0a39b;
  border: 1px solid rgba(192, 57, 43, 0.4);
}

@media (min-width: 640px) {
  .page-products .page-head {
    padding: 54px 0 64px;
  }

  .page-products .layer-media {
    max-height: 480px;
  }

  .page-products .desktop-track,
  .page-products .ios-track {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .page-products .track-line {
    display: block;
    flex: 0 0 auto;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red), var(--color-gold));
    align-self: center;
  }

  .page-products .track-step {
    flex: 1 1 100px;
  }

  .page-products .schedule-row {
    flex-wrap: nowrap;
  }

  .page-products .schedule-date {
    flex-basis: 120px;
  }

  .page-products .schedule-game {
    flex-basis: 140px;
  }

  .page-products .schedule-event {
    flex: 1;
  }

  .page-products .freshness-panel {
    padding: 30px 26px;
  }

  .page-products .freshness-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .support-actions {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .page-products .layer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .page-products .platform-media {
    aspect-ratio: 16 / 8;
  }

  .page-products .platform-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .page-products .platform-copy {
    padding: 26px 24px;
  }

  .page-products .freshness-panel {
    display: grid;
    grid-template-columns: 1fr 260px;
    grid-template-areas:
      "copy media"
      "stats media";
    gap: 24px 32px;
    padding: 38px 34px;
  }

  .page-products .freshness-copy {
    grid-area: copy;
    align-self: end;
  }

  .page-products .freshness-media {
    grid-area: media;
    margin: 0;
    align-self: stretch;
    max-width: none;
    height: 100%;
  }

  .page-products .freshness-stats {
    grid-area: stats;
    grid-template-columns: 1fr 1fr;
    align-self: start;
  }

  .page-products .download-wrap {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-products .download-media {
    flex: 0 0 62%;
    min-height: 420px;
  }

  .page-products .download-card {
    flex: 0 0 46%;
    margin: 0 0 32px -7%;
    max-width: none;
  }

  .page-products .support-panel {
    padding: 60px 40px;
  }
}

@media (min-width: 1200px) {
  .page-products .section {
    padding: 72px 0;
  }

  .page-products .page-head {
    padding: 68px 0 80px;
  }

  .page-products .page-intro {
    max-width: 720px;
    font-size: 1.125rem;
  }

  .page-products .layer-media {
    max-height: 520px;
  }

  .page-products .download-card {
    flex-basis: 40%;
  }
}
