/* ==========================================================================
   MSI x Intel Gamer Days 2026 — namespaced campaign stylesheet
   ========================================================================== */
.igd26 *,
.igd26 *::before,
.igd26 *::after {
  box-sizing: border-box;
}

.igd26 {
  /* Brand palette sampled from the 2026 Intel Gamer Days key visual */
  --igd-ink: #06031a;
  --igd-night: #0d0733;
  --igd-purple-900: #1a0c57;
  --igd-purple-800: #2a1179;
  --igd-purple-700: #3c1ca8;
  --igd-purple-500: #5b2be0;
  --igd-violet: #8b3bef;

  --igd-red: #e8112d; /* MSI "Shop Now" red from the KV */
  --igd-red-hi: #ff2942;
  --igd-red-lo: #b00c21;

  --igd-intel: #0071c5;
  --igd-cyan: #29c5ff;
  --igd-magenta: #ff2e9a;
  --igd-lime: #b6e62a;
  --igd-amber: #ffb400;

  --igd-white: #ffffff;
  --igd-mist: #d6d0f0;
  --igd-muted: #9a92c4;
  --igd-line: rgba(255, 255, 255, 0.14);
  --igd-line-soft: rgba(255, 255, 255, 0.08);

  --igd-card: rgba(255, 255, 255, 0.045);
  --igd-card-hi: rgba(255, 255, 255, 0.08);

  --igd-r-sm: 6px;
  --igd-r: 14px;
  --igd-r-lg: 22px;

  --igd-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  --igd-max: 1320px;
  --igd-gut: clamp(16px, 4vw, 48px);

  /* Intel brand faces first; DIN 2014 (Adobe Fonts) is the approved fallback */
  /* --igd-font:
    "Intel One Display", "IntelOne Display", "Intel Clear", "DIN 2014",
    din-2014, "DIN Next", "Bahnschrift", "Segoe UI Variable Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
   /* --igd-font:
    "intelone-display";   */

  font-family:  var(--MSIBodyFont);
  color: var(--igd-white);
  background: var(--igd-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: clip;
  position: relative;
}

.igd26 img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
.igd26 a {
  color: inherit;
  text-decoration: none;
}
.igd26 p {
  margin: 0 0 1em;
}
.igd26 h1,
.igd26 h2,
.igd26 h3,
.igd26 h4 {
  margin: 0 0 0.5em;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.igd26 ul,
.igd26 ol {
  margin: 0 0 1em;
  padding-left: 1.15em;
}
.igd26 li {
  margin: 0 0 0.4em;
}
.igd26 table {
  border-collapse: collapse;
  width: 100%;
}

.igd26 :focus-visible {
  outline: 3px solid var(--igd-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.igd26-wrap {
  max-width: var(--igd-max);
  margin-inline: auto;
  padding-inline: var(--igd-gut);
}
.igd26-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- Global page canvas: deep IGD purple with confetti bloom -------- */
.igd26-canvas {
  background:
    radial-gradient(
      1100px 620px at 12% -6%,
      rgba(139, 59, 239, 0.42),
      transparent 62%
    ),
    radial-gradient(
      900px 540px at 88% 4%,
      rgba(0, 113, 197, 0.34),
      transparent 60%
    ),
    radial-gradient(
      1000px 700px at 50% 42%,
      rgba(60, 28, 168, 0.3),
      transparent 68%
    ),
    linear-gradient(
      180deg,
      var(--igd-purple-900) 0%,
      var(--igd-night) 46%,
      var(--igd-ink) 100%
    );
}

/* ------------------------------- Header ---------------------------------- */
.igd26-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 3, 26, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--igd-line-soft);
}
.igd26-bar-in {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  min-height: 66px;
  padding-block: 10px;
}
.igd26-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.igd26-lockup .igd26-msi {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.01em;
  font-style: italic;
  text-transform: lowercase;
}
.igd26-lockup .igd26-x {
  color: var(--igd-muted);
  font-size: 15px;
}
.igd26-lockup .igd26-igd {
  font-weight: 800;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.igd26-lockup .igd26-igd small {
  display: block;
  color: var(--igd-cyan);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.igd26-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}
.igd26-nav a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--igd-mist);
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.igd26-nav a:hover {
  background: var(--igd-card-hi);
  color: #fff;
}
.igd26-nav a[aria-current="true"] {
  background: rgba(232, 17, 45, 0.16);
  color: #fff;
}
.igd26-bar .igd26-btn {
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .igd26-nav {
    display: none;
  }
}

/* ------------------------------ Buttons ---------------------------------- */
.igd26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  /* font-family: inherit; */
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.012em;
  padding: 14px 26px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  background: var(--igd-red);
  color: #fff;
  text-align: center;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 8px 22px rgba(232, 17, 45, 0.28);
}
.igd26-btn:hover {
  background: var(--igd-red-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 17, 45, 0.4);
}
.igd26-btn:active {
  transform: translateY(0);
}
.igd26-btn--sm {
  padding: 10px 18px;
  font-size: 13.5px;
}
.igd26-btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.igd26-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: none;
}
.igd26-btn svg {
  flex: 0 0 auto;
}

