/*
Theme Name: Clav-Ixo Esport
Theme URI: https://clav-ixo.com
Author: Clav-Ixo
Author URI: https://clav-ixo.com
Description: A dark, gaming-aesthetic WordPress theme for esport betting comparison sites. Features bookmaker ranking tables, hero stats, testimonials, FAQ accordion, and full responsible gambling compliance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clav-ixo
Tags: dark, gaming, esport, affiliate, one-column, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --c-bg:          #0a0d14;
  --c-bg-card:     #111520;
  --c-bg-card-alt: #161b28;
  --c-border:      #1e2535;
  --c-accent:      #00e5ff;
  --c-accent-2:    #7b61ff;
  --c-gold:        #ffd166;
  --c-gold-dim:    #c49a3c;
  --c-text:        #e2e8f0;
  --c-text-muted:  #8899aa;
  --c-text-dim:    #556070;
  --c-danger:      #ff4757;
  --c-success:     #2ed573;

  /* Rank badge colors */
  --rank-1: #ffd166;
  --rank-2: #b0bec5;
  --rank-3: #cd7f32;

  /* Typography */
  --font-display: 'Rajdhani', 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', 'Nunito Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs:  .375rem;
  --space-sm:  .75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  /* Shadows */
  --shadow-glow-accent: 0 0 24px rgba(0, 229, 255, .18);
  --shadow-glow-gold:   0 0 24px rgba(255, 209, 102, .22);
  --shadow-card:        0 4px 32px rgba(0, 0, 0, .45);

  /* Transitions */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--c-accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
ul, ol { list-style: none; }

/* Inline SVG icons — never let them blow up beyond 1em */
svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  overflow: visible;
}

/* Reset SVGs that are used purely as icons (no explicit width set via attribute) */
:not(.post-thumbnail):not(.site-logo) > svg:not([width]) {
  width: 1em;
  height: 1em;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .02em;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section--sm {
  padding-block: var(--space-xl);
}

/* ============================================================
   TOPBAR (Responsible Gambling Banner)
   ============================================================ */
.topbar {
  background: #060810;
  border-bottom: 1px solid var(--c-border);
  padding: .45rem 1.5rem;
  font-size: .78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
}

.topbar__warning {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar__phone {
  color: var(--c-accent);
  font-weight: 600;
  letter-spacing: .05em;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, .97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border) !important;
  /* Force over any plugin/theme that sets background on header */
  color: var(--c-text) !important;
}

/* Kill any white background injected by Twenty Seventeen on #masthead */
#masthead,
.site-header,
header.site-header {
  background-color: rgba(10, 13, 20, .97) !important;
  background-image: none !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo image — hard cap, overrides WP custom logo wrapper */
.navbar__logo img,
.navbar__logo .custom-logo-link img,
.custom-logo-link img,
.custom-logo {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block !important;
}

.navbar__logo span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.navbar__nav a {
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem .9rem;
  border-radius: var(--r-sm);
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.navbar__nav a:hover,
.navbar__nav a.current-menu-item {
  color: var(--c-accent);
  background: rgba(0, 229, 255, .08);
}

.navbar__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--c-text-dim);
}

.navbar__legal a {
  color: var(--c-text-dim);
  font-size: .78rem;
}

.navbar__legal a:hover { color: var(--c-text-muted); }

.navbar__18 img {
  height: 28px;
  width: auto;
  border-radius: 4px;
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--c-text);
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: .3s;
}

