/* ============================================================
   pinco-review-az.com — style.css
   PREFIX: p7x | PALETTE: dark | FONTS: Montserrat + Inter
   ============================================================ */

/* 1. GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500&display=swap");

/* 2. RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img,
video {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
input,
textarea,
select {
  font: inherit;
}

/* 3. :ROOT */
:root {
  --bg-base: #0d0f1a;
  --bg-card: #161929;
  --accent: #ff5c1a;
  --highlight: #ffb800;
  --text: #f0f2ff;
  --muted: #8a90a8;
  --border: #2a2e45;

  --font-head: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: 0.2s ease;
  --ease-slow: 0.4s ease;

  --container-max: 1200px;
  --container-pad: 1rem;

  --sticky-h: 68px;
}

/* 4. HTML / BODY */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  padding-bottom: var(--sticky-h);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* 5. TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}
h1 {
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 1rem;
  color: var(--text);
}
p:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
  color: var(--highlight);
}
em {
  color: var(--muted);
  font-style: normal;
}
a {
  color: var(--accent);
  transition: color var(--ease);
}
a:hover {
  color: var(--highlight);
}
small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* 6. CONTAINER */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (min-width: 768px) {
  .container {
    --container-pad: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    --container-pad: 2rem;
  }
}

/* 7. BUTTONS */
.p7x_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease);
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  white-space: nowrap;
  cursor: pointer;
}
.p7x_btn:active {
  transform: scale(0.97);
}

/* Primary */
.p7x_btn--primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(255, 92, 26, 0.35);
}
.p7x_btn--primary:hover {
  background: #ff7340;
  box-shadow: 0 6px 28px rgba(255, 92, 26, 0.5);
  transform: translateY(-2px);
  color: var(--text);
}

/* Highlight */
.p7x_btn--highlight {
  background: var(--highlight);
  color: #0d0f1a;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}
.p7x_btn--highlight:hover {
  background: #ffc61a;
  box-shadow: 0 6px 28px rgba(255, 184, 0, 0.45);
  transform: translateY(-2px);
  color: #0d0f1a;
}

/* Outline */
.p7x_btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.p7x_btn--outline:hover {
  background: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

/* Ghost */
.p7x_btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.p7x_btn--ghost:hover {
  border-color: var(--muted);
  color: var(--text);
}

/* Sizes */
.p7x_btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  min-height: 36px;
}
.p7x_btn--lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  min-height: 52px;
}
.p7x_btn--full {
  width: 100%;
}

/* 8. NAVIGATION */
.p7x_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.p7x_nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}
.p7x_nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.p7x_nav__logo img {
  height: 36px;
  width: auto;
}
.p7x_nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.p7x_nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.p7x_nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.p7x_nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.p7x_nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop links — hidden by default (mobile-first) */
.p7x_nav__links {
  display: none;
}
.p7x_nav__cta-wrap {
  display: none;
}

/* Mobile nav panel */
.p7x_mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem var(--container-pad) 1.5rem;
}
.p7x_mobile-nav.open {
  display: flex;
}
.p7x_mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.p7x_mobile-nav a:last-child {
  border-bottom: none;
}
.p7x_mobile-nav a:hover {
  color: var(--accent);
}
.p7x_mobile-nav .p7x_btn {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .p7x_nav__toggle {
    display: none;
  }
  .p7x_mobile-nav {
    display: none !important;
  }

  .p7x_nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    padding-left: 1.5rem;
  }
  .p7x_nav__links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-sm);
    transition:
      color var(--ease),
      background var(--ease);
    white-space: nowrap;
  }
  .p7x_nav__links a:hover,
  .p7x_nav__links a.active {
    color: var(--text);
    background: var(--border);
  }

  .p7x_nav__cta-wrap {
    display: flex;
  }
}