/* -------------------------------- Hero ----------------------------------- */
.igd26-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.igd26-hero-kv {
  position: relative;
}
.igd26-hero-kv img {
  width: 100%;
  display: block;
}
.kv__cta {
  position: absolute;
  width: 22vw;
  left: 3.5%;
  bottom: 34.5%;
}
.igd26-hero-kv::after {
  /* content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(6, 3, 26, 0), var(--igd-purple-900));
  pointer-events: none; */
}
.igd26-hero-meta {
  position: relative;
  z-index: 2;
  margin-top: -6px;
  padding-block: clamp(22px, 4vw, 46px) clamp(26px, 5vw, 58px);
  background: linear-gradient(
    180deg,
    var(--igd-purple-900),
    rgba(26, 12, 87, 0)
  );
}
.igd26-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
}
@media (max-width: 900px) {
  .igd26-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.igd26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--igd-cyan);
  margin-bottom: 14px;
}
.igd26-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--igd-red);
  border-radius: 2px;
}
.igd26-hero h1 {
  font-size: clamp(34px, 6.4vw, 74px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.028em;
  margin-bottom: 0.28em;
  text-wrap: balance;
}
.igd26-hero h1 em {
  font-style: italic;
  color: var(--igd-cyan);
}
.igd26-hero-lede {
  font-size: clamp(15px, 1.5vw, 18.5px);
  color: var(--igd-mist);
  max-width: 56ch;
}
.igd26-dates {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 17px);
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--igd-line);
  margin-bottom: 18px;
}
.igd26-dates .igd26-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--igd-lime);
  box-shadow: 0 0 0 4px rgba(182, 230, 42, 0.2);
}
.igd26-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* Countdown */
.igd26-count {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--igd-line);
  border-radius: var(--igd-r);
  padding: 20px 22px;
  box-shadow: var(--igd-shadow);
}
.igd26-count h2 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--igd-muted);
  font-weight: 800;
  margin-bottom: 14px;
}
.igd26-clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.igd26-unit {
  background: rgba(6, 3, 26, 0.55);
  border: 1px solid var(--igd-line-soft);
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
}
.igd26-unit b {
  display: block;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.igd26-unit span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--igd-muted);
  font-weight: 700;
  margin-top: 3px;
}
.igd26-count p {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--igd-muted);
}

/* ------------------------------- Ticker ---------------------------------- */
.igd26-ticker {
  border-block: 1px solid var(--igd-line);
  background: linear-gradient(
    90deg,
    var(--igd-red-lo),
    var(--igd-red) 40%,
    var(--igd-violet)
  );
  overflow: hidden;
  position: relative;
}
.igd26-ticker-track {
  display: flex;
  width: max-content;
  animation: igd26-slide 34s linear infinite;
}
.igd26-ticker-track > span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 20px;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(14px, 1.7vw, 19px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}
.igd26-ticker-track i {
  font-style: normal;
  opacity: 0.55;
}
@keyframes igd26-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .igd26-ticker-track {
    animation: none;
  }
  .igd26 * {
    scroll-behavior: auto !important;
  }
}

