/*
 Theme Name:   DamnModz Dark Theme
 Theme URI:    https://damnmodz.com
 Description:  Dark mode gaming theme for DamnModz - Child theme of Bridge
 Author:       DamnModz
 Author URI:   https://damnmodz.com
 Template:     bridge
 Version:      1.0.1
 Text Domain:  damnmodz-theme
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Core RGB values (single source of truth) */
  --bg-primary-rgb: 10, 10, 15;
  --bg-secondary-rgb: 18, 18, 26;
  --bg-tertiary-rgb: 26, 26, 40;
  --bg-card-rgb: 22, 22, 31;
  --bg-card-hover-rgb: 30, 30, 45;
  --bg-elevated-rgb: 20, 20, 24;
  --bg-hero-top-rgb: 15, 15, 18;
  --bg-hero-bottom-rgb: 10, 10, 13;

	  --accent-primary-rgb: 220, 38, 38;
	  --accent-primary-hover-rgb: 239, 68, 68;
	  --accent-primary-light-rgb: 254, 202, 202;
	  --accent-primary-dark-rgb: 185, 28, 28;

	  --accent-success-rgb: 239, 68, 68;
  --accent-gold-rgb: 245, 158, 11;
  --accent-gold-bright-rgb: 251, 191, 36;
  --accent-info-rgb: 59, 130, 246;

  --text-primary-rgb: 255, 255, 255;
  --text-secondary-rgb: 156, 163, 175;
  --text-muted-rgb: 107, 114, 128;
  --text-on-accent-rgb: 26, 26, 26;

  /* Background Colors */
  --bg-primary: rgb(var(--bg-primary-rgb));
  --bg-secondary: rgb(var(--bg-secondary-rgb));
  --bg-tertiary: rgb(var(--bg-tertiary-rgb));
  --bg-card: rgb(var(--bg-card-rgb));
  --bg-card-hover: rgb(var(--bg-card-hover-rgb));
  --bg-elevated: rgb(var(--bg-elevated-rgb));
  --bg-hero-top: rgb(var(--bg-hero-top-rgb));
  --bg-hero-bottom: rgb(var(--bg-hero-bottom-rgb));
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --bg-glass: rgba(var(--bg-secondary-rgb), 0.85);

  /* Accent Colors */
  --accent-primary: rgb(var(--accent-primary-rgb));
  --accent-primary-hover: rgb(var(--accent-primary-hover-rgb));
  --accent-primary-light: rgb(var(--accent-primary-light-rgb));
  --accent-primary-dark: rgb(var(--accent-primary-dark-rgb));
  --accent-primary-glow: rgba(var(--accent-primary-rgb), 0.4);
  --accent-success: rgb(var(--accent-success-rgb));
  --accent-success-soft: rgba(var(--accent-success-rgb), 0.15);
  --accent-gold: rgb(var(--accent-gold-rgb));
  --accent-gold-soft: rgba(var(--accent-gold-rgb), 0.15);
  --accent-gold-bright: rgb(var(--accent-gold-bright-rgb));
  --accent-info: rgb(var(--accent-info-rgb));
  --accent-info-soft: rgba(var(--accent-info-rgb), 0.15);

  /* Text Colors */
  --text-primary: rgb(var(--text-primary-rgb));
  --text-secondary: rgb(var(--text-secondary-rgb));
  --text-muted: rgb(var(--text-muted-rgb));
  --text-on-accent: rgb(var(--text-on-accent-rgb));
  --text-link: var(--accent-primary);
  --text-link-hover: var(--accent-primary-hover);

  /* Border Colors */
  --border-subtle: rgba(var(--text-primary-rgb), 0.08);
  --border-medium: rgba(var(--text-primary-rgb), 0.12);
  --border-accent: rgba(var(--accent-primary-rgb), 0.5);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--accent-primary-glow);
  --shadow-card-hover: 0 8px 30px rgba(var(--accent-primary-rgb), 0.15);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;

  /* Layout */
  --container-max: 1400px;
  --sidebar-width: 380px;
  --header-main-height: 80px;
  --header-subnav-height: 48px;
  --header-height: calc(var(--header-main-height) + var(--header-subnav-height));
}

@media (max-width: 899px) {
  :root {
    --header-subnav-height: 0px;
    --header-height: var(--header-main-height);
  }
}

/* ==========================================================================
   Base Resets & Dark Mode Foundation
   ========================================================================== */

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg-primary) !important;
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Bridge theme backgrounds */
.wrapper,
.wrapper_inner,
.content,
.content_inner,
.full_width,
.container_inner {
  background-color: transparent !important;
}

/* Force hide Bridge theme preloader/transitions which can get stuck */
.q_loader,
.qodef-loader,
.ajax_loader,
.qodef-page-loading-overlay,
.qodef-page-transition-holder,
.qodef-page-transition-loader,
.loading-wheel {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: -1 !important;
}

/* Hide escaped/raw shortcode text that appears when plugin is missing */
.dm-homepage .entry-content p:empty,
.dm-homepage .entry-content br:only-child {
  display: none;
}

/* Global Container Styling */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  box-sizing: border-box;
  background-color: transparent !important;
}

/* Sections: consistent vertical padding */
.dm-homepage section,
.dm-categories-section,
.dm-popular-section,
.dm-process-section,
.dm-stats-banner {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

/* Section Headers */
.dm-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.dm-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.dm-section-subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin: 0;
  margin-top: var(--space-sm);
}

.dm-section-header--center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.dm-section-header--center .dm-section-subtitle {
  max-width: 60ch;
}

/* Links */
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-primary);
}

/* Selection */
::selection {
  background-color: var(--accent-primary);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Header Overrides
   ========================================================================== */

.header_inner,
header.page_header,
.header_top,
.header_bottom,
.fixed_top_header,
.sticky_header,
.main_menu_header_inner_right_holder {
  background-color: var(--bg-secondary) !important;
  border-bottom: 1px solid var(--border-subtle);
}

.header-widget {
  background-color: transparent !important;
}

/* Logo area */
.logo_wrapper a,
.q_logo a {
  display: flex;
  align-items: center;
}

/* Navigation */
nav.main_menu>ul>li>a,
.main_menu li a,
.mobile_menu li a {
  color: var(--text-primary) !important;
  font-weight: 500;
  transition: color var(--transition-fast);
}

nav.main_menu>ul>li:hover>a,
.main_menu li:hover>a {
  color: var(--accent-primary) !important;
}

/* Dropdown menus */
.second,
.wide,
nav.main_menu ul li ul,
.main_menu .second {
  background-color: var(--bg-tertiary) !important;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.main_menu ul li ul li a {
  color: var(--text-secondary) !important;
}

.main_menu ul li ul li:hover>a {
  color: var(--text-primary) !important;
  background-color: var(--bg-card-hover) !important;
}

/* ==========================================================================
   Footer Overrides
   ========================================================================== */

footer,
.footer_top,
.footer_top_holder,
.footer_bottom,
.footer_bottom_holder,
.footer_inner {
  background-color: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-subtle);
}

footer h5,
footer h6,
footer .widget-title {
  color: var(--text-primary) !important;
}

footer p,
footer li,
footer a {
  color: var(--text-secondary) !important;
}

footer a:hover {
  color: var(--accent-primary) !important;
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */

/* Product cards layout override */
.woocommerce ul.products,
.products,
.dm-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: var(--space-lg) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Ensure list items act as grid cells, not floated columns */
.woocommerce ul.products li.product:not(.dm-product-card),
.products li.product:not(.dm-product-card),
.columns-4 ul.products li.product:not(.dm-product-card),
div.woocommerce ul.products li.product:not(.dm-product-card) {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  max-width: none !important;
  clear: none !important;
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) !important;
  transition: all var(--transition-base);
}

/* Responsive Grid Overrides */
@media (max-width: 1200px) {

  .woocommerce ul.products,
  .products,
  .dm-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {

  .woocommerce ul.products,
  .products,
  .dm-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {

  .woocommerce ul.products,
  .products,
  .dm-products-grid {
    grid-template-columns: 1fr !important;
  }
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) minmax(220px, 430px) minmax(28px, 1fr);
  align-items: center;
  gap: 16px;
  margin: clamp(26px, 4vw, 42px) 0 0;
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__rule {
  height: 1px;
  min-width: 0;
  background: linear-gradient(90deg, transparent, rgba(var(--text-primary-rgb), 0.18), transparent);
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__link {
  display: grid;
  gap: 5px;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(var(--accent-primary-rgb), 0.38);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(var(--accent-primary-rgb), 0.13) 0%, rgba(var(--bg-secondary-rgb), 0.88) 100%);
  padding: 14px 16px;
  color: var(--text-primary) !important;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__link:hover,
.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__link:focus {
  border-color: rgba(var(--accent-primary-rgb), 0.7);
  background: linear-gradient(180deg, rgba(var(--accent-primary-rgb), 0.2) 0%, rgba(var(--bg-tertiary-rgb), 0.94) 100%);
  color: var(--text-primary) !important;
  transform: translateY(-1px);
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__eyebrow {
  color: var(--accent-primary-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__title {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.15;
}

.dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__copy {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dm-game-page-wrapper[data-dm-game="roblox"] .dm-roblox-accounts-divider__rule {
    display: none;
  }
}

.products .product:not(.dm-product-card):hover,
ul.products li.product:not(.dm-product-card):hover {
  background-color: var(--bg-card-hover) !important;
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  z-index: 2;
  /* Ensure hover effect is on top */
}

/* Product titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  color: var(--text-primary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Product prices */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--accent-primary) !important;
  font-weight: 700;
  font-size: var(--text-xl);
}

/* Add to cart buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.added_to_cart {
  background-color: var(--accent-primary) !important;
  color: var(--text-primary) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  padding: var(--space-sm) var(--space-lg) !important;
  transition: all var(--transition-fast) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--accent-primary-hover) !important;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Single product page */
.woocommerce div.product {
  background-color: transparent;
}

.woocommerce div.product .product_title {
  color: var(--text-primary) !important;
  font-family: var(--font-heading);
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--text-secondary);
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: transparent;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--text-secondary) !important;
  font-weight: 500;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--text-primary) !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: var(--space-xl);
}

/* Cart */
.woocommerce-cart table.cart,
.woocommerce table.shop_table {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--border-subtle) !important;
  color: var(--text-primary);
}

/* Checkout */
.woocommerce form .form-row label {
  color: var(--text-secondary);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background-color: var(--bg-tertiary) !important;
  border: 1px solid var(--border-subtle) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--accent-primary) !important;
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-primary-glow);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Money Back Guarantee page */
.page-id-106738 .content,
.page-id-106738 .content .container,
.page-id-106738 .full_width,
.page-id-106738 .container_inner {
  background: #07080c;
}