/* 9. TICKER */
.p7x_ticker {
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.45rem 0;
}
.p7x_ticker__track {
  display: inline-block;
  animation: p7x-ticker 28s linear infinite;
}
.p7x_ticker__track span {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--text);
  padding: 0 2.5rem;
}
.p7x_ticker__track span::before {
  content: "★ ";
}
@keyframes p7x-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 10. HERO — Layout A: single col mobile, split at 1024px */
.p7x_hero {
  padding: 2.5rem 0 2rem;
}
.p7x_hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.p7x_hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--highlight);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.p7x_hero__h1 {
  margin-bottom: 1rem;
}
.p7x_hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.p7x_hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.p7x_hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p7x_hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.p7x_hero__meta-item svg {
  flex-shrink: 0;
}

/* Bonus widget */
.p7x_bonus-widget {
  background: linear-gradient(145deg, var(--bg-card), #1e2238);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.p7x_bonus-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}
.p7x_bonus-widget__label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.p7x_bonus-widget__amount {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.p7x_bonus-widget__sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.p7x_bonus-widget__code-wrap {
  background: var(--bg-base);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.p7x_bonus-widget__code-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.2rem;
}
.p7x_bonus-widget__code {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--accent);
  letter-spacing: 0.04em;
}
.p7x_copy-btn {
  background: var(--accent);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  transition: background var(--ease);
  min-height: 36px;
  min-width: 64px;
}
.p7x_copy-btn:hover {
  background: #ff7340;
}
.p7x_bonus-widget__perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.p7x_bonus-widget__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
}
.p7x_bonus-widget__perk::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255, 92, 26, 0.15);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.p7x_bonus-widget__terms {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .p7x_hero {
    padding: 3.5rem 0 3rem;
  }
  .p7x_hero__grid {
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }
  .p7x_bonus-widget {
    position: sticky;
    top: 80px;
  }
}

/* 11. TRUST BAR */
.p7x_trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 80px;
}
.p7x_trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.p7x_trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.p7x_trust-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 92, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.p7x_trust-item__title {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--text);
  display: block;
}
.p7x_trust-item__sub {
  font-size: 0.72rem;
  color: var(--muted);
}
@media (min-width: 768px) {
  .p7x_trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 12. CONTENT SECTIONS */
.p7x_section {
  padding: 2.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
.p7x_section--alt {
  background: var(--bg-card);
}
.p7x_section--bordered {
  border-top: 1px solid var(--border);
}

.p7x_section__header {
  margin-bottom: 1.5rem;
}
.p7x_section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.p7x_section__intro {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 680px;
}

/* Cards grid */
.p7x_cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p7x_cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .p7x_cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p7x_card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition:
    border-color var(--ease),
    transform var(--ease);
}
.p7x_card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.p7x_card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}
.p7x_card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.p7x_card__text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* 2-col content grid */
.p7x_content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p7x_content-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .p7x_content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Pros/Cons */
.p7x_pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .p7x_pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.p7x_pros,
.p7x_cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.p7x_pros {
  border-top: 3px solid #2ec97e;
}
.p7x_cons {
  border-top: 3px solid #f04a5a;
}
.p7x_pros__title,
.p7x_cons__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.p7x_pros__title {
  color: #2ec97e;
}
.p7x_cons__title {
  color: #f04a5a;
}
.p7x_pros li,
.p7x_cons li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}
.p7x_pros li:last-child,
.p7x_cons li:last-child {
  border-bottom: none;
}
.p7x_pros li::before {
  content: "✓";
  color: #2ec97e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.p7x_cons li::before {
  content: "✗";
  color: #f04a5a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Promo code highlight box */
.p7x_promo-box {
  background: linear-gradient(
    135deg,
    rgba(255, 92, 26, 0.1),
    rgba(255, 184, 0, 0.08)
  );
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  margin: 1.5rem 0;
}
.p7x_promo-box::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12), transparent 70%);
  pointer-events: none;
}
.p7x_promo-box__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.p7x_promo-box__amount {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.p7x_promo-box__code {
  display: inline-block;
  background: var(--bg-base);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.p7x_promo-box__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) {
  .p7x_promo-box__list {
    grid-template-columns: 1fr 1fr;
  }
}
.p7x_promo-box__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
}
.p7x_promo-box__item span:first-child {
  width: 22px;
  height: 22px;
  background: rgba(255, 184, 0, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--highlight);
  font-weight: 700;
  flex-shrink: 0;
}