/* ------------------------------ Sections --------------------------------- */
.igd26-sec {
  padding-block: clamp(46px, 7vw, 96px);
  position: relative;
  scroll-margin-top: 86px;
}
.igd26-sec--alt {
  background: rgba(0, 0, 0, 0.22);
  border-block: 1px solid var(--igd-line-soft);
}

.igd26-head {
  max-width: 74ch;
  margin-bottom: clamp(26px, 4vw, 44px);
}
.igd26-head h2 {
  font-size: clamp(27px, 4.2vw, 46px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.026em;
  text-wrap: balance;
}
.igd26-head p {
  color: var(--igd-mist);
  font-size: clamp(14.5px, 1.35vw, 17px);
}
.igd26-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--igd-cyan);
}
.igd26-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

.igd26-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: none;
}
.igd26-head-row .igd26-headtext {
  max-width: 74ch;
  margin-bottom: 0;
  flex: 1 1 420px;
}
.igd26-head-row .igd26-headtext h2 {
  font-size: clamp(27px, 4.2vw, 46px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.026em;
  text-wrap: balance;
}
.igd26-head-row .igd26-headtext p {
  color: var(--igd-mist);
  font-size: clamp(14.5px, 1.35vw, 17px);
  margin-bottom: 0;
}
.igd26-savepill {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 20px;
  border-radius: var(--igd-r);
  background: linear-gradient(135deg, var(--igd-red), var(--igd-violet));
  box-shadow: 0 12px 30px rgba(232, 17, 45, 0.3);
}
.igd26-savepill small {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.85;
}
.igd26-savepill b {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
}

/* --------------------------- Category cards ------------------------------ */
.igd26-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
@media (max-width: 980px) {
  .igd26-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .igd26-cats {
    grid-template-columns: 1fr;
  }
}

.igd26-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 258px;
  padding: 22px;
  border-radius: var(--igd-r);
  border: 1px solid var(--igd-line);
  overflow: hidden;
  background: var(--igd-card);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.igd26-cat:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 197, 255, 0.5);
  box-shadow: var(--igd-shadow);
}
.igd26-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.82;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 6%, var(--igd-c1), transparent 62%),
    linear-gradient(180deg, rgba(6, 3, 26, 0.1), rgba(6, 3, 26, 0.86));
}
.igd26-cat > * {
  position: relative;
  z-index: 1;
}
.igd26-cat h3 {
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.igd26-cat p {
  font-size: 13.5px;
  color: var(--igd-mist);
  margin-bottom: 14px;
}
.igd26-cat .igd26-catnum {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(6, 3, 26, 0.6);
  border: 1px solid var(--igd-line);
}
.igd26-cat-link {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--igd-cyan);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.igd26-cat:hover .igd26-cat-link {
  gap: 11px;
}
.igd26-cat-link svg {
  transition: transform 0.2s ease;
}

/* ------------------------------ Filters ---------------------------------- */
.igd26-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: var(--igd-r);
  background: var(--igd-card);
  border: 1px solid var(--igd-line);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.igd26-filters .igd26-flabel {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--igd-muted);
  margin-right: 4px;
}
.igd26-chip {
  /* font-family: inherit; */
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--igd-mist);
  background: transparent;
  border: 1px solid var(--igd-line);
  transition: all 0.18s ease;
}
.igd26-chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.igd26-chip[aria-pressed="true"] {
  background: #fff;
  color: var(--igd-ink);
  border-color: #fff;
}
.igd26-count-out {
  margin-left: auto;
  font-size: 13px;
  color: var(--igd-muted);
  font-variant-numeric: tabular-nums;
}

/* ------------------------------ Deal grid -------------------------------- */
.igd26-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.igd26-deal {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--igd-r);
  border: 1px solid var(--igd-line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.igd26-deal:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 197, 255, 0.45);
  box-shadow: var(--igd-shadow);
}
.igd26-deal[hidden] {
  display: none;
}

.igd26-shot {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      75% 68% at 50% 34%,
      rgba(139, 59, 239, 0.4),
      transparent 70%
    ),
    linear-gradient(180deg, #16093f, #0b0526);
  border-bottom: 1px solid var(--igd-line-soft);
  overflow: hidden;
}
.igd26-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.igd26-shot .igd26-ph {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
}
.igd26-shot.is-missing img {
  display: none;
}
.igd26-shot.is-missing .igd26-ph {
  display: grid;
}
.igd26-ph-inner {
  text-align: center;
  padding: 18px;
}
.igd26-ph-inner svg {
  margin: 0 auto 10px;
  opacity: 0.45;
}
.igd26-ph-inner span {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--igd-muted);
  font-weight: 800;
}