.navbar__toggle span + span { margin-top: 6px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 5rem 4rem;
  text-align: center;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(0,229,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-scroll 20s linear infinite;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(123,97,255,.18) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes grid-scroll {
  to { transform: translateY(60px); }
}

.hero__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.2);
  color: var(--c-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero__title .accent {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-inline: auto;
  color: var(--c-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Hero Stats Bar */
.hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 700px;
  margin-inline: auto;
}

.hero__stat {
  flex: 1;
  min-width: 130px;
  background: var(--c-bg-card);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  transition: background .2s;
}

.hero__stat:hover { background: var(--c-bg-card-alt); }

.hero__stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  margin-bottom: .2rem;
  font-size: 20px; /* controls 1em SVG size */
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: .04em;
}

.hero__stat-label {
  font-size: .75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Trust badges */
.hero__badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 999px;
  letter-spacing: .04em;
}

.badge svg { flex-shrink: 0; }

/* ============================================================
   BOOKMAKER TABLE
   ============================================================ */
.bookmakers-section {
  padding-block: var(--space-2xl);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--c-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-header__title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.section-header__subtitle {
  color: var(--c-text-muted);
  max-width: 540px;
  margin-inline: auto;
}

.bookmaker-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

/* ---- Bookmaker Card ---- */
.bookmaker-card {
  background: var(--c-bg-card);
  display: grid;
  grid-template-columns: 56px 180px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  transition: background .2s var(--ease-out);
  position: relative;
}

.bookmaker-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .2s;
}

.bookmaker-card:hover { background: var(--c-bg-card-alt); }

.bookmaker-card--rank-1 { background: rgba(255,209,102,.04); }
.bookmaker-card--rank-1::before { background: var(--rank-1); }
.bookmaker-card--rank-2::before { background: var(--rank-2); }
.bookmaker-card--rank-3::before { background: var(--rank-3); }

/* Rank badge */
.bk-rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: .02em;
}

.bookmaker-card--rank-1 .bk-rank { color: var(--rank-1); }
.bookmaker-card--rank-2 .bk-rank { color: var(--rank-2); }
.bookmaker-card--rank-3 .bk-rank { color: var(--rank-3); }
.bk-rank span { font-size: .7rem; display: block; color: var(--c-text-dim); font-family: var(--font-body); font-weight: 600; margin-top: -4px; }

/* Logo */
.bk-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-logo img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  filter: brightness(.9) saturate(.9);
  transition: filter .2s;
}

.bookmaker-card:hover .bk-logo img {
  filter: brightness(1) saturate(1);
}

/* Info */
.bk-info { min-width: 0; }

.bk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}

.bk-tag {
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.2);
  color: var(--c-accent);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bk-tag--anj {
  background: rgba(46,213,115,.1);
  border-color: rgba(46,213,115,.2);
  color: var(--c-success);
}

.bk-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.bk-stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
}

.bk-stars svg { width: 14px; height: 14px; }

.bk-score {
  font-weight: 700;
  font-size: .88rem;
  color: var(--c-gold);
}

/* Bonus */
.bk-bonus {
  text-align: center;
  min-width: 160px;
}

.bk-bonus__label {
  font-size: .7rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}

.bk-bonus__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: .03em;
}

/* CTA */
.bk-cta {
  min-width: 180px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  color: #060810;
  box-shadow: 0 0 20px rgba(0,229,255,.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,229,255,.5);
  color: #060810;
}

.btn--gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dim) 100%);
  color: #060810;
  box-shadow: 0 0 20px rgba(255,209,102,.25);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255,209,102,.45);
  color: #060810;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(0,229,255,.06);
}

.btn--block { width: 100%; }

/* "Meilleur choix" label */
.bk-best-badge {
  position: absolute;
  top: 1rem; right: 1.75rem;
  background: var(--c-gold);
  color: #060810;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 4px;
}

/* ============================================================
   EDITORIAL / WHY SECTION
   ============================================================ */
.why-section {
  padding-block: var(--space-2xl);
  background: linear-gradient(180deg, var(--c-bg) 0%, #0d1120 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.why-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.why-content p {
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}

.why-content h3 {
  font-size: 1.15rem;
  color: var(--c-accent);
  margin: 1.75rem 0 .5rem;
}

.why-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.game-card {
  background: var(--c-bg-card);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background .2s;
  cursor: pointer;
}

.game-card:hover { background: var(--c-bg-card-alt); }

.game-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.game-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
}

.game-card__desc {
  font-size: .8rem;
  color: var(--c-text-muted);
}

.game-card__arrow {
  margin-left: auto;
  color: var(--c-text-dim);
  transition: transform .2s, color .2s;
}