/* 13. TABLES */
.p7x_table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}
.p7x_table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.88rem;
}
.p7x_table th {
  background: var(--bg-card);
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.p7x_table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.4;
}
.p7x_table tr:last-child td {
  border-bottom: none;
}
.p7x_table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.p7x_table tr:hover td {
  background: rgba(255, 92, 26, 0.04);
}
.p7x_badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.p7x_badge--green {
  background: rgba(46, 201, 126, 0.15);
  color: #2ec97e;
}
.p7x_badge--yellow {
  background: rgba(255, 184, 0, 0.15);
  color: var(--highlight);
}
.p7x_badge--red {
  background: rgba(240, 74, 90, 0.15);
  color: #f04a5a;
}
.p7x_badge--blue {
  background: rgba(64, 156, 255, 0.15);
  color: #409cff;
}

/* Steps list */
.p7x_steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p7x_step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.p7x_step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.p7x_step__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}
.p7x_step__body strong {
  color: var(--highlight);
}
.p7x_step__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--text);
  display: block;
}

/* Info box */
.p7x_info-box {
  background: rgba(64, 156, 255, 0.08);
  border-left: 3px solid #409cff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}
.p7x_warn-box {
  background: rgba(255, 184, 0, 0.08);
  border-left: 3px solid var(--highlight);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

/* Author card */
.p7x_author-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 2rem 0;
}
.p7x_author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  flex-shrink: 0;
}
.p7x_author-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}
.p7x_author-card__role {
  font-size: 0.8rem;
  color: var(--muted);
}
.p7x_author-card__bio {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Rating stars */
.p7x_rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.p7x_stars {
  color: var(--highlight);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.p7x_rating__score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.p7x_rating__of {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Review cards */
.p7x_review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p7x_review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.p7x_review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.p7x_review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.p7x_review-card__user {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.p7x_review-card__date {
  font-size: 0.75rem;
  color: var(--muted);
}
.p7x_review-card__text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Payment method list */
.p7x_pay-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .p7x_pay-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .p7x_pay-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p7x_pay-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color var(--ease);
}
.p7x_pay-item:hover {
  border-color: var(--accent);
}
.p7x_pay-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 92, 26, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.p7x_pay-item__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
}
.p7x_pay-item__detail {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Article-style text sections */
.p7x_article {
  max-width: 780px;
}
.p7x_article p {
  line-height: 1.75;
  font-size: 0.97rem;
}

/* Expertise list (author page) */
.p7x_expertise {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .p7x_expertise {
    grid-template-columns: 1fr 1fr;
  }
}

.p7x_expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}
.p7x_expertise-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.p7x_expertise-item__title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}
.p7x_expertise-item__text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* Author avatar large */
.p7x_author-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.p7x_author-avatar-lg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .p7x_author-hero {
    flex-direction: row;
    align-items: center;
  }
}