.igd26-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 3px;
  background: var(--igd-red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.igd26-flag--pct {
  background: linear-gradient(135deg, var(--igd-red), var(--igd-violet));
}
.igd26-store {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  color: #fff;
  background: rgba(6, 3, 26, 0.72);
  border: 1px solid var(--igd-line);
}

.igd26-deal-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.igd26-series {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--igd-cyan);
}
.igd26-series--meg {
  color: var(--igd-amber);
}
.igd26-series--mpg {
  color: var(--igd-magenta);
}
.igd26-series--mag {
  color: var(--igd-cyan);
}
.igd26-series--pro {
  color: var(--igd-lime);
}
.igd26-deal h3 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.22;
  margin-bottom: 8px;
}
.igd26-sku {
  font-size: 12px;
  color: var(--igd-muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.igd26-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.igd26-specs li {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--igd-line-soft);
  color: var(--igd-mist);
}
.igd26-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.igd26-was {
  font-size: 13px;
  color: var(--igd-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.igd26-now {
  font-size: clamp(23px, 2.6vw, 28px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.igd26-save {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--igd-lime);
}
.igd26-window {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--igd-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.igd26-window svg {
  flex: 0 0 auto;
  opacity: 0.8;
}
.igd26-deal .igd26-btn {
  margin-top: 16px;
  width: 100%;
}

.igd26-empty {
  display: none;
  padding: 40px 20px;
  text-align: center;
  border: 1px dashed var(--igd-line);
  border-radius: var(--igd-r);
  color: var(--igd-muted);
}
.igd26-empty.is-on {
  display: block;
}

/* Sub-heads inside a section */
.igd26-subhead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(30px, 4vw, 44px) 0 18px;
}
.igd26-subhead:first-of-type {
  margin-top: 0;
}
.igd26-subhead h3 {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}
.igd26-subhead::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--igd-line);
}
.igd26-subhead .igd26-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--igd-card-hi);
  border: 1px solid var(--igd-line);
  color: var(--igd-mist);
}

/* ------------------------------ Feature band ----------------------------- */
.igd26-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
@media (max-width: 860px) {
  .igd26-band {
    grid-template-columns: 1fr;
  }
}
.igd26-band-item {
  padding: 24px;
  border-radius: var(--igd-r);
  background: var(--igd-card);
  border: 1px solid var(--igd-line);
}
.igd26-band-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.igd26-band-item p {
  font-size: 14px;
  color: var(--igd-mist);
  margin: 0;
}
.igd26-band-item .igd26-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--igd-purple-700), var(--igd-violet));
  margin-bottom: 14px;
}

/* ------------------------------ Retailers -------------------------------- */
.igd26-stores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
@media (max-width: 900px) {
  .igd26-stores {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .igd26-stores {
    grid-template-columns: 1fr;
  }
}
.igd26-store-card {
  padding: 24px 22px;
  border-radius: var(--igd-r);
  text-align: center;
  background: var(--igd-card);
  border: 1px solid var(--igd-line);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.igd26-store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 197, 255, 0.45);
}
.igd26-logoslot {
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--igd-r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed var(--igd-line);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
}
.igd26-store-card p {
  font-size: 13px;
  color: var(--igd-muted);
  margin: 0 0 14px;
}

/* ---------------------------- Other promos ------------------------------- */
.igd26-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
@media (max-width: 860px) {
  .igd26-promos {
    grid-template-columns: 1fr;
  }
}
.igd26-promo {
  display: block;
  padding: 26px;
  border-radius: var(--igd-r);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--igd-line);
  background: var(--igd-card);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.igd26-promo:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
}
.igd26-promo h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.igd26-promo p {
  font-size: 13.5px;
  color: var(--igd-mist);
  margin: 0;
}

