/* Parisonlinefr — Global Stylesheet with Reset and Design System */

/* 1) Modern CSS Reset to remove default browser styles */
/* Based on Andy Bell's & Josh Comeau's suggestions */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html:focus-within {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove default list styles on ul, ol elements with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}
ul,
ol {
  padding-left: 1.1rem;
}
/* Allow headings to wrap correctly */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
}

/* 2) Design Tokens */
:root {
  /* Background */
  --dom-bg: #0d111a; /* neutral deep navy */
  --dom-bg-2: #0a0e16; /* base gradient end */
  --dom-bg-card: #111827; /* neutral card */
  --dom-surface: #0f1624; /* softer panel */

  /* Brand & Accents (calmer palette) */
  --dom-primary: #4f8cff; /* calm azure */
  --dom-primary-2: #88d1ff; /* light azure */
  --dom-accent: #ffd89a; /* soft amber */
  --dom-success: #37c896; /* mint green */
  --dom-danger: #ff6b6b; /* coral */

  /* Text */
  --dom-text: #e5e7eb; /* near-white */
  --dom-text-dim: #b5bfd4; /* muted */

  /* Lines & radii */
  --dom-border: rgba(255, 255, 255, 0.06);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  /* Layout */
  --container: 1160px;
  --gutter: 18px;

  /* Shadows & focus */
  --dom-shadow: 0 10px 24px rgba(4, 7, 16, 0.35);
  --focus: 0 0 0 3px rgba(136, 209, 255, 0.55);
}

/* 3) Base */
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--dom-text);
  background: linear-gradient(180deg, var(--dom-bg), var(--dom-bg-2));
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 8px;
}

/* 4) Layout helpers */
.dom-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* 5) Typography */
.dom-title,
.dom-sectionTitle {
  font-family: "Unbounded", system-ui;
  font-weight: 800;
}
.dom-text {
  color: var(--dom-text-dim);
}

/* 6) Hero (headerless) */
.dom-hero {
  padding: 28px 0 10px;
}
.dom-hero__wrap {
  display: grid;
  gap: 14px;
}
.dom-hero__title {
  font-family: "Unbounded", system-ui;
  font-weight: 800;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.12;
}
.dom-hero__subtitle {
  color: var(--dom-text-dim);
  font-size: clamp(15px, 1.7vw, 18px);
}
.dom-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.dom-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--dom-bg-card);
  border: 1px solid var(--dom-border);
  border-radius: 12px;
  box-shadow: var(--dom-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dom-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(6, 9, 20, 0.45), 0 3px 8px rgba(0, 0, 0, 0.35);
}
.dom-badge__icon {
  width: 22px;
  height: 22px;
}

/* 7) List + Cards */
.dom-list {
  padding: 8px 0 16px;
}
.dom-cards {
  display: grid;
  gap: 10px;
}
.dom-card {
  padding: 12px;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.96),
    rgba(15, 22, 36, 0.96)
  );
  border: 1px solid var(--dom-border);
  border-radius: 14px;
  box-shadow: var(--dom-shadow);
}
.dom-card {
  margin-bottom: 16px;
}
.card {
  display: grid;
  grid-template-columns: 40px 2fr 1fr 1fr;
  gap: 10px;
  align-items: center;
}
.dom-chip {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Unbounded";
  font-size: 14px;
  color: #0b1220;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--dom-accent), #f4c77f);
}
.dom-brandRow {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
  align-items: center;
}
.dom-logo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dom-border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 10px;
}
.dom-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dom-meta {
  display: grid;
  gap: 6px;
  align-content: center;
}
.dom-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dom-score {
  font-weight: 800;
  color: var(--dom-success);
  font-size: 14px;
}
.dom-line {
  color: var(--dom-text-dim);
  font-size: 13px;
  margin: 0;
}
.dom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dom-tag {
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid var(--dom-border);
  border-radius: 999px;
  color: var(--dom-text-dim);
  background: rgba(255, 255, 255, 0.02);
}
.dom-bonus {
  font-size: 13px;
  color: var(--dom-text);
  background: rgba(79, 140, 255, 0.08);
  border: 1px dashed rgba(136, 209, 255, 0.6);
  padding: 6px 8px;
  border-radius: 8px;
}
.dom-bonusBlock {
  margin: 4px 0 2px;
}
.dom-cta {
  display: grid;
  gap: 8px;
  justify-items: center;
}
.dom-btn {
  appearance: none;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  padding: 10px 14px;
  font-weight: 800;
  border-radius: 10px;
  border: 1px solid rgba(136, 209, 255, 0.4);
  color: #0b1220;
  background: linear-gradient(135deg, var(--dom-primary-2), var(--dom-primary));
  box-shadow: 0 6px 16px rgba(13, 61, 96, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  font-size: 14px;
}
.dom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 61, 96, 0.35);
  filter: brightness(1.05);
}
.dom-pay {
  display: flex;
  gap: 6px;
  opacity: 0.95;
}
.dom-pay img {
  width: 44px;
  height: 25px;
  object-fit: contain;
}
/* 8) Content Sections */
.dom-section {
  padding: 18px 0;
}
.dom-title {
  font-size: clamp(21px, 3vw, 30px);
  margin: 10px 0 8px;
}
.dom-sectionTitle {
  font-size: clamp(22px, 3vw, 32px);
  margin: 22px 0 8px;
}
.dom-text {
  margin: 6px 0;
}
.dom-listing {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: grid;
  gap: 8px;
}
.dom-listing li {
  background: var(--dom-bg-card);
  border: 1px solid var(--dom-border);
  border-radius: 12px;
  padding: 10px 12px;
}

/* 9) FAQ */
.dom-faq {
  display: grid;
  gap: 10px;
}
.dom-faq details {
  background: var(--dom-bg-card);
  border: 1px solid var(--dom-border);
  border-radius: 12px;
  padding: 10px 12px;
}
.dom-faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* 10) Footer */
.dom-footer {
  border-top: 1px solid var(--dom-border);
  background: #0a0f1a;
  padding: 24px 0;
  color: var(--dom-text-dim);
}
.dom-footer__grid {
  display: grid;
  gap: 16px;
}
.dom-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dom-logoBadge {
  width: 100px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dom-border);
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 10px rgba(4, 7, 16, 0.25);
}
.dom-logoBadge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 18px rgba(4, 7, 16, 0.35);
}
.dom-logoBadge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dom-footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dom-footerLinks a {
  padding: 6px 10px;
  border: 1px solid var(--dom-border);
  border-radius: 10px;
}

/* 11) Responsive */
@media (max-width: 840px) {
  .dom-brandRow {
    grid-template-columns: 1fr;
  }

  .card {
    grid-template-columns: 1fr;
  }
  .dom-cta {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .dom-badge {
    font-size: 0.6rem;
    padding: 6px;
  }
  .dom-badge__icon {
    width: 18px;
    height: 18px;
  }
}

/* 12) Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