.game-card:hover .game-card__arrow {
  transform: translateX(4px);
  color: var(--c-accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding-block: var(--space-2xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}

.testimonial-card:hover {
  border-color: rgba(0,229,255,.25);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.testimonial-card__stars svg { width: 16px; height: 16px; }

.testimonial-card__text {
  color: var(--c-text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #060810;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: .88rem;
}

.testimonial-card__role {
  font-size: .75rem;
  color: var(--c-text-dim);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding-block: var(--space-xl);
}

.cta-banner {
  background: linear-gradient(135deg, rgba(0,229,255,.08) 0%, rgba(123,97,255,.12) 100%);
  border: 1px solid rgba(0,229,255,.2);
  border-radius: var(--r-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .75rem;
}

.cta-banner p {
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding-block: var(--space-2xl);
}

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.is-open {
  border-color: rgba(0,229,255,.25);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  transition: color .2s;
}

.faq-item__question:hover { color: var(--c-accent); }

.faq-item.is-open .faq-item__question { color: var(--c-accent); }

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  color: var(--c-text-muted);
}

.faq-item.is-open .faq-item__icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #060810;
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--c-text-muted);
  font-size: .93rem;
  line-height: 1.75;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060810;
  border-top: 1px solid var(--c-border);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
}

.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}

.footer-brand p {
  color: var(--c-text-dim);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-legal-logos {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-legal-logos img {
  height: 28px;
  width: auto;
  opacity: .7;
  transition: opacity .2s;
  filter: brightness(.8);
}

.footer-legal-logos img:hover {
  opacity: 1;
  filter: brightness(1);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul a {
  color: var(--c-text-dim);
  font-size: .88rem;
  transition: color .2s;
}

.footer-col ul a:hover { color: var(--c-accent); }

/* Disclaimer */
.footer-disclaimer {
  padding: 1.5rem 0;
  color: var(--c-text-dim);
  font-size: .75rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--c-border);
}

.footer-disclaimer p + p { margin-top: .75rem; }

.footer-disclaimer a {
  color: var(--c-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: .78rem;
  color: var(--c-text-dim);
}

.footer-18 img {
  height: 28px;
  width: auto;
  opacity: .6;
}

/* ============================================================
   WORDPRESS SPECIFIC (Comments, Pagination, etc.)
   ============================================================ */
.wp-block-image { margin-block: 1.5rem; border-radius: var(--r-md); overflow: hidden; }
.wp-caption-text { color: var(--c-text-dim); font-size: .8rem; text-align: center; margin-top: .5rem; }

.page-numbers {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding-block: 2rem;
}

.page-numbers a,
.page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s;
}

.page-numbers a:hover {
  background: var(--c-bg-card-alt);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.page-numbers .current {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border-color: transparent;
  color: #060810;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  display: none; /* shown by JS only */
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  max-width: 560px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}

.cookie-banner.is-visible {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Cookie icon inside the banner title — must stay small */
.cookie-banner h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  margin-bottom: .6rem;
}

.cookie-banner h3 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.cookie-banner p {
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}

.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bookmaker-card {
    grid-template-columns: 48px 140px 1fr auto;
    gap: 1rem;
  }

  .bk-bonus { display: none; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--c-bg-card);
    border-bottom: 1px solid var(--c-border);
    padding: 1rem 1.5rem;
  }

  .navbar__toggle { display: flex; flex-direction: column; }

  .bookmaker-card {
    grid-template-columns: 40px 1fr auto;
    grid-template-rows: auto auto;
    gap: .75rem;
  }

  .bk-logo {
    grid-column: 2;
    justify-content: flex-start;
  }

  .bk-info {
    grid-column: 2 / -1;
  }

  .bk-cta {
    grid-column: 3;
    grid-row: 1;
  }

  .bk-rank {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: row;
  }

  .hero__stat {
    min-width: 80px;
    padding: 1rem .5rem;
  }

  .hero__stat-value {
    font-size: 1.3rem;
  }
}

/* ============================================================
   CONTENT STYLES
   Renders existing WordPress page/post content correctly
   regardless of what theme it was originally written in.
   ============================================================ */

.entry-content,
.page-content,
.entry-summary {
  color: var(--c-text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* Headings inside content */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--c-text);
  margin-top: 2rem;
  margin-bottom: .75rem;
  line-height: 1.25;
}

.entry-content h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
.entry-content h2 { font-size: clamp(1.3rem, 3vw, 2rem);   }
.entry-content h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--c-accent); }
.entry-content h4 { font-size: 1.1rem; color: var(--c-accent); }

/* Paragraphs */
.entry-content p {
  margin-bottom: 1.25rem;
}