/* Article list */
.p7x_article-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p7x_article-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--ease);
}
.p7x_article-link:hover {
  border-color: var(--accent);
}
.p7x_article-link__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.p7x_article-link__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}
.p7x_article-link__desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Disclaimer + Privacy prose */
.p7x_legal {
  max-width: 820px;
}
.p7x_legal h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.p7x_legal h3 {
  margin-top: 1.5rem;
  font-size: 1rem;
}
.p7x_legal ul,
.p7x_legal ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.p7x_legal ul li,
.p7x_legal ol li {
  list-style: disc;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.p7x_legal ol li {
  list-style: decimal;
}

/* Responsible gaming checklist */
.p7x_checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}
.p7x_checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  line-height: 1.5;
}
.p7x_checklist-item::before {
  content: "⚠";
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Support contact cards */
.p7x_contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p7x_contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.p7x_contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition:
    border-color var(--ease),
    transform var(--ease);
}
.p7x_contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.p7x_contact-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.p7x_contact-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  display: block;
}
.p7x_contact-card__hours {
  font-size: 0.8rem;
  color: #2ec97e;
  margin-bottom: 0.5rem;
  display: block;
}
.p7x_contact-card__note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* 14. FAQ ACCORDION */
.p7x_faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.p7x_faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}
.p7x_faq-item.open {
  border-color: var(--accent);
}
.p7x_faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  min-height: 44px;
}
.p7x_faq-btn__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease);
  color: var(--muted);
}
.p7x_faq-item.open .p7x_faq-btn__icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}
.p7x_faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-slow);
}
.p7x_faq-item.open .p7x_faq-answer {
  max-height: 600px;
}
.p7x_faq-answer__inner {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.p7x_faq-answer__inner p {
  margin-bottom: 0.5rem;
}
.p7x_faq-answer__inner p:last-child {
  margin-bottom: 0;
}

/* 15. CTA BAND */
.p7x_cta-band {
  background: linear-gradient(135deg, #1a1040, #0f1520, #200a0a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 0 220px;
}
.p7x_cta-band__title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}
.p7x_cta-band__sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.p7x_cta-band__code {
  display: inline-block;
  background: var(--bg-card);
  border: 1px dashed var(--highlight);
  border-radius: var(--radius-md);
  padding: 0.35rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--highlight);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.p7x_cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* 16. FOOTER */
.p7x_footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  content-visibility: auto;
  contain-intrinsic-size: 0 300px;
}
.p7x_footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p7x_footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.p7x_footer__brand img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
}
.p7x_footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}
.p7x_footer__col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: block;
}
.p7x_footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.p7x_footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--ease);
}
.p7x_footer__links a:hover {
  color: var(--text);
}
.p7x_footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .p7x_footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.p7x_footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}
.p7x_footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.p7x_footer__legal-links a {
  font-size: 0.78rem;
  color: var(--muted);
}
.p7x_footer__legal-links a:hover {
  color: var(--text);
}
.p7x_footer__disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  opacity: 0.7;
}

/* 17. STICKY MOBILE CTA */
.p7x_sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  height: var(--sticky-h);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
}
.p7x_sticky-cta__text {
  flex: 1;
  min-width: 0;
}
.p7x_sticky-cta__bonus {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--highlight);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p7x_sticky-cta__sub {
  font-size: 0.7rem;
  color: var(--muted);
}
.p7x_sticky-cta .p7x_btn {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 0.6rem 1rem;
}
@media (min-width: 768px) {
  .p7x_sticky-cta {
    display: none;
  }
}

/* 18. ANIMATIONS */
@keyframes p7x-fadein {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes p7x-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 26, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 92, 26, 0);
  }
}
.p7x_animate {
  opacity: 0;
}
.p7x_animate.p7x_visible {
  animation: p7x-fadein 0.55s ease forwards;
}
.p7x_animate--delay1 {
  animation-delay: 0.1s;
}
.p7x_animate--delay2 {
  animation-delay: 0.2s;
}
.p7x_animate--delay3 {
  animation-delay: 0.3s;
}
.p7x_pulse {
  animation: p7x-pulse 2.2s infinite;
}

/* 19. RESPONSIVE EXTRAS */
@media (min-width: 480px) {
  :root {
    --container-pad: 1.25rem;
  }
}
@media (min-width: 768px) {
  .p7x_hero {
    padding: 3rem 0 2.5rem;
  }
  h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }
}
@media (min-width: 1024px) {
  .p7x_section {
    padding: 3.5rem 0;
  }
}

/* Utility */
.p7x_text-accent {
  color: var(--accent);
}
.p7x_text-highlight {
  color: var(--highlight);
}
.p7x_text-muted {
  color: var(--muted);
}
.p7x_text-center {
  text-align: center;
}
.p7x_mt1 {
  margin-top: 1rem;
}
.p7x_mt2 {
  margin-top: 2rem;
}
.p7x_mb1 {
  margin-bottom: 1rem;
}
.p7x_mb2 {
  margin-bottom: 2rem;
}
.p7x_visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