/* ----------------------------- Terms tile -------------------------------- */
.igd26-terms {
  border-radius: var(--igd-r-lg);
  border: 1px solid var(--igd-line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  overflow: hidden;
}
.igd26-terms-top {
  padding: clamp(26px, 4vw, 40px);
  border-bottom: 1px solid var(--igd-line-soft);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.igd26-terms-top h2 {
  font-size: clamp(23px, 3.2vw, 34px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.igd26-terms-top p {
  margin: 0;
  color: var(--igd-mist);
  font-size: 14.5px;
  max-width: 62ch;
}

.igd26-acc {
  border-top: 1px solid var(--igd-line-soft);
}
.igd26-acc:first-of-type {
  border-top: 0;
}
.igd26-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* font-family: inherit; */
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-align: left;
  padding: 20px clamp(20px, 4vw, 40px);
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease;
}
.igd26-acc-btn:hover {
  background: rgba(255, 255, 255, 0.045);
}
.igd26-acc-btn .igd26-chev {
  flex: 0 0 auto;
  transition: transform 0.22s ease;
}
.igd26-acc-btn[aria-expanded="true"] .igd26-chev {
  transform: rotate(180deg);
}
.igd26-acc-panel {
  padding: 0 clamp(20px, 4vw, 40px) 26px;
  color: var(--igd-mist);
  font-size: 14px;
  max-width: 96ch;
}
.igd26-acc-panel[hidden] {
  display: none;
}
.igd26-acc-panel ol {
  padding-left: 1.3em;
}
.igd26-acc-panel ol > li {
  margin-bottom: 0.7em;
}
.igd26-acc-panel strong {
  color: #fff;
}

.igd26-tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--igd-line);
  border-radius: var(--igd-r-sm);
  margin: 16px 0 20px;
}
.igd26-tbl {
  min-width: 640px;
  font-size: 13px;
}
.igd26-tbl caption {
  text-align: left;
  padding: 12px 14px;
  font-weight: 800;
  color: #fff;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
}
.igd26-tbl th,
.igd26-tbl td {
  padding: 10px 14px;
  text-align: left;
  border-top: 1px solid var(--igd-line-soft);
}
.igd26-tbl th {
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}
.igd26-tbl td {
  color: var(--igd-mist);
  font-variant-numeric: tabular-nums;
}
.igd26-tbl tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ------------------------------- Footer ---------------------------------- */
.igd26-foot {
  padding-block: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--igd-line-soft);
  background: rgba(0, 0, 0, 0.35);
}
.igd26-foot p {
  font-size: 12px;
  color: var(--igd-muted);
  max-width: 110ch;
  line-height: 1.65;
}
.igd26-foot a {
  color: var(--igd-mist);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.igd26-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.igd26-foot-links a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--igd-mist);
}
.igd26-foot-links a:hover {
  color: #fff;
}

/* --------------------------- Back to top --------------------------------- */
.igd26-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--igd-red);
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease,
    background 0.18s ease;
}
.igd26-top.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.igd26-top:hover {
  background: var(--igd-red-hi);
}

@media print {
  .igd26-bar,
  .igd26-top,
  .igd26-ticker,
  .igd26-filters {
    display: none !important;
  }
  .igd26,
  .igd26-canvas {
    background: #fff !important;
    color: #000 !important;
  }
}

.popout {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #c9c9c9;
  overflow-y: auto;
  display: none;
}
.popout__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  background: #051024;
  top: 50%;
  transform: translateY(-70%);
}
.popout__block-close {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 1;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border: 0;
  background: url("https://storage-asset.msi.com/event/2024/CND/black-friday-deals/images/close.png")
    center center / cover no-repeat;
  filter: hue-rotate(300deg);
}
@media (min-width: 996px) {
  .popout__block-close {
    width: 50px;
    height: 50px;
    right: 30px;
    top: 30px;
  }
}
.popout__block-close:hover {
  filter: drop-shadow(0 0 5px #fff);
}
.popout__inner {
  position: relative;
  z-index: 5;
  padding: 40px;
}
.popout__dm {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.popout__dm a {
  display: inline-flex;
  align-items: center;
  color: #c9c9c9;
  text-decoration: none;
}
.popout__dm img {
  background: #fff;
  height: 70px;
  width: auto;
  border-radius: 5px;
  overflow: hidden;
  padding: 15px;
}