.page-id-106738 .dm-site-content > .container,
.page-id-106738 .container_inner.default_template_holder {
  width: 100%;
  max-width: none;
  padding: 0;
}

.page-id-106738 .full_section_inner,
.page-id-106738 .wpb_raw_html,
.page-id-106738 .wpb_raw_html > .wpb_wrapper {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.page-id-106738 .vc_row {
  margin-left: 0;
  margin-right: 0;
}

.page-id-106738 .vc_column_container > .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

.page-id-106738 #dmz-refund-policy {
  --dmz-bg: #07080c;
  --dmz-panel: #11141b;
  --dmz-panel-2: #171b24;
  --dmz-line: rgba(255, 255, 255, 0.12);
  --dmz-soft-line: rgba(255, 255, 255, 0.075);
  --dmz-text: #f8fafc;
  --dmz-muted: rgba(248, 250, 252, 0.74);
  --dmz-faint: rgba(248, 250, 252, 0.56);
  --dmz-red: #ef2330;
  --dmz-red-2: #ff4b55;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(36px, 5vw, 72px) 18px clamp(64px, 8vw, 116px);
  color: var(--dmz-text);
  background:
    linear-gradient(115deg, rgba(239, 35, 48, 0.23) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #10131a 0%, var(--dmz-bg) 34%, #080a0f 100%);
}

.page-id-106738 #dmz-refund-policy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 62%, rgba(239, 35, 48, 0.12) 62% 64%, transparent 64% 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 78%);
}

.page-id-106738 #dmz-refund-policy .wrap {
  width: min(1180px, calc(100vw - 36px)) !important;
  max-width: min(1180px, calc(100vw - 36px)) !important;
  margin: 0 auto;
}

.page-id-106738 #dmz-refund-policy .card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--dmz-soft-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--dmz-panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.page-id-106738 #dmz-refund-policy .card:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  grid-template-areas:
    "kicker meta"
    "title callout";
  gap: 22px clamp(28px, 4vw, 54px);
  align-items: center;
  min-height: clamp(350px, 34vw, 480px);
  margin: 0 0 22px;
  padding: clamp(34px, 5vw, 60px);
  border-color: rgba(239, 35, 48, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(125deg, rgba(239, 35, 48, 0.34) 0 30%, rgba(239, 35, 48, 0.05) 30% 58%, transparent 58% 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    #13161d;
}

.page-id-106738 #dmz-refund-policy .card:first-child::before {
  content: "01";
  position: absolute;
  right: clamp(22px, 4vw, 54px);
  top: clamp(18px, 4vw, 46px);
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(86px, 12vw, 168px);
  font-weight: 900;
  line-height: 0.75;
  pointer-events: none;
}

.page-id-106738 #dmz-refund-policy .card:first-child::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 62%;
  height: 74%;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 39%, rgba(255, 255, 255, 0.07) 39% 40%, transparent 40% 58%, rgba(255, 255, 255, 0.05) 58% 59%, transparent 59% 100%);
}

.page-id-106738 #dmz-refund-policy .kicker {
  grid-area: kicker;
  align-self: end;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffd0d3;
  background: rgba(239, 35, 48, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.page-id-106738 #dmz-refund-policy h1,
.page-id-106738 #dmz-refund-policy h2 {
  margin: 0;
  max-width: 100%;
  color: #ffffff;
  font-family: inherit;
  letter-spacing: 0;
  white-space: normal !important;
}

.page-id-106738 #dmz-refund-policy h1 {
  grid-area: title;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.95;
  font-weight: 900;
}

.page-id-106738 #dmz-refund-policy .meta {
  grid-area: meta;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.page-id-106738 #dmz-refund-policy .callout {
  grid-area: callout;
  align-self: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(239, 35, 48, 0.34);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(7, 8, 12, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-id-106738 #dmz-refund-policy .card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 20px clamp(28px, 4vw, 56px);
  margin: 0 0 14px;
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: 18px;
}

.page-id-106738 #dmz-refund-policy .card:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--dmz-red), rgba(239, 35, 48, 0.2));
}

.page-id-106738 #dmz-refund-policy .card:not(:first-child) > :not(h2) {
  grid-column: 2;
}

.page-id-106738 #dmz-refund-policy .card:nth-child(even):not(:first-child) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #171b24;
}

.page-id-106738 #dmz-refund-policy h2 {
  grid-column: 1;
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  font-weight: 900;
}

.page-id-106738 #dmz-refund-policy h2::before {
  content: "";
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--dmz-red);
  box-shadow: 0 0 22px rgba(239, 35, 48, 0.54);
}

.page-id-106738 #dmz-refund-policy p,
.page-id-106738 #dmz-refund-policy li,
.page-id-106738 #dmz-refund-policy .meta {
  color: var(--dmz-muted);
  font-size: 16.5px;
  line-height: 1.72;
  overflow-wrap: break-word;
  white-space: normal !important;
}

.page-id-106738 #dmz-refund-policy p {
  margin: 0 0 14px;
}

.page-id-106738 #dmz-refund-policy p:last-child {
  margin-bottom: 0;
}

.page-id-106738 #dmz-refund-policy strong {
  color: #ffffff;
  font-weight: 850;
}

.page-id-106738 #dmz-refund-policy em {
  color: rgba(255, 255, 255, 0.86);
}

.page-id-106738 #dmz-refund-policy a {
  color: #ff666f;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
}

.page-id-106738 #dmz-refund-policy a:hover,
.page-id-106738 #dmz-refund-policy a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.page-id-106738 #dmz-refund-policy .meta strong {
  color: rgba(255, 255, 255, 0.92);
}

.page-id-106738 #dmz-refund-policy .meta a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(239, 35, 48, 0.34);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(239, 35, 48, 0.13);
}

.page-id-106738 #dmz-refund-policy .grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.page-id-106738 #dmz-refund-policy .grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-id-106738 #dmz-refund-policy .grid > div {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(7, 8, 12, 0.32);
}

.page-id-106738 #dmz-refund-policy .grid > div p:first-child {
  margin-bottom: 12px;
}

.page-id-106738 #dmz-refund-policy ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.page-id-106738 #dmz-refund-policy li {
  position: relative;
  margin: 0;
  padding: 0 0 13px 28px;
}

.page-id-106738 #dmz-refund-policy li:last-child {
  padding-bottom: 0;
}

.page-id-106738 #dmz-refund-policy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dmz-red);
  box-shadow: 0 0 14px rgba(239, 35, 48, 0.5);
}

.page-id-106738 #dmz-refund-policy .steps {
  counter-reset: refund-step;
}

.page-id-106738 #dmz-refund-policy .steps li {
  padding-left: 48px;
}

.page-id-106738 #dmz-refund-policy .steps li::before {
  counter-increment: refund-step;
  content: counter(refund-step);
  top: 0.2em;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: linear-gradient(180deg, var(--dmz-red-2), var(--dmz-red));
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 980px) {
  .page-id-106738 #dmz-refund-policy .card:first-child,
  .page-id-106738 #dmz-refund-policy .card:not(:first-child) {
    grid-template-columns: 1fr;
  }

  .page-id-106738 #dmz-refund-policy .card:first-child {
    grid-template-areas:
      "kicker"
      "title"
      "meta"
      "callout";
  }

  .page-id-106738 #dmz-refund-policy .meta,
  .page-id-106738 #dmz-refund-policy .callout,
  .page-id-106738 #dmz-refund-policy .card:not(:first-child) > :not(h2) {
    grid-column: 1;
  }

  .page-id-106738 #dmz-refund-policy .meta {
    margin-top: 4px;
  }
}