/* Links */
.entry-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover { color: #fff; }

/* Lists */
.entry-content ul,
.entry-content ol {
  list-style: revert;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}
.entry-content li { margin-bottom: .4rem; }
.entry-content ul li::marker { color: var(--c-accent); }
.entry-content ol li::marker { color: var(--c-accent); font-weight: 700; }

/* Blockquote */
.entry-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  background: var(--c-bg-card);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.entry-content blockquote cite {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  font-style: normal;
  color: var(--c-text-dim);
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .92rem;
}
.entry-content th,
.entry-content td {
  padding: .65rem 1rem;
  border: 1px solid var(--c-border);
  text-align: left;
}
.entry-content th {
  background: var(--c-bg-card);
  color: var(--c-text);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .04em;
}
.entry-content tr:nth-child(even) td {
  background: rgba(255,255,255,.02);
}

/* Images */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  display: block;
}
.entry-content figure {
  margin: 1.5rem 0;
}
.entry-content figcaption {
  font-size: .8rem;
  color: var(--c-text-dim);
  text-align: center;
  margin-top: .5rem;
}
.entry-content .alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.entry-content .alignright { float: right; margin: 0 0 1rem 1.5rem; }
.entry-content .aligncenter { display: block; margin-inline: auto; }
.entry-content .alignwide  { width: 100%; }
.entry-content .alignfull  { width: 100vw; margin-inline: calc(50% - 50vw); }

/* Code */
.entry-content code {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-accent);
  font-family: var(--font-mono);
  font-size: .85em;
  padding: .15em .4em;
  border-radius: 4px;
}
.entry-content pre {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: .88rem;
  color: var(--c-text-muted);
}

/* Horizontal rule */
.entry-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 2rem 0;
}

/* Gutenberg blocks */
.wp-block-separator { border-top: 1px solid var(--c-border); }
.wp-block-quote { composes: blockquote; }
.wp-block-code  { background: var(--c-bg-card); border-radius: var(--r-sm); padding: 1rem 1.5rem; }
.wp-block-cover { border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.5rem; }
.wp-block-button__link {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: #060810 !important;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .65rem 1.4rem;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
}
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0,229,255,.4);
}
.wp-block-image img { border-radius: var(--r-sm); }

/* Embeds / iframes */
.entry-content iframe,
.entry-content .wp-block-embed__wrapper iframe {
  max-width: 100%;
  border-radius: var(--r-sm);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .82rem;
  color: var(--c-text-dim);
  margin-top: .75rem;
  margin-bottom: 1.25rem;
}

.post-meta a { color: var(--c-text-dim); }
.post-meta a:hover { color: var(--c-accent); }

.post-thumbnail {
  margin-bottom: 2rem;
  border-radius: var(--r-md);
  overflow: hidden;
}

.post-thumbnail img { width: 100%; height: auto; display: block; }

.post-categories,
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 2rem;
}

.post-categories a,
.post-tags a {
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.18);
  color: var(--c-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 999px;
  text-decoration: none;
}

.post-categories a:hover,
.post-tags a:hover {
  background: rgba(0,229,255,.16);
  color: #fff;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}

.post-navigation a {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-decoration: none;
  color: var(--c-text);
  transition: border-color .2s, background .2s;
}

.post-navigation a:hover {
  border-color: var(--c-accent);
  background: var(--c-bg-card-alt);
  color: #fff;
}

.post-navigation .nav-label {
  font-size: .72rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.post-navigation .nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

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

/* ============================================================
   ARCHIVE / BLOG INDEX
   ============================================================ */
.archive-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
}

.archive-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: .5rem;
}

.archive-description { color: var(--c-text-muted); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.post-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: rgba(0,229,255,.25);
  transform: translateY(-3px);
}

.post-card__thumb img { width: 100%; height: 200px; object-fit: cover; display: block; }

.post-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  font-size: .75rem;
  color: var(--c-text-dim);
  margin-bottom: .5rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .75rem;
}

.post-card__title a {
  color: var(--c-text);
  text-decoration: none;
}
.post-card__title a:hover { color: var(--c-accent); }

.post-card__excerpt {
  font-size: .88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.post-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--c-accent);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: auto;
}
.post-card__readmore:hover { color: #fff; }
.post-card__readmore svg { width: 14px; height: 14px; }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-form-wrapper {
  margin-bottom: 2.5rem;
}

.search-form {
  display: flex;
  gap: .5rem;
}

.search-form input[type="search"] {
  flex: 1;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7rem 1rem;
  outline: none;
  transition: border-color .2s;
}

.search-form input[type="search"]:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,229,255,.12);
}

.search-form input[type="search"]::placeholder { color: var(--c-text-dim); }

