/* ==========================================================================
   Absolut FUT — shared stylesheet for the static SEO landing pages.

   index.html keeps its own inline CSS; this file styles the subpages
   (/buy-fc-coins-*/, /fut-champions-boost/, /rivals-boost/, /trading-group/,
   and the guides). Everything below deliberately mirrors index.html's design
   system — same tokens, same grain overlay, same nav treatment, same
   section-label/title/desc rhythm, same button and card styling — so a
   visitor landing here from Google sees the same site, not a stripped-down
   satellite. If index.html's design changes, mirror it here.
   ========================================================================== */

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

:root {
  --red: #cc0000;
  --red-dark: #990000;
  --red-bright: #e80000;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #181818;
  --border: rgba(255,255,255,0.08);
  --border-red: rgba(204,0,0,0.4);
  --text: #ffffff;
  --text-muted: #999999;
  --text-dim: #7a7a7a;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-card: 0 18px 50px -20px rgba(0,0,0,0.7);
  --shadow-red: 0 14px 40px -14px rgba(204,0,0,0.4);
  --ring: 0 0 0 3px rgba(204,0,0,0.4);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a, button, select, input, label { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }

/* premium grain overlay — same texture pass index.html uses over flat darks */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 500;
  background: var(--red); color: #fff; padding: 0.7rem 1.1rem;
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── PROMO BAR ─────────────────────────────────────────────────────────── */
.promo-bar {
  position: relative;
  z-index: 210;
  background: linear-gradient(90deg, var(--red-dark), var(--red) 55%, var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  text-align: center;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.promo-bar-txt {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; opacity: 0.92;
}
.promo-bar-code {
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.2rem 0.7rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.06em; line-height: 1.4;
}
@media (max-width: 560px) {
  .promo-bar { font-size: 0.7rem; padding: 0.55rem 0.85rem; gap: 0.6rem; }
}

/* ── NAV — same treatment as index.html: bg photo + dark wash, red hairline ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(rgba(8,8,8,0.86), rgba(8,8,8,0.86)), url('/bg3_1.jpg') bottom center/cover no-repeat;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border-red);
  padding: 0 2rem;
}
.site-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: relative; gap: 1rem;
}
.site-nav-logo {
  display: flex; align-items: center; text-decoration: none;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 201;
}
.site-nav-logo img { height: 32px; width: auto; display: block; }
.site-nav-links { display: flex; align-items: center; gap: 0.2rem; z-index: 201; }
.site-nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none;
  padding: 0.45rem 0.75rem; border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.site-nav-links a:hover { color: var(--text); background: rgba(204,0,0,0.1); }
.site-nav-links a[aria-current="page"] { color: var(--text); background: rgba(204,0,0,0.16); }
/* below 1080 the centered logo would collide with the links — stack instead */
@media (max-width: 1080px) {
  .site-nav { padding: 0 1rem; }
  .site-nav-inner { flex-direction: column; height: auto; padding: 0.7rem 0 0.55rem; gap: 0.4rem; }
  /* order:-1 floats the logo above both link groups once they stack */
  .site-nav-logo { position: static; transform: none; order: -1; }
  .site-nav-links { flex-wrap: wrap; justify-content: center; gap: 0.15rem; }
  .site-nav-links a { font-size: 0.82rem; padding: 0.3rem 0.5rem; letter-spacing: 0.04em; }
}

/* ── BREADCRUMBS ───────────────────────────────────────────────────────── */
.crumbs {
  padding: 1.35rem 1.5rem 0; max-width: 1200px; margin: 0 auto;
  font-size: 0.78rem; color: var(--text-dim);
  display: flex; gap: 0.45rem; flex-wrap: wrap; align-items: center;
  font-family: var(--font-head); letter-spacing: 0.05em; text-transform: uppercase;
}
.crumbs a { color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.crumbs a:hover { color: var(--red-bright); }
.crumbs span[aria-current] { color: var(--text-muted); }

/* ── PAGE HERO — mirrors the service-panel photo wash on the homepage ───── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 3.75rem;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,0.95) 100%),
    url('/background.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid var(--border);
}
.page-hero > .container, .page-hero > .container-narrow { position: relative; z-index: 1; }

.page-eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
  margin-bottom: 1.25rem; text-wrap: balance;
}
.page-lede {
  font-size: 1.05rem; color: var(--text-muted); max-width: 56ch; line-height: 1.7;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 1.85rem; }

/* ── BUTTONS — identical to index.html ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  padding: 0.75rem 1.75rem; border-radius: var(--radius); border: none;
  cursor: pointer; transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 0 24px rgba(204,0,0,0.4); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ── SECTIONS ──────────────────────────────────────────────────────────── */
section.block { padding: 4.5rem 1.5rem; }
section.block + section.block { padding-top: 0; }
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900; text-transform: uppercase; line-height: 0.98;
  margin-bottom: 1.1rem; text-wrap: balance;
}
h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: 2rem 0 0.7rem; line-height: 1.2;
}
p { margin-bottom: 1rem; color: var(--text-muted); max-width: 68ch; line-height: 1.7; }
strong { color: var(--text); font-weight: 600; }
em { font-style: italic; }
ul.prose, ol.prose { margin: 0 0 1.15rem 1.3rem; color: var(--text-muted); }
ul.prose li, ol.prose li { margin-bottom: 0.55rem; max-width: 64ch; line-height: 1.7; }
ul.prose li::marker, ol.prose li::marker { color: var(--red); font-weight: 700; }
.prose a, .callout a, p a, .faq-item a { color: var(--red-bright); text-decoration: none; border-bottom: 1px solid rgba(232,0,0,0.35); }
.prose a:hover, .callout a:hover, p a:hover, .faq-item a:hover { color: #fff; border-bottom-color: #fff; }

/* ── PRICE TABLE — styled as the homepage's pack strips ────────────────── */
.price-table-wrap { overflow-x: auto; margin: 1.5rem 0 0.75rem; }
table.price-table {
  border-collapse: separate; border-spacing: 0 0.6rem;
  width: 100%; min-width: 380px;
}
table.price-table th {
  text-align: left; font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-dim);
  padding: 0 1rem 0.35rem; white-space: nowrap; border: none;
}
table.price-table td {
  background: var(--bg-card2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.85rem 1rem; color: var(--text-muted); vertical-align: middle;
  transition: background 0.2s, border-color 0.2s;
}
table.price-table td:first-child { border-left: 1px solid var(--border); border-radius: var(--radius) 0 0 var(--radius); }
table.price-table td:last-child { border-right: 1px solid var(--border); border-radius: 0 var(--radius) var(--radius) 0; }
table.price-table tbody tr:hover td { background: rgba(204,0,0,0.06); border-color: rgba(204,0,0,0.45); }
table.price-table td.amount {
  font-family: var(--font-head); font-weight: 900; font-size: 1.15rem;
  color: var(--text); white-space: nowrap; letter-spacing: 0.02em;
}
table.price-table td.price {
  font-family: var(--font-head); font-weight: 900; font-size: 1.2rem;
  color: var(--red); text-align: right; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
table.price-table td.num { font-variant-numeric: tabular-nums; white-space: nowrap; font-size: 0.9rem; }
.tag-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: 0.56rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px; margin-left: 0.55rem;
  vertical-align: middle; box-shadow: 0 2px 8px rgba(204,0,0,0.45);
}
.tag-badge.value { background: #00b67a; box-shadow: 0 2px 8px rgba(0,182,122,0.45); }
.table-note { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.35rem; }

/* ── CARDS ─────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 1rem; margin: 1.75rem 0 0;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(204,0,0,0.45); transform: translateY(-3px); }
.card h3 { margin: 0 0 0.45rem; font-size: 1rem; letter-spacing: 0.04em; }
.card p { font-size: 0.88rem; margin: 0; line-height: 1.6; }
.card-num {
  display: block; font-family: var(--font-head); font-weight: 900;
  font-size: 1.4rem; color: var(--red); line-height: 1; margin-bottom: 0.55rem;
}

/* ── TRUST STRIP ───────────────────────────────────────────────────────── */
.trust-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem; margin: 2rem 0 0; max-width: 780px;
}
.trust-item {
  background: rgba(17,17,17,0.72); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.95rem 1.1rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.trust-item .k {
  font-family: var(--font-head); font-weight: 900; font-size: 1.5rem;
  color: var(--text); line-height: 1; letter-spacing: 0.01em;
}
.trust-item .v {
  font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.09em; margin-top: 0.3rem; font-family: var(--font-head); font-weight: 600;
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.35rem 0.25rem; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item h3 {
  margin: 0 0 0.55rem; font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700; text-transform: none;
  letter-spacing: 0; color: var(--text); line-height: 1.35;
}
.faq-item p { margin: 0; font-size: 0.92rem; }

/* ── CALLOUT ───────────────────────────────────────────────────────────── */
.callout {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--red); border-radius: var(--radius);
  padding: 1.15rem 1.35rem; margin: 1.75rem 0;
  box-shadow: var(--shadow-card);
}
.callout p { margin: 0; font-size: 0.92rem; max-width: none; }
.callout p + p { margin-top: 0.6rem; }

/* ── RELATED LINKS ─────────────────────────────────────────────────────── */
.related-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 0.85rem; margin-top: 1.5rem;
}
.related-links a {
  display: block; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.15rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.related-links a:hover {
  border-color: var(--red); background: rgba(204,0,0,0.07); transform: translateY(-2px);
}
.related-links .rl-title {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); display: block;
}
.related-links .rl-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

/* ── FINAL CTA ─────────────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(204,0,0,0.18), rgba(204,0,0,0.05));
  border: 1px solid var(--border-red); border-radius: var(--radius-xl);
  padding: 2.75rem 2rem; margin: 0 0 3.25rem; text-align: center;
  box-shadow: var(--shadow-red);
}
.cta-band h2 { margin-bottom: 0.7rem; }
.cta-band p { margin: 0 auto 1.6rem; max-width: 50ch; }
.cta-band .btn { justify-content: center; }

/* ── FOOTER — matches index.html ───────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-red);
  padding: 3rem 1.5rem 2rem;
  margin-top: 1rem;
}
.site-footer-cols {
  max-width: 1200px; margin: 0 auto 2.5rem;
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 2.5rem;
  align-items: start;
}
.site-footer-brand img { height: 48px; width: auto; display: block; }
.site-footer-brand p {
  font-size: 0.85rem; color: var(--text-dim); margin-top: 0.75rem;
  max-width: 260px; line-height: 1.6;
}
.site-footer h4 {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text);
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer ul a {
  font-size: 0.875rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.15s;
}
.site-footer ul a:hover { color: var(--text); }
.site-footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-footer-bottom p { font-size: 0.78rem; color: var(--text-dim); margin: 0; }
.site-footer-bottom a { color: var(--text-dim); text-decoration: none; }
.site-footer-bottom a:hover { color: var(--text-muted); }
.site-footer-disclaimer {
  max-width: 1200px; margin: 1.5rem auto 0;
  font-size: 0.72rem; color: var(--text-dim); line-height: 1.6;
}
@media (max-width: 900px) {
  .site-footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-footer-brand { grid-column: span 2; }
}
@media (max-width: 680px) {
  .site-footer-cols { grid-template-columns: 1fr; }
  .site-footer-brand { grid-column: span 1; }
}

@media (max-width: 680px) {
  section.block { padding: 3rem 1.25rem; }
  .page-hero { padding: 2.5rem 1.25rem 2.75rem; }
  .crumbs { padding: 1rem 1.25rem 0; }
  .cta-band { padding: 2rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