@media (max-width: 782px) {
  .page-id-106738 #dmz-refund-policy {
    padding: 26px 12px 74px;
  }

  .page-id-106738 #dmz-refund-policy .wrap {
    width: min(100%, calc(100vw - 24px));
  }

  .page-id-106738 #dmz-refund-policy .card:first-child {
    min-height: 0;
    gap: 18px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .page-id-106738 #dmz-refund-policy .card:first-child::before {
    font-size: 82px;
    right: 18px;
    top: 20px;
  }

  .page-id-106738 #dmz-refund-policy .card:first-child::after {
    width: 75%;
    height: 58%;
    opacity: 0.72;
  }

  .page-id-106738 #dmz-refund-policy h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .page-id-106738 #dmz-refund-policy h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .page-id-106738 #dmz-refund-policy p,
  .page-id-106738 #dmz-refund-policy li,
  .page-id-106738 #dmz-refund-policy .meta {
    font-size: 16px;
    line-height: 1.68;
  }

  .page-id-106738 #dmz-refund-policy .grid-2 {
    grid-template-columns: 1fr;
  }

  .page-id-106738 #dmz-refund-policy .meta {
    display: grid;
    gap: 8px;
    padding-bottom: 18px;
  }

  .page-id-106738 #dmz-refund-policy .meta a {
    width: fit-content;
  }

  .page-id-106738 #dmz-refund-policy .callout {
    padding: 18px;
  }

  .page-id-106738 #dmz-refund-policy .card:not(:first-child) {
    gap: 16px;
    margin-bottom: 12px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .page-id-106738 #dmz-refund-policy .card:not(:first-child)::before {
    top: 22px;
    bottom: 22px;
  }

  .page-id-106738 #dmz-refund-policy .grid > div {
    padding: 18px;
  }
}