.search-form button[type="submit"] {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border: none;
  border-radius: var(--r-sm);
  color: #060810;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .7rem 1.25rem;
  text-transform: uppercase;
  transition: opacity .2s;
}

.search-form button[type="submit"]:hover { opacity: .9; }

.no-results {
  text-align: center;
  padding: 4rem 0;
  color: var(--c-text-muted);
}

.no-results h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-border);
}

.comments-title,
.comment-reply-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  color: var(--c-text);
}

.comment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.comment-body {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}

.comment-author { font-weight: 700; font-size: .9rem; }
.comment-author .fn { color: var(--c-text); }
.comment-meta { font-size: .78rem; color: var(--c-text-dim); margin-bottom: .75rem; }
.comment-content p { color: var(--c-text-muted); line-height: 1.7; }

.comment-reply-link {
  font-size: .78rem;
  color: var(--c-accent);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Comment form */
.comment-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem 1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,229,255,.1);
}

.comment-form textarea { min-height: 130px; resize: vertical; }

.comment-form .submit {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  border: none;
  border-radius: var(--r-sm);
  color: #060810;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .75rem 2rem;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}

.comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,229,255,.35);
}

/* Children comments */
.children {
  list-style: none;
  padding-left: 2rem;
  margin-top: 1rem;
}

/* ============================================================
   WIDGET STYLES
   ============================================================ */
.widget {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-border);
}

.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.widget ul li:last-child { border-bottom: none; }
.widget ul a { color: var(--c-text-muted); font-size: .9rem; text-decoration: none; }
.widget ul a:hover { color: var(--c-accent); }

/* ============================================================
   PAGE / CONTENT LAYOUT
   ============================================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.page-layout--sidebar {
  grid-template-columns: 1fr 300px;
}

.page-sidebar {
  position: sticky;
  top: 88px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: .8rem;
  color: var(--c-text-dim);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .4rem;
  align-items: center;
}

.breadcrumb a { color: var(--c-text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb__sep { color: var(--c-text-dim); opacity: .4; }
.breadcrumb__current { color: var(--c-text-muted); }

@media (max-width: 900px) {
  .page-layout--sidebar { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .post-navigation { grid-template-columns: 1fr; }
  .nav-next { text-align: left; }
}

/* ============================================================
   NAV MENU OVERRIDE
   Kill any default WordPress / theme list styles inside the navbar
   so stray bullet lists never appear even if a menu isn't assigned.
   ============================================================ */
.site-header ul,
.site-header ol,
.navbar ul,
.navbar ol,
.navbar__nav,
.navbar__nav-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* Completely hide the nav container if it has no links */
.navbar__nav:empty,
nav.navbar__nav:not(:has(li)) {
  display: none !important;
}

.navbar__nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.navbar__nav-list li { margin: 0; padding: 0; }

.navbar__nav-list a {
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem .9rem;
  border-radius: var(--r-sm);
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  display: block;
}

.navbar__nav-list a:hover,
.navbar__nav-list .current-menu-item > a,
.navbar__nav-list .current_page_item > a {
  color: var(--c-accent);
  background: rgba(0, 229, 255, .08);
}

/* ============================================================
   ABSOLUTE NUCLEAR OPTION: hide any <ul> or <ol> that appears
   directly inside .site-header but is NOT .navbar__nav-list.
   This catches any WordPress fallback lists from other themes.
   ============================================================ */
.site-header ul:not(.navbar__nav-list),
.site-header ol:not(.navbar__nav-list) {
  display: none !important;
}

/* ============================================================
   HARD RESET — override any lingering Twenty Seventeen / block
   editor styles that set white backgrounds or blue link colors
   ============================================================ */
html, body {
  background-color: var(--c-bg) !important;
  color: var(--c-text) !important;
}

/* Navbar legal links — explicit reset */
.navbar__legal a {
  color: var(--c-text-dim) !important;
  font-size: .78rem !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: .2rem .4rem !important;
  border-radius: 4px !important;
  transition: color .2s !important;
  font-weight: 500 !important;
}

.navbar__legal a:hover {
  color: var(--c-text-muted) !important;
}

/* Logo size cap */
.navbar__logo img,
.custom-logo-link img,
.custom-logo {
  max-height: 42px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
}

/* Site name text logo */
.navbar__logo span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col ul li::before {
  display: none !important;
}