/* Money Back Guarantee v2 structure */
.page-id-106738 #dmz-refund-policy.dmz-policy-v2 {
  --dmz-v2-bg: #07080c;
  --dmz-v2-ink: #f8fafc;
  --dmz-v2-muted: rgba(248, 250, 252, 0.74);
  --dmz-v2-faint: rgba(248, 250, 252, 0.54);
  --dmz-v2-line: rgba(255, 255, 255, 0.12);
  --dmz-v2-red: #ef2330;
  --dmz-v2-red-dark: #67141a;
  --dmz-v2-panel: #141820;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(46px, 6vw, 82px) 18px clamp(72px, 8vw, 120px);
  color: var(--dmz-v2-ink);
  background:
    linear-gradient(128deg, rgba(239, 35, 48, 0.28) 0 28%, transparent 28% 100%),
    linear-gradient(180deg, #11141a 0%, var(--dmz-v2-bg) 38%, #08090d 100%);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 66px 66px;
  opacity: 0.88;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 84%);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-shell {
  position: relative;
  width: min(1240px, calc(100vw - 36px));
  max-width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-shell::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 540px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 35, 48, 0.7), rgba(255, 255, 255, 0.05));
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(239, 35, 48, 0.36);
  border-radius: 6px;
  background:
    linear-gradient(126deg, rgba(239, 35, 48, 0.36) 0 34%, rgba(239, 35, 48, 0.08) 34% 34.3%, transparent 34.3% 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    #151922;
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.38);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-hero::before {
  content: "";
  position: absolute;
  inset: auto -6% -35% 42%;
  height: 78%;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.065) 46% 47%, transparent 47% 68%, rgba(255, 255, 255, 0.045) 68% 69%, transparent 69% 100%);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-hero::after {
  content: "01";
  position: absolute;
  right: clamp(28px, 4vw, 62px);
  top: clamp(24px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(96px, 13vw, 178px);
  font-weight: 900;
  line-height: 0.74;
  pointer-events: none;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-copy,
.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-details {
  position: relative;
  z-index: 1;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-copy {
  display: grid;
  align-content: end;
  padding: clamp(44px, 6vw, 76px);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-details {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(34px, 5vw, 62px);
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.2), rgba(7, 8, 12, 0.48));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-kicker {
  width: fit-content;
  margin: 0 0 26px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: #ffd4d6;
  background: rgba(239, 35, 48, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 h1,
.page-id-106738 #dmz-refund-policy.dmz-policy-v2 h2 {
  display: block;
  grid-area: auto !important;
  grid-column: auto !important;
  margin: 0;
  color: #ffffff;
  font-family: inherit;
  letter-spacing: 0;
  text-align: left;
  white-space: normal !important;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 h1 {
  max-width: 760px;
  font-size: 72px;
  line-height: 0.94;
  font-weight: 900;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 h2 {
  font-size: 32px;
  line-height: 1.08;
  font-weight: 900;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 h2::before {
  content: none;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--dmz-v2-muted);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 p,
.page-id-106738 #dmz-refund-policy.dmz-policy-v2 li,
.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-meta {
  color: var(--dmz-v2-muted);
  font-size: 16.5px;
  line-height: 1.72;
  overflow-wrap: break-word;
  white-space: normal !important;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 p {
  margin: 0 0 14px;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 p:last-child {
  margin-bottom: 0;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 strong {
  color: #ffffff;
  font-weight: 850;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 em {
  color: rgba(255, 255, 255, 0.86);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 a:hover,
.page-id-106738 #dmz-refund-policy.dmz-policy-v2 a:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(239, 35, 48, 0.42);
  border-radius: 999px;
  background: rgba(239, 35, 48, 0.13);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-callout {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(239, 35, 48, 0.42);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(7, 8, 12, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-sections {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 4vw, 48px);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  padding: clamp(30px, 4vw, 52px) 0 clamp(30px, 4vw, 52px) 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid #10131a;
  border-radius: 999px;
  background: var(--dmz-v2-red);
  box-shadow: 0 0 0 1px rgba(239, 35, 48, 0.55), 0 0 28px rgba(239, 35, 48, 0.55);
  transform: translateY(-50%);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section h2 {
  position: sticky;
  top: 112px;
  align-self: center;
  padding: 0 0 0 22px;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--dmz-v2-red);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-section-body {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--dmz-v2-line);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(20, 24, 32, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section:nth-child(even) .dmz-section-body {
  background:
    linear-gradient(135deg, rgba(239, 35, 48, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(20, 24, 32, 0.9);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-coverage-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 4px;
  background: rgba(7, 8, 12, 0.32);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 li {
  position: relative;
  margin: 0;
  padding: 0 0 13px 30px;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 li:last-child {
  padding-bottom: 0;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dmz-v2-red);
  box-shadow: 0 0 16px rgba(239, 35, 48, 0.55);
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .steps {
  counter-reset: dmz-refund-step;
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .steps li {
  min-height: 42px;
  padding: 8px 0 8px 56px;
}

.page-id-106738 #dmz-refund-policy.dmz-policy-v2 .steps li::before {
  counter-increment: dmz-refund-step;
  content: counter(dmz-refund-step);
  top: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: linear-gradient(180deg, #ff4c57, var(--dmz-v2-red));
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 980px) {
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-details {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-shell::before {
    display: none;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section::before {
    display: none;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section h2 {
    position: static;
    padding-left: 0;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 h1 {
    font-size: 56px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 h2 {
    font-size: 29px;
  }
}

@media (max-width: 782px) {
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 {
    padding: 34px 12px 78px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-shell {
    width: min(100%, calc(100vw - 24px));
    max-width: min(100%, calc(100vw - 24px));
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-copy,
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-hero-details {
    padding: 28px 22px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-hero {
    border-radius: 5px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-hero::after {
    font-size: 82px;
    right: 20px;
    top: 22px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-kicker {
    margin-bottom: 22px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 h1 {
    width: 100%;
    max-width: 100%;
    font-size: 42px;
    line-height: 0.97;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 h2 {
    font-size: 27px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 p,
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 li,
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-meta {
    font-size: 16px;
    line-height: 1.68;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-meta {
    display: grid;
    gap: 9px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-meta a {
    width: fit-content;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-callout,
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-section-body,
  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-coverage-panel {
    padding: 20px;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-coverage-grid {
    grid-template-columns: 1fr;
  }

  .page-id-106738 #dmz-refund-policy.dmz-policy-v2 .dmz-policy-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* Forza Horizon 6 hub navigation and accounts page */
.dmz-fh6-nav {
  width: min(1180px, calc(100vw - 36px));
  margin: 8px auto 26px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 35, 48, 0.12), rgba(15, 18, 25, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.dmz-fh6-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dmz-fh6-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.dmz-fh6-nav a:hover,
.dmz-fh6-nav a:focus,
.dmz-fh6-nav a.is-active {
  border-color: rgba(239, 35, 48, 0.55);
  color: #ffffff;
  background: rgba(239, 35, 48, 0.22);
}

.dmz-fh6-accounts {
  --fh6-bg: #07080c;
  --fh6-panel: #131821;
  --fh6-panel-2: #1b202a;
  --fh6-text: #f8fafc;
  --fh6-muted: rgba(248, 250, 252, 0.72);
  --fh6-faint: rgba(248, 250, 252, 0.54);
  --fh6-line: rgba(255, 255, 255, 0.12);
  --fh6-red: #ef2330;
  --fh6-blue: #4aa3ff;
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(38px, 5vw, 78px) 18px clamp(76px, 8vw, 124px);
  overflow: hidden;
  color: var(--fh6-text);
  background:
    linear-gradient(128deg, rgba(239, 35, 48, 0.27) 0 28%, transparent 28% 100%),
    linear-gradient(180deg, #10141c 0%, var(--fh6-bg) 42%, #08090d 100%);
}

.dmz-fh6-accounts::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent 86%);
}

.dmz-fh6-accounts * {
  box-sizing: border-box;
}

.dmz-fh6-shell {
  width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
}

.dmz-fh6-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(239, 35, 48, 0.36);
  border-radius: 7px;
  background:
    linear-gradient(126deg, rgba(239, 35, 48, 0.35) 0 34%, rgba(239, 35, 48, 0.08) 34% 34.3%, transparent 34.3% 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    #151922;
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.38);
}

.dmz-fh6-hero__copy {
  display: grid;
  align-content: end;
  padding: clamp(42px, 6vw, 76px);
}

.dmz-fh6-kicker {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: #ffd4d6;
  background: rgba(239, 35, 48, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.dmz-fh6-accounts h1,
.dmz-fh6-accounts h2,
.dmz-fh6-accounts h3 {
  margin: 0;
  color: #ffffff;
  font-family: inherit;
  letter-spacing: 0;
}

.dmz-fh6-accounts h1 {
  max-width: 790px;
  font-size: 72px;
  line-height: 0.94;
  font-weight: 900;
}

.dmz-fh6-hero__copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.dmz-fh6-hero__panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(34px, 5vw, 62px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.2), rgba(7, 8, 12, 0.5));
}

.dmz-fh6-stat-grid {
  display: grid;
  gap: 12px;
}

.dmz-fh6-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(7, 8, 12, 0.48);
}

.dmz-fh6-stat strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
}

.dmz-fh6-stat span {
  color: var(--fh6-muted);
  font-size: 14px;
  line-height: 1.5;
}

.dmz-fh6-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dmz-fh6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(239, 35, 48, 0.5);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(239, 35, 48, 0.22);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.dmz-fh6-btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.dmz-fh6-btn:hover,
.dmz-fh6-btn:focus {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dmz-fh6-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  padding: clamp(38px, 5vw, 68px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.dmz-fh6-section:first-of-type {
  border-top: 0;
}

.dmz-fh6-section h2 {
  position: sticky;
  top: 112px;
  align-self: start;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 900;
}

.dmz-fh6-section h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--fh6-red);
}

.dmz-fh6-panel {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--fh6-line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(20, 24, 32, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.dmz-fh6-accounts p,
.dmz-fh6-accounts li,
.dmz-fh6-accounts td,
.dmz-fh6-accounts th,
.dmz-fh6-accounts summary {
  color: var(--fh6-muted);
  font-size: 16.5px;
  line-height: 1.72;
}

.dmz-fh6-accounts p {
  margin: 0 0 14px;
}

.dmz-fh6-accounts p:last-child {
  margin-bottom: 0;
}

.dmz-fh6-accounts strong {
  color: #ffffff;
  font-weight: 850;
}

.dmz-fh6-accounts a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.dmz-fh6-accounts a:hover,
.dmz-fh6-accounts a:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dmz-fh6-tier-grid,
.dmz-fh6-platform-grid,
.dmz-fh6-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dmz-fh6-platform-grid,
.dmz-fh6-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dmz-fh6-tier,
.dmz-fh6-platform,
.dmz-fh6-mini-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 5px;
  background: rgba(7, 8, 12, 0.34);
}

.dmz-fh6-tier h3,
.dmz-fh6-platform h3,
.dmz-fh6-mini-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.dmz-fh6-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(239, 35, 48, 0.42);
  border-radius: 999px;
  color: #ffd4d6;
  background: rgba(239, 35, 48, 0.13);
  font-size: 12px;
  font-weight: 850;
}

.dmz-fh6-accounts ul,
.dmz-fh6-accounts ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.dmz-fh6-accounts li {
  position: relative;
  padding: 0 0 12px 28px;
}

.dmz-fh6-accounts li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--fh6-red);
}

.dmz-fh6-steps {
  counter-reset: fh6-step;
  display: grid;
  gap: 10px;
}

.dmz-fh6-steps li {
  min-height: 42px;
  padding: 8px 0 8px 56px;
}

.dmz-fh6-steps li::before {
  counter-increment: fh6-step;
  content: counter(fh6-step);
  top: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(180deg, #ff4c57, var(--fh6-red));
  font-size: 13px;
  font-weight: 900;
}

.dmz-fh6-risk-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--fh6-red);
  background: rgba(239, 35, 48, 0.1);
  color: var(--fh6-muted);
}

.dmz-fh6-faq {
  display: grid;
  gap: 10px;
}

.dmz-fh6-faq details {
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 5px;
  background: rgba(7, 8, 12, 0.34);
}

.dmz-fh6-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 850;
}

.dmz-fh6-faq details > div {
  padding: 0 20px 20px;
}

@media (max-width: 1100px) {
  .dmz-fh6-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .dmz-fh6-hero,
  .dmz-fh6-section {
    grid-template-columns: 1fr;
  }

  .dmz-fh6-hero {
    min-height: 0;
  }

  .dmz-fh6-hero__panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dmz-fh6-section h2 {
    position: static;
  }
}

@media (max-width: 782px) {
  .dmz-fh6-nav {
    width: min(100%, calc(100vw - 24px));
  }

  .dmz-fh6-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .dmz-fh6-nav a {
    flex: 0 0 auto;
  }

  .dmz-fh6-accounts {
    padding: 34px 12px 82px;
  }

  .dmz-fh6-shell {
    width: min(100%, calc(100vw - 24px));
  }

  .dmz-fh6-hero__copy,
  .dmz-fh6-hero__panel,
  .dmz-fh6-panel {
    padding: 22px;
  }

  .dmz-fh6-accounts h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .dmz-fh6-section h2 {
    font-size: 27px;
  }

  .dmz-fh6-accounts p,
  .dmz-fh6-accounts li,
  .dmz-fh6-accounts td,
  .dmz-fh6-accounts th,
  .dmz-fh6-accounts summary {
    font-size: 16px;
    line-height: 1.68;
  }

  .dmz-fh6-tier-grid,
  .dmz-fh6-platform-grid,
  .dmz-fh6-card-grid {
    grid-template-columns: 1fr;
  }
}

/* FH6 accounts / credits landing pages */
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero {
  padding: clamp(24px, 4vh, 40px) 0 clamp(12px, 2.4vh, 22px);
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero {
  padding: clamp(30px, 5vh, 52px) 0 clamp(22px, 4vh, 36px);
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__layout {
  display: flex;
  align-items: center;
  position: relative;
  min-height: clamp(250px, 22vw, 312px);
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__layout {
  display: flex;
  align-items: center;
  position: relative;
  min-height: clamp(300px, 26vw, 360px);
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__layout--has-side-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, min(38vw, 460px));
  gap: clamp(20px, 3.5vw, 46px);
  align-items: center;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__layout--has-side-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, min(42vw, 520px));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__inner {
  z-index: 2;
  width: min(100%, 660px);
  max-width: 660px;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__inner {
  z-index: 2;
  width: min(100%, 700px);
  max-width: 700px;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__side-media {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 460px;
  transform: none;
  pointer-events: none;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__side-media {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 520px;
  transform: none;
  pointer-events: none;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__side-img,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__side-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.46));
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-content__container,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-content__inner,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-wrapper,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal-body {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal-body {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal-body {
  padding: 0;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal-bar {
  display: none;
}

.dm-fh6-accounts-page,
.dm-fh6-accounts-page *,
.dm-fh6-accounts-page *::before,
.dm-fh6-accounts-page *::after {
  box-sizing: border-box;
}

.dm-fh6-accounts-page {
  display: grid;
  gap: 34px;
}

.dm-fh6-section {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(16, 17, 24, 0.94), rgba(41, 12, 17, 0.74));
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.dm-fh6-section h2,
.dm-fh6-section h3 {
  max-width: 100%;
  margin-top: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
  line-height: 1.12;
}

.dm-fh6-section h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.dm-fh6-kicker {
  display: block;
  margin-bottom: 10px;
  color: #ff4b4f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dm-fh6-lead {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(240, 244, 252, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.dm-fh6-tier-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.dm-fh6-tier-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  background: rgba(4, 5, 8, 0.34);
}

.dm-fh6-tier-table th,
.dm-fh6-tier-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 242, 250, 0.82);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.dm-fh6-tier-table th {
  color: #fff;
  background: rgba(255, 59, 64, 0.12);
  font-weight: 800;
}

.dm-fh6-tier-table tr:last-child td {
  border-bottom: 0;
}

.dm-fh6-note {
  margin: 16px 0 0;
  color: rgba(240, 244, 252, 0.68);
  font-size: 0.95rem;
  line-height: 1.65;
}

.dm-fh6-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dm-fh6-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dm-fh6-card,
.dm-fh6-step,
.dm-fh6-link-card,
.dm-fh6-faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(8, 9, 14, 0.62);
}

.dm-fh6-card {
  min-height: 100%;
  padding: 20px;
}

.dm-fh6-card strong,
.dm-fh6-step strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
}

.dm-fh6-card p,
.dm-fh6-step p {
  margin: 0;
  color: rgba(234, 238, 247, 0.72);
  line-height: 1.65;
}

.dm-fh6-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dm-fh6-badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.dm-fh6-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: fh6step;
}

.dm-fh6-step {
  position: relative;
  padding: 20px 18px 18px;
}

.dm-fh6-step::before {
  counter-increment: fh6step;
  content: counter(fh6step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 66, 71, 0.78);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.dm-fh6-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dm-fh6-link-card {
  display: block;
  padding: 18px;
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.dm-fh6-link-card:hover,
.dm-fh6-link-card:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 69, 75, 0.62);
  background: rgba(255, 55, 61, 0.08);
  color: #fff;
}

.dm-fh6-link-card span {
  display: block;
  margin-top: 6px;
  color: rgba(235, 239, 248, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.dm-fh6-faq details {
  padding: 16px 18px;
}

.dm-fh6-faq details + details {
  margin-top: 10px;
}

.dm-fh6-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 800;
}

.dm-fh6-faq p {
  margin: 12px 0 0;
  color: rgba(232, 237, 246, 0.72);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .dm-fh6-grid,
  .dm-fh6-grid--three,
  .dm-fh6-link-grid,
  .dm-fh6-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__layout,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__layout {
    display: block;
    min-height: auto;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__inner,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__inner {
    width: 100%;
    max-width: 100%;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__side-media,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__side-media {
    display: none;
  }
}

@media (max-width: 640px) {
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__layout,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__inner {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    overflow-x: hidden !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-breadcrumbs,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__trust {
    max-width: calc(100vw - 40px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__title {
    width: min(100%, 380px) !important;
    max-width: calc(100vw - 42px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(2rem, 8.4vw, 2.35rem) !important;
    line-height: 1.14 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-wrap: wrap !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__title .dm-accent {
    display: inline !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero {
    padding-top: 34px !important;
    padding-bottom: 28px !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-game-hero__subtitle {
    width: min(100%, 390px) !important;
    max-width: calc(100vw - 42px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-content__container,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-content__inner,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-wrapper,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-terminal-body,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="accounts"] .dm-seo-v2-text {
    width: 100%;
    max-width: 100vw;
    padding-right: 0;
    padding-left: 0;
    overflow-x: hidden;
  }

  .dm-fh6-accounts-page {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .dm-fh6-section {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    padding: 22px 18px;
  }

  .dm-fh6-section h2 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: clamp(1.55rem, 7.4vw, 1.95rem);
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .dm-fh6-section p,
  .dm-fh6-section .dm-fh6-lead {
    width: 100%;
    max-width: 100%;
  }

  .dm-fh6-grid,
  .dm-fh6-grid--three,
  .dm-fh6-link-grid,
  .dm-fh6-steps {
    grid-template-columns: 1fr;
  }

  .dm-fh6-card,
  .dm-fh6-step,
  .dm-fh6-link-card {
    width: 100%;
    max-width: 100%;
    padding: 17px;
  }
}

/* FH6 credits category page */
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-content__container,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-content__inner,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-wrapper,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal-body {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal,
.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal-body {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal-body {
  padding: 0;
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-content {
  padding-top: clamp(46px, 7vw, 88px);
}

.dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal-bar {
  display: none;
}

.dm-fh6-credits-page,
.dm-fh6-credits-page *,
.dm-fh6-credits-page *::before,
.dm-fh6-credits-page *::after {
  box-sizing: border-box;
}

.dm-fh6-credits-page {
  display: grid;
  gap: 30px;
}

.dm-fh6-credit-section {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(13, 17, 24, 0.95), rgba(39, 12, 18, 0.72));
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

.dm-fh6-credit-section h2 {
  max-width: 920px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.82rem);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.dm-fh6-credit-section h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff343f, rgba(255, 52, 63, 0));
}

.dm-fh6-credit-section p {
  max-width: 900px;
  margin: 0 0 18px;
  color: rgba(238, 242, 250, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.dm-fh6-credit-section p:last-child {
  margin-bottom: 0;
}

.dm-fh6-credit-grid {
  display: grid;
  gap: 16px;
}

.dm-fh6-credit-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dm-fh6-credit-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dm-fh6-credit-card,
.dm-fh6-credit-package,
.dm-fh6-credit-faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(7, 8, 13, 0.65);
}

.dm-fh6-credit-card {
  min-height: 100%;
  padding: 20px;
}

.dm-fh6-credit-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
}

.dm-fh6-credit-card p {
  margin: 0;
  color: rgba(234, 238, 247, 0.72);
  line-height: 1.62;
}

.dm-fh6-credit-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  counter-reset: fh6creditstep;
}

.dm-fh6-credit-steps li {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(7, 8, 13, 0.68);
  padding: 18px;
}

.dm-fh6-credit-steps li::before {
  counter-increment: fh6creditstep;
  content: counter(fh6creditstep, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: #ff4249;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.dm-fh6-credit-steps strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.dm-fh6-credit-steps span {
  display: block;
  color: rgba(234, 238, 247, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.dm-fh6-credit-note {
  border-left: 4px solid #ff343f;
  background: rgba(255, 52, 63, 0.08);
  padding: 14px 16px;
}

.dm-fh6-credit-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.dm-fh6-credit-package {
  display: grid;
  gap: 9px;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.dm-fh6-credit-package:hover,
.dm-fh6-credit-package:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 69, 75, 0.62);
  background: rgba(255, 55, 61, 0.09);
  color: #fff;
}

.dm-fh6-credit-package span {
  color: #ff4b4f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dm-fh6-credit-package strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.05;
}

.dm-fh6-credit-package em {
  color: rgba(238, 242, 250, 0.7);
  font-style: normal;
  line-height: 1.5;
}

.dm-fh6-credit-package__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  border: 1px solid rgba(255, 75, 79, 0.34);
  border-radius: 999px;
  background: rgba(255, 75, 79, 0.08);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.dm-fh6-credit-table-wrap {
  width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(7, 8, 13, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dm-fh6-credit-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
  color: rgba(238, 242, 250, 0.78);
  table-layout: fixed;
}

.dm-fh6-credit-table th,
.dm-fh6-credit-table td {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  text-align: left;
  vertical-align: middle;
}

.dm-fh6-credit-table thead th {
  background: rgba(255, 255, 255, 0.045);
  color: rgba(238, 242, 250, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dm-fh6-credit-table tbody th {
  width: 18%;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.dm-fh6-credit-table tbody td {
  color: rgba(238, 242, 250, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.dm-fh6-credit-table tbody td strong {
  display: inline-block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.dm-fh6-credit-table tbody tr:last-child th,
.dm-fh6-credit-table tbody tr:last-child td {
  border-bottom: 0;
}

.dm-fh6-credit-table__price {
  color: #fff !important;
  font-weight: 900;
  white-space: nowrap;
}

.dm-fh6-credit-table__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 75, 79, 0.38);
  border-radius: 999px;
  background: rgba(255, 75, 79, 0.1);
  padding: 0 13px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.dm-fh6-credit-table__action:hover,
.dm-fh6-credit-table__action:focus {
  border-color: rgba(255, 75, 79, 0.72);
  background: rgba(255, 75, 79, 0.2);
  color: #fff;
}

.dm-fh6-credit-primary-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 22px;
}

.dm-fh6-credit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: #e51926;
  padding: 0 22px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.dm-fh6-credit-primary-cta > span {
  max-width: 480px;
  color: rgba(238, 242, 250, 0.64);
  font-size: 0.92rem;
  line-height: 1.5;
}

.dm-fh6-credit-cta:hover,
.dm-fh6-credit-cta:focus {
  color: #fff;
  background: #ff303b;
}

.dm-fh6-credit-platform-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.dm-fh6-credit-platform-list li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  padding: 16px;
}

.dm-fh6-credit-platform-list strong,
.dm-fh6-credit-platform-list span {
  display: block;
}

.dm-fh6-credit-platform-list strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
}

.dm-fh6-credit-platform-list span {
  margin-top: 7px;
  color: rgba(232, 237, 246, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.dm-fh6-credit-faq details {
  padding: 16px 18px;
}

.dm-fh6-credit-faq details + details {
  margin-top: 10px;
}

.dm-fh6-credit-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.dm-fh6-credit-faq p {
  margin: 12px 0 0;
  color: rgba(232, 237, 246, 0.72);
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .dm-fh6-credit-grid--four,
  .dm-fh6-credit-packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-fh6-credit-platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-fh6-credit-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-content {
    padding-top: 34px;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__layout,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__inner {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    overflow-x: hidden !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__title {
    width: min(100%, 380px) !important;
    max-width: calc(100vw - 42px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(2.05rem, 9vw, 2.45rem) !important;
    line-height: 1.12 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__title .dm-accent {
    display: inline !important;
    white-space: normal !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-game-hero__subtitle {
    width: min(100%, 300px) !important;
    max-width: calc(100vw - 80px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-content__container,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-content__inner,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-wrapper,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-terminal-body,
  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-text {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    padding-right: 0;
    padding-left: 0;
    overflow-x: hidden;
  }

  .dm-game-page-wrapper[data-dm-game="forza-horizon-6"][data-dm-service="credits"] .dm-seo-v2-text {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: 0 !important;
  }

  .dm-fh6-credits-page {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .dm-fh6-credit-section {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    padding: 22px 18px;
  }

  .dm-fh6-credit-section h2 {
    width: min(100%, 300px);
    max-width: calc(100vw - 80px);
    font-size: clamp(1.55rem, 7.2vw, 1.95rem);
    text-wrap: wrap;
  }

  .dm-fh6-credit-section p,
  .dm-fh6-credit-card p,
  .dm-fh6-credit-faq p {
    max-width: 300px;
  }

  .dm-fh6-credit-grid,
  .dm-fh6-credit-grid--four,
  .dm-fh6-credit-grid--three,
  .dm-fh6-credit-packages,
  .dm-fh6-credit-platform-list,
  .dm-fh6-credit-steps {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr;
  }

  .dm-fh6-credit-card,
  .dm-fh6-credit-package,
  .dm-fh6-credit-platform-list li,
  .dm-fh6-credit-steps li {
    width: 100%;
    max-width: calc(100vw - 58px);
    min-width: 0;
    overflow: hidden;
    padding: 17px;
  }

  .dm-fh6-credit-primary-cta {
    display: grid;
    gap: 10px;
  }

  .dm-fh6-credit-cta {
    width: min(100%, 300px);
  }

  .dm-fh6-credit-card p,
  .dm-fh6-credit-package em,
  .dm-fh6-credit-table td,
  .dm-fh6-credit-platform-list span,
  .dm-fh6-credit-steps span {
    max-width: 260px;
    overflow-wrap: break-word;
  }

  .dm-fh6-credit-table-wrap {
    overflow: visible;
  }

  .dm-fh6-credit-table,
  .dm-fh6-credit-table thead,
  .dm-fh6-credit-table tbody,
  .dm-fh6-credit-table tr,
  .dm-fh6-credit-table th,
  .dm-fh6-credit-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .dm-fh6-credit-table {
    table-layout: auto;
  }

  .dm-fh6-credit-table thead {
    display: none;
  }

  .dm-fh6-credit-table tbody {
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  .dm-fh6-credit-table tbody tr {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    padding: 14px;
  }

  .dm-fh6-credit-table tbody th,
  .dm-fh6-credit-table tbody td {
    border-bottom: 0;
    padding: 0;
  }

  .dm-fh6-credit-table tbody th {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .dm-fh6-credit-table tbody td + td {
    margin-top: 9px;
  }

  .dm-fh6-credit-table tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: rgba(238, 242, 250, 0.5);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
  }
}

/* FH6 wiki pages */
.dm-fh6-wiki {
  --dm-fh6-background: #07080b;
  --dm-fh6-card: rgba(13, 15, 21, 0.92);
  --dm-fh6-card-soft: rgba(255, 255, 255, 0.035);
  --dm-fh6-border: rgba(255, 255, 255, 0.1);
  --dm-fh6-border-strong: rgba(255, 255, 255, 0.16);
  --dm-fh6-muted: rgba(238, 242, 250, 0.66);
  --dm-fh6-muted-strong: rgba(245, 247, 251, 0.82);
  --dm-fh6-ring: rgba(239, 31, 43, 0.38);
  --dm-fh6-accent: #ef1f2b;
  --dm-fh6-accent-soft: rgba(239, 31, 43, 0.14);
  width: 100%;
  max-width: 100%;
  background: var(--dm-fh6-background);
  color: #f5f7fb;
  overflow-x: clip;
  overflow-y: visible;
}

.dm-fh6-wiki,
.dm-fh6-wiki * {
  box-sizing: border-box;
}

.dm-fh6-wiki a {
  color: inherit;
}

@media (min-width: 1081px) {
  html:has(body.dm-fh6-wiki-page) {
    overflow-x: visible !important;
  }
}

.dm-fh6-wiki-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: clamp(58px, 6vw, 84px) 22px clamp(34px, 4vw, 48px);
  overflow: hidden;
  isolation: isolate;
}

.dm-fh6-wiki-hero::before,
.dm-fh6-wiki-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.dm-fh6-wiki-hero::before {
  background: linear-gradient(90deg, rgba(7, 8, 11, 0.96), rgba(7, 8, 11, 0.72) 46%, rgba(7, 8, 11, 0.34));
}

.dm-fh6-wiki-hero::after {
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.08), var(--dm-fh6-background) 100%);
}

.dm-fh6-wiki-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.dm-fh6-wiki-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dm-fh6-wiki-hero__content {
  width: min(1180px, 100%);
  min-width: 0;
  max-width: 100%;
  margin: 0 auto;
}

.dm-fh6-wiki-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--dm-fh6-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.dm-fh6-wiki-breadcrumbs a {
  color: rgba(245, 247, 251, 0.9);
  text-decoration: none;
}

.dm-fh6-wiki-breadcrumbs a:hover,
.dm-fh6-wiki-breadcrumbs a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dm-fh6-wiki-breadcrumbs a,
.dm-fh6-wiki-breadcrumbs span,
.dm-fh6-wiki-hero h1,
.dm-fh6-wiki-hero p,
.dm-fh6-wiki-side a,
.dm-fh6-wiki-section h2,
.dm-fh6-rare-entry h3,
.dm-fh6-rare-info dd,
.dm-fh6-rare-callout,
.dm-fh6-wiki-takeaways h2,
.dm-fh6-wiki-cta h2,
.dm-fh6-wiki-section p,
.dm-fh6-wiki-section li,
.dm-fh6-wiki-card h3,
.dm-fh6-wiki-card p,
.dm-fh6-wiki-faq summary {
  overflow-wrap: anywhere;
}

.dm-fh6-wiki-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 5.35rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.dm-fh6-wiki-hero p {
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--dm-fh6-muted-strong);
  font-size: 1.08rem;
  line-height: 1.68;
}

.dm-fh6-wiki-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dm-fh6-wiki-meta span {
  border: 1px solid var(--dm-fh6-border);
  border-radius: 999px;
  background: rgba(13, 15, 21, 0.72);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
}

.dm-fh6-wiki-shell {
  width: min(1240px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0 82px;
}

.dm-fh6-wiki-side {
  position: sticky;
  top: calc(var(--header-height, 80px) + 18px);
  align-self: start;
  max-height: calc(100vh - (var(--header-height, 80px) + 42px));
  overflow-y: auto;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: var(--dm-fh6-card);
  padding: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset, 0 16px 40px rgba(0, 0, 0, 0.18);
}

.dm-fh6-wiki-side h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dm-fh6-wiki-side nav {
  display: grid;
  gap: 4px;
}

.dm-fh6-wiki-side a {
  display: block;
  max-width: 100%;
  border-radius: 7px;
  padding: 9px 10px;
  color: var(--dm-fh6-muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.dm-fh6-wiki-side a:hover,
.dm-fh6-wiki-side a:focus,
.dm-fh6-wiki-side a[aria-current="page"] {
  background: var(--dm-fh6-accent-soft);
  color: #fff;
}

.dm-fh6-wiki-main {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 24px;
}

.dm-fh6-wiki-section,
.dm-fh6-wiki-takeaways,
.dm-fh6-wiki-cta {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: var(--dm-fh6-card);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset, 0 18px 44px rgba(0, 0, 0, 0.18);
}

.dm-fh6-wiki-section--wide {
  overflow: hidden;
}

.dm-fh6-wiki-section h2,
.dm-fh6-wiki-takeaways h2,
.dm-fh6-wiki-cta h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.dm-fh6-wiki-section h2::after,
.dm-fh6-wiki-takeaways h2::after,
.dm-fh6-wiki-cta h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--dm-fh6-accent);
}

.dm-fh6-wiki-section p,
.dm-fh6-wiki-cta p {
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--dm-fh6-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.dm-fh6-wiki-section p:last-child {
  margin-bottom: 0;
}

.dm-fh6-wiki-section-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(720px, 100%);
  aspect-ratio: 16 / 7;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 45, 39, 0.16), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(6, 7, 10, 0.72);
}

.dm-fh6-wiki-section-figure img {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(14px, 2.6vw, 28px);
  object-fit: contain;
}

body[class*="dm-fh6-wiki-page--map"] .dm-fh6-wiki-section-figure {
  width: min(760px, 100%);
  aspect-ratio: 4 / 5;
}

body[class*="dm-fh6-wiki-page--map"] .dm-fh6-wiki-section-figure img {
  padding: clamp(8px, 1.6vw, 16px);
}

.dm-fh6-wiki-takeaways ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dm-fh6-wiki-takeaways li {
  border: 1px solid var(--dm-fh6-border);
  border-left-color: rgba(239, 31, 43, 0.55);
  border-radius: 8px;
  background: var(--dm-fh6-card-soft);
  padding: 12px 13px;
  color: var(--dm-fh6-muted-strong);
  line-height: 1.55;
}

.dm-fh6-rare-countdown {
  overflow: hidden;
}

.dm-fh6-rare-list {
  display: grid;
  gap: 18px;
}

.dm-fh6-rare-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 18px;
  min-width: 0;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(16px, 2.2vw, 22px);
}

.dm-fh6-rare-entry--no-media {
  grid-template-columns: 1fr;
}

.dm-fh6-rare-entry__body {
  min-width: 0;
}

.dm-fh6-rare-entry__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.dm-fh6-rare-entry h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.dm-fh6-rare-badge,
.dm-fh6-rare-updated {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 880;
  line-height: 1.15;
}

.dm-fh6-rare-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(239, 31, 43, 0.45);
  background: var(--dm-fh6-accent);
  padding: 7px 10px;
  color: #fff;
  text-transform: uppercase;
}

.dm-fh6-rare-updated {
  margin-top: 8px;
  border: 1px solid var(--dm-fh6-border);
  background: rgba(7, 8, 11, 0.72);
  padding: 6px 9px;
  color: rgba(245, 247, 251, 0.72);
}

.dm-fh6-rare-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.dm-fh6-rare-info div {
  min-width: 0;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.58);
  padding: 10px;
}

.dm-fh6-rare-info dt {
  margin: 0 0 5px;
  color: rgba(238, 242, 250, 0.56);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dm-fh6-rare-info dd {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 820;
  line-height: 1.3;
}

.dm-fh6-rare-entry p a,
.dm-fh6-wiki-section p a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(239, 31, 43, 0.75);
  text-underline-offset: 3px;
}

.dm-fh6-rare-entry p a:hover,
.dm-fh6-rare-entry p a:focus,
.dm-fh6-wiki-section p a:hover,
.dm-fh6-wiki-section p a:focus {
  color: #fff;
  text-decoration-color: #fff;
}

.dm-fh6-rare-callout {
  max-width: none !important;
  border: 1px solid rgba(239, 31, 43, 0.34);
  border-left: 3px solid var(--dm-fh6-accent);
  border-radius: 8px;
  background: rgba(239, 31, 43, 0.11);
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 760;
}

.dm-fh6-rare-entry__media {
  align-self: start;
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.62);
  padding: 12px;
}

.dm-fh6-rare-entry__media img {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 170px;
  object-fit: contain;
}

.dm-fh6-wiki-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.dm-fh6-wiki-card {
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: var(--dm-fh6-card-soft);
  padding: 16px;
}

.dm-fh6-wiki-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.98rem;
}

.dm-fh6-wiki-card__figure {
  margin: 10px 0 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.dm-fh6-wiki-card__media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 10px 0 12px;
}

.dm-fh6-wiki-card__media-grid .dm-fh6-wiki-card__figure {
  margin: 0;
}

.dm-fh6-wiki-card__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.dm-fh6-wiki-card__figure--car img {
  padding: 10px;
  background: radial-gradient(circle at center, rgba(255,255,255,.08), rgba(255,255,255,.02) 58%, rgba(0,0,0,.18));
}

.dm-fh6-wiki-card__figure--map img {
  object-fit: cover;
}

.dm-fh6-wiki-card__figure figcaption {
  padding: 7px 9px;
  color: rgba(238,242,248,.72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
}

.dm-fh6-wiki-card p {
  margin: 0;
  color: var(--dm-fh6-muted);
  line-height: 1.58;
}

.dm-fh6-new-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.dm-fh6-new-feature-card {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: var(--dm-fh6-card-soft);
  padding: 14px;
}

.dm-fh6-new-feature-card figure {
  display: grid;
  place-items: center;
  min-height: 126px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.52);
  overflow: hidden;
}

.dm-fh6-new-feature-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 128px;
  object-fit: contain;
}

.dm-fh6-new-feature-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.dm-fh6-new-feature-card p {
  margin: 0;
  color: var(--dm-fh6-muted);
  line-height: 1.55;
}

.dm-fh6-wiki-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dm-fh6-wiki-count {
  flex: 0 0 auto;
  border: 1px solid rgba(239, 31, 43, 0.32);
  border-radius: 999px;
  background: var(--dm-fh6-accent-soft);
  padding: 7px 11px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 850;
}

.dm-fh6-wiki-filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(160px, 220px) minmax(140px, 180px);
  gap: 12px;
  margin-bottom: 14px;
}

.dm-fh6-wiki-filters label {
  display: grid;
  gap: 6px;
  color: var(--dm-fh6-muted);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.dm-fh6-wiki-filters input,
.dm-fh6-wiki-filters select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.74);
  padding: 0 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  outline: none;
}

.dm-fh6-wiki-filters input:focus,
.dm-fh6-wiki-filters select:focus {
  border-color: rgba(239, 31, 43, 0.5);
  box-shadow: 0 0 0 3px var(--dm-fh6-ring);
}

.dm-fh6-wiki-table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.64);
  -webkit-overflow-scrolling: touch;
}

.dm-fh6-wiki-table-wrap--large {
  max-height: 720px;
}

.dm-fh6-wiki-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: transparent;
}

.dm-fh6-wiki-car-table {
  table-layout: fixed;
}

.dm-fh6-wiki-rank-table {
  min-width: 820px;
}

.dm-fh6-simple-table {
  table-layout: fixed;
}

.dm-fh6-simple-table th:first-child,
.dm-fh6-simple-table td:first-child {
  width: 36%;
}

.dm-fh6-simple-table th:nth-child(2),
.dm-fh6-simple-table td:nth-child(2) {
  width: 11%;
}

.dm-fh6-simple-table th:nth-child(3),
.dm-fh6-simple-table td:nth-child(3) {
  width: 23%;
}

.dm-fh6-simple-table th:nth-child(4),
.dm-fh6-simple-table td:nth-child(4) {
  width: 30%;
}

.dm-fh6-simple-table th {
  background: linear-gradient(180deg, #141923 0%, #0d1016 100%);
}

.dm-fh6-simple-table td {
  vertical-align: middle;
}

.dm-fh6-simple-table td:nth-child(2) {
  color: #fff;
  font-weight: 880;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.dm-fh6-simple-table td:nth-child(3) {
  color: rgba(245, 247, 251, 0.88);
  font-weight: 760;
}

.dm-fh6-map-region-table th:first-child,
.dm-fh6-map-region-table td:first-child {
  width: 16%;
}

.dm-fh6-map-region-table th:nth-child(2),
.dm-fh6-map-region-table td:nth-child(2) {
  width: 40%;
}

.dm-fh6-map-region-table th:nth-child(3),
.dm-fh6-map-region-table td:nth-child(3) {
  width: 44%;
}

.dm-fh6-map-region-table td:first-child {
  color: #fff;
  font-weight: 850;
  white-space: normal;
}

.dm-fh6-map-region-table td:nth-child(2),
.dm-fh6-map-region-table td:nth-child(3) {
  color: rgba(245, 247, 251, 0.86);
  font-weight: 620;
  line-height: 1.55;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.dm-fh6-wiki-table th,
.dm-fh6-wiki-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.dm-fh6-wiki-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0d1016;
  color: rgba(245, 247, 251, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dm-fh6-wiki-table td {
  color: var(--dm-fh6-muted);
  line-height: 1.45;
}

.dm-fh6-wiki-table tbody tr {
  transition: background 140ms ease;
}

.dm-fh6-wiki-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.dm-fh6-new-groups {
  overflow: hidden;
}

.dm-fh6-new-maker-list {
  display: grid;
  gap: 18px;
}

.dm-fh6-new-maker {
  min-width: 0;
}

.dm-fh6-new-maker h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.dm-fh6-new-maker h3::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--dm-fh6-accent);
  box-shadow: 0 0 0 4px rgba(239, 31, 43, 0.14);
}

.dm-fh6-new-table {
  min-width: 820px;
  table-layout: fixed;
}

.dm-fh6-new-table th:first-child,
.dm-fh6-new-table td:first-child {
  width: 25%;
}

.dm-fh6-new-table th:nth-child(2),
.dm-fh6-new-table td:nth-child(2) {
  width: 12%;
}

.dm-fh6-new-table th:nth-child(3),
.dm-fh6-new-table td:nth-child(3) {
  width: 25%;
}

.dm-fh6-new-car-title {
  display: block;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}

.dm-fh6-pick-table-wrap {
  margin-top: 18px;
}

.dm-fh6-pick-table {
  min-width: 840px;
  table-layout: fixed;
}

.dm-fh6-pick-table th:first-child,
.dm-fh6-pick-table td:first-child {
  width: 26%;
}

.dm-fh6-pick-table th:nth-child(2),
.dm-fh6-pick-table td:nth-child(2) {
  width: 10%;
}

.dm-fh6-pick-table th:nth-child(3),
.dm-fh6-pick-table td:nth-child(3) {
  width: 18%;
}

.dm-fh6-pick-table th:nth-child(4),
.dm-fh6-pick-table td:nth-child(4) {
  width: 20%;
}

.dm-fh6-pick-car {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dm-fh6-pick-car img {
  width: 92px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.58);
  object-fit: contain;
}

.dm-fh6-pick-car strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.dm-fh6-wiki-car-table th:first-child,
.dm-fh6-wiki-car-table td:first-child {
  width: 24%;
}

.dm-fh6-wiki-car-table th:nth-child(2),
.dm-fh6-wiki-car-table td:nth-child(2) {
  width: 5%;
}

.dm-fh6-wiki-car-table th:nth-child(3),
.dm-fh6-wiki-car-table td:nth-child(3) {
  width: 9%;
}

.dm-fh6-wiki-car-table th:nth-child(4),
.dm-fh6-wiki-car-table td:nth-child(4) {
  width: 8%;
}

.dm-fh6-wiki-car-table th:nth-child(n+5):nth-child(-n+10),
.dm-fh6-wiki-car-table td:nth-child(n+5):nth-child(-n+10) {
  width: 4%;
  padding-right: 6px;
  padding-left: 6px;
  text-align: center;
  white-space: nowrap;
}

.dm-fh6-wiki-car-table th:nth-child(11),
.dm-fh6-wiki-car-table td:nth-child(11) {
  width: 6%;
}

.dm-fh6-wiki-car-table th:nth-child(12),
.dm-fh6-wiki-car-table td:nth-child(12) {
  width: 20%;
}

.dm-fh6-car-cell,
.dm-fh6-car-mini {
  display: block;
  max-width: 100%;
  min-width: 0;
}

.dm-fh6-car-cell {
  width: 100%;
}

.dm-fh6-car-cell strong,
.dm-fh6-car-mini__label {
  display: block;
  color: #fff;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.dm-fh6-car-mini--image {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.dm-fh6-car-mini img {
  width: 78px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), rgba(7, 8, 11, 0.68) 64%);
  object-fit: contain;
}

.dm-fh6-car-cell .dm-fh6-car-meta {
  display: block;
  margin-top: 3px;
  color: rgba(238, 242, 250, 0.56);
  font-size: 0.78rem;
  line-height: 1.25;
}

.dm-fh6-car-cell .dm-fh6-car-quick {
  display: none;
}

.dm-fh6-stat-cell {
  text-align: center;
  font-weight: 850;
}

.dm-fh6-class-pill {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(239, 31, 43, 0.22);
  background: var(--dm-fh6-accent-soft);
  padding: 3px 8px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
}

.dm-fh6-wiki-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.dm-fh6-wiki-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dm-fh6-wiki-cta__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--dm-fh6-accent);
  padding: 0 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.dm-fh6-wiki-cta__actions a:hover,
.dm-fh6-wiki-cta__actions a:focus {
  background: #ff3340;
  transform: translateY(-1px);
}

.dm-fh6-wiki-cta__actions a + a {
  border-color: var(--dm-fh6-border-strong);
  background: transparent;
}

.dm-fh6-wiki-cta__actions a + a:hover,
.dm-fh6-wiki-cta__actions a + a:focus {
  border-color: rgba(245, 247, 251, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.dm-fh6-wiki-faq details {
  border: 1px solid var(--dm-fh6-border);
  border-radius: 8px;
  background: var(--dm-fh6-card-soft);
  padding: 14px 16px;
}

.dm-fh6-wiki-faq details + details {
  margin-top: 10px;
}

.dm-fh6-wiki-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.dm-fh6-wiki-faq details[open] {
  border-color: rgba(239, 31, 43, 0.34);
}

.dm-fh6-wiki-faq p {
  margin-top: 12px;
}

@media (max-width: 1080px) {
  .dm-fh6-wiki-hero h1 {
    font-size: 4.35rem;
  }

  .dm-fh6-wiki-shell {
    grid-template-columns: 1fr;
  }

  .dm-fh6-wiki-side {
    position: relative;
    top: auto;
  }

  .dm-fh6-wiki-side nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-fh6-wiki-cta {
    grid-template-columns: 1fr;
  }

  .dm-fh6-rare-entry {
    grid-template-columns: 1fr;
  }

  .dm-fh6-rare-entry__media {
    order: -1;
  }

  .dm-fh6-wiki-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .dm-fh6-wiki,
  .dm-fh6-wiki-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .dm-fh6-wiki-hero {
    min-height: auto;
    padding: 58px 18px 34px;
  }

  .dm-fh6-wiki-hero__content {
    width: min(340px, calc(100vw - 36px));
    max-width: min(340px, calc(100vw - 36px));
    margin-left: 0;
    margin-right: auto;
  }

  .dm-fh6-wiki-breadcrumbs,
  .dm-fh6-wiki-hero h1,
  .dm-fh6-wiki-hero p,
  .dm-fh6-wiki-meta {
    max-width: 340px;
  }

  .dm-fh6-wiki-hero::before {
    background: linear-gradient(90deg, rgba(7, 8, 11, 0.98), rgba(7, 8, 11, 0.84));
  }

  .dm-fh6-wiki-hero h1 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .dm-fh6-wiki-hero p {
    font-size: 1rem;
  }

  .dm-fh6-wiki-meta {
    display: grid;
  }

  .dm-fh6-wiki-meta span {
    width: fit-content;
    max-width: 100%;
  }

  .dm-fh6-wiki-shell {
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 24px;
  }

  .dm-fh6-wiki-side nav,
  .dm-fh6-wiki-takeaways ul,
  .dm-fh6-wiki-card-grid,
  .dm-fh6-wiki-card__media-grid,
  .dm-fh6-new-feature-grid,
  .dm-fh6-rare-info,
  .dm-fh6-wiki-filters {
    grid-template-columns: 1fr;
  }

  .dm-fh6-new-feature-card {
    grid-template-columns: 1fr;
  }

  .dm-fh6-new-feature-card figure {
    min-height: 116px;
  }

  .dm-fh6-rare-entry__head {
    display: grid;
  }

  .dm-fh6-rare-badge {
    justify-self: start;
  }

  .dm-fh6-wiki-section,
  .dm-fh6-wiki-takeaways,
  .dm-fh6-wiki-cta,
  .dm-fh6-wiki-side {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    padding: 20px 16px;
  }

  .dm-fh6-wiki-side a {
    max-width: 300px;
    white-space: normal;
  }

  .dm-fh6-wiki-section h2,
  .dm-fh6-wiki-takeaways h2,
  .dm-fh6-wiki-cta h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .dm-fh6-wiki-section__head {
    display: grid;
  }

  .dm-fh6-wiki-count {
    justify-self: start;
  }

  .dm-fh6-wiki-table {
    min-width: 0;
  }

  .dm-fh6-simple-table {
    min-width: 0;
  }

  .dm-fh6-simple-table thead {
    display: none;
  }

  .dm-fh6-simple-table,
  .dm-fh6-simple-table tbody,
  .dm-fh6-simple-table tr,
  .dm-fh6-simple-table td {
    display: block;
    width: 100% !important;
  }

  .dm-fh6-simple-table tr {
    padding: 12px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .dm-fh6-simple-table td {
    display: grid;
    grid-template-columns: minmax(78px, 32%) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-bottom: 0;
    padding: 6px 0;
  }

  .dm-fh6-simple-table .dm-fh6-car-mini--image {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .dm-fh6-simple-table .dm-fh6-car-mini img {
    width: 72px;
    height: 46px;
  }

  .dm-fh6-simple-table td::before {
    content: attr(data-label);
    color: rgba(238, 242, 250, 0.58);
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .dm-fh6-map-region-table td {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .dm-fh6-map-region-table td::before {
    margin-bottom: 1px;
  }

  .dm-fh6-wiki-rank-table {
    min-width: 0;
  }

  .dm-fh6-wiki-rank-table thead {
    display: none;
  }

  .dm-fh6-wiki-rank-table,
  .dm-fh6-wiki-rank-table tbody,
  .dm-fh6-wiki-rank-table tr,
  .dm-fh6-wiki-rank-table td {
    display: block;
    width: 100% !important;
  }

  .dm-fh6-wiki-rank-table tr {
    padding: 12px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .dm-fh6-wiki-rank-table td {
    display: grid;
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-bottom: 0;
    padding: 6px 0;
  }

  .dm-fh6-wiki-rank-table td::before {
    content: attr(data-label);
    color: rgba(238, 242, 250, 0.58);
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .dm-fh6-wiki-rank-table .dm-fh6-car-mini--image {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .dm-fh6-wiki-rank-table .dm-fh6-car-mini img {
    width: 78px;
    height: 50px;
  }

  .dm-fh6-new-table {
    min-width: 0;
  }

  .dm-fh6-new-table thead {
    display: none;
  }

  .dm-fh6-new-table,
  .dm-fh6-new-table tbody,
  .dm-fh6-new-table tr,
  .dm-fh6-new-table td {
    display: block;
    width: 100% !important;
  }

  .dm-fh6-new-table tr {
    padding: 12px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .dm-fh6-new-table td {
    display: grid;
    grid-template-columns: minmax(72px, 34%) minmax(0, 1fr);
    gap: 10px;
    border-bottom: 0;
    padding: 5px 0;
  }

  .dm-fh6-new-table td::before {
    content: attr(data-label);
    color: rgba(238, 242, 250, 0.58);
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .dm-fh6-new-table .dm-fh6-class-pill {
    justify-self: start;
  }

  .dm-fh6-pick-table {
    min-width: 0;
  }

  .dm-fh6-pick-table thead {
    display: none;
  }

  .dm-fh6-pick-table,
  .dm-fh6-pick-table tbody,
  .dm-fh6-pick-table tr,
  .dm-fh6-pick-table td {
    display: block;
    width: 100% !important;
  }

  .dm-fh6-pick-table tr {
    padding: 12px 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .dm-fh6-pick-table td {
    display: grid;
    grid-template-columns: minmax(78px, 32%) minmax(0, 1fr);
    gap: 10px;
    border-bottom: 0;
    padding: 6px 0;
  }

  .dm-fh6-pick-table td::before {
    content: attr(data-label);
    color: rgba(238, 242, 250, 0.58);
    font-size: 0.64rem;
    font-weight: 850;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .dm-fh6-pick-car {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .dm-fh6-pick-car img {
    width: 84px;
    height: 54px;
  }

  .dm-fh6-pick-table .dm-fh6-class-pill {
    justify-self: start;
  }

  .dm-fh6-wiki-car-table thead {
    display: none;
  }

  .dm-fh6-wiki-car-table,
  .dm-fh6-wiki-car-table tbody,
  .dm-fh6-wiki-car-table tr,
  .dm-fh6-wiki-car-table td {
    display: block;
    width: 100%;
  }

  .dm-fh6-wiki-car-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .dm-fh6-wiki-car-table td {
    border-bottom: 0;
  }

  .dm-fh6-wiki-car-table td:not(:first-child) {
    display: none;
  }

  .dm-fh6-car-cell {
    width: 100%;
    min-width: 0;
  }

  .dm-fh6-car-cell .dm-fh6-car-quick {
    display: block;
    max-width: 100%;
    margin-top: 7px;
    color: rgba(238, 242, 250, 0.7);
    font-size: 0.72rem;
    line-height: 1.38;
  }
}

@media (max-width: 420px) {
  .dm-fh6-wiki-hero__content,
  .dm-fh6-wiki-breadcrumbs,
  .dm-fh6-wiki-hero h1,
  .dm-fh6-wiki-hero p,
  .dm-fh6-wiki-meta {
    width: min(320px, calc(100vw - 36px));
    max-width: min(320px, calc(100vw - 36px));
  }

  .dm-fh6-wiki-hero h1 {
    font-size: 1.95rem;
  }

  .dm-fh6-wiki-side a {
    max-width: 284px;
    font-size: 0.84rem;
  }
}
