/* ============================================================
   PlayGo Laba — Main Stylesheet v1.0.0
   Mobile First | Dark Sports Betting Theme
   ============================================================ */

/* === Custom Properties ================================= */
:root {
  /* Colors */
  --c-bg:          #080c18;
  --c-surface:     #0d1124;
  --c-card:        #131929;
  --c-card-hover:  #192034;
  --c-border:      rgba(255,255,255,0.07);
  --c-border-acc:  rgba(0,230,118,0.3);

  --c-green:       #00e676;
  --c-green-dim:   #00c853;
  --c-orange:      #ff6d00;
  --c-orange-dim:  #e65100;
  --c-gold:        #ffc400;
  --c-red:         #f44336;
  --c-blue:        #448aff;

  --c-text:        #f0f4ff;
  --c-muted:       #8899b4;
  --c-dim:         #50607a;

  /* Gradients */
  --g-brand:  linear-gradient(135deg, #00e676 0%, #448aff 100%);
  --g-hero:   linear-gradient(180deg, rgba(8,12,24,0.15) 0%, rgba(8,12,24,0.92) 60%, #080c18 100%);
  --g-orange: linear-gradient(135deg, #ff6d00 0%, #ff9800 100%);

  /* Typography */
  --ff-base:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-heading: 'Montserrat', var(--ff-base);

  /* Spacing */
  --sp-1: 0.25rem;   --sp-2: 0.5rem;    --sp-3: 0.75rem;
  --sp-4: 1rem;      --sp-5: 1.25rem;   --sp-6: 1.5rem;
  --sp-8: 2rem;      --sp-10: 2.5rem;   --sp-12: 3rem;
  --sp-16: 4rem;     --sp-20: 5rem;

  /* Radii */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;
  --r-xl: 24px; --r-full: 9999px;

  /* Shadows */
  --sh-sm:    0 2px 8px rgba(0,0,0,.35);
  --sh-md:    0 4px 20px rgba(0,0,0,.45);
  --sh-lg:    0 8px 40px rgba(0,0,0,.6);
  --sh-green: 0 0 20px rgba(0,230,118,.25);
  --sh-orng:  0 0 20px rgba(255,109,0,.25);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;

  /* Layout */
  --container:    1200px;
  --cont-pad:     1.25rem;
  --header-h:     70px;
}

/* === Reset ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  font-family: var(--ff-base);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--c-green); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-text); }
button, input, select, textarea { font-family: var(--ff-base); font-size: 1rem; }

/* === Typography ======================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}
h1 { font-size: clamp(1.875rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem,   3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem,  2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
p  { color: var(--c-muted); line-height: 1.75; }

/* === Layout ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--cont-pad);
}
.section    { padding: var(--sp-16) 0; }
.section-sm { padding: var(--sp-10) 0; }

/* === Utilities ========================================= */
.text-gradient {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center  { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === Badge ============================================= */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-green  { background: rgba(0,230,118,.14); color: var(--c-green); border: 1px solid rgba(0,230,118,.3); }
.badge-gold   { background: rgba(255,196,0,.12);  color: var(--c-gold);  border: 1px solid rgba(255,196,0,.3); }
.badge-orange { background: rgba(255,109,0,.12);  color: var(--c-orange);border: 1px solid rgba(255,109,0,.3); }
.badge-red    { background: rgba(244,67,54,.12);  color: var(--c-red);   border: 1px solid rgba(244,67,54,.3); }

/* === Section Title ===================================== */
.section-title { text-align: center; margin-bottom: var(--sp-12); }
.section-title__eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-green); margin-bottom: var(--sp-3);
}
.section-title h2 { margin-bottom: var(--sp-4); }
.section-title p  { max-width: 600px; margin: 0 auto; }

/* === Buttons =========================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 700; font-size: .875rem;
  text-transform: uppercase; letter-spacing: .05em;
  cursor: pointer; border: none;
  transition: all var(--t-base);
  text-decoration: none; white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--g-brand); color: #080c18;
  box-shadow: var(--sh-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,230,118,.4); color: #080c18;
}
.btn-orange {
  background: var(--g-orange); color: #fff;
  box-shadow: var(--sh-orng);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,109,0,.4); color: #fff;
}
.btn-outline {
  background: transparent; color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  background: var(--c-card); color: var(--c-text);
  border-color: var(--c-border-acc);
}
.btn-sm  { padding: .5rem 1.25rem; font-size: .78rem; }
.btn-lg  { padding: 1rem 2.5rem;   font-size: 1rem;   }
.btn-full { width: 100%; }

/* === Header =========================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8,12,24,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.6); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.header-logo {
  display: flex; align-items: center;
  gap: var(--sp-3); text-decoration: none;
}
.header-logo__img { width: 38px; height: 38px; border-radius: var(--r-sm); }
.header-logo__text {
  font-family: var(--ff-heading);
  font-size: 1.2rem; font-weight: 800;
  color: var(--c-text); line-height: 1;
}
.header-logo__text span { color: var(--c-green); }

.header-nav { display: none; }
.header-nav__list { display: flex; align-items: center; gap: 2px; }
.header-nav__link {
  padding: var(--sp-2) var(--sp-3);
  color: var(--c-muted); font-size: .875rem; font-weight: 500;
  border-radius: var(--r-sm);
  transition: all var(--t-fast); display: flex; align-items: center;
}
.header-nav__link:hover,
.header-nav__link.active { color: var(--c-text); background: var(--c-card); }
.header-nav__link.active  { color: var(--c-green); }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-cta { display: none; }

/* Hamburger */
.hamburger {
  width: 38px; height: 38px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-sm); padding: 8px;
  transition: all var(--t-fast);
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: all var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--c-surface); z-index: 999;
  padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform var(--t-base);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__link {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4); color: var(--c-text);
  font-size: 1.1rem; font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  background: var(--c-card);
  transition: all var(--t-fast);
}
.mobile-nav__link:hover,
.mobile-nav__link.active {
  background: var(--c-card-hover); color: var(--c-green);
  border-color: var(--c-border-acc);
}

/* Overlay */
.overlay {
  position: fixed; inset: 0;
  background: rgba(8,12,24,.8); z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* === Hero ============================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--g-hero);
}
.hero__overlay::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,12,24,.55);
}
.hero__content { position: relative; z-index: 2; padding: var(--sp-12) 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .8rem; font-weight: 700; color: var(--c-green);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: var(--sp-5);
}
.hero__eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 2px; background: var(--c-green);
}
.hero__title {
  font-size: clamp(1.85rem, 5vw, 3.75rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: var(--sp-6); color: var(--c-text);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-muted); max-width: 580px;
  margin-bottom: var(--sp-8); line-height: 1.65;
}
.hero__ctas {
  display: flex; flex-direction: column;
  gap: var(--sp-3); margin-bottom: var(--sp-10);
}
.hero__trust { display: flex; flex-direction: column; gap: var(--sp-4); }
.hero__trust-item { display: flex; align-items: center; gap: var(--sp-3); }
.hero__trust-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero__trust-text strong { display: block; font-size: .875rem; color: var(--c-text); }
.hero__trust-text span   { font-size: .8rem; color: var(--c-muted); }

/* === Stats ============================================= */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4);
}
.stat-item {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-5); text-align: center;
}
.stat-item__value {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; line-height: 1; margin-bottom: var(--sp-2);
}
.stat-item__label { font-size: .75rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }

/* === Bookmaker Cards =================================== */
.bookmakers-grid { display: flex; flex-direction: column; gap: var(--sp-4); }
.bookmaker-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-5);
  transition: all var(--t-base); position: relative; overflow: hidden;
}
.bookmaker-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--g-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.bookmaker-card:hover {
  border-color: var(--c-border-acc);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.bookmaker-card:hover::before { transform: scaleX(1); }

.bookmaker-card__header { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.bookmaker-card__rank {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: var(--r-full); background: var(--g-brand);
  color: #080c18; font-size: .85rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.bookmaker-card__logo { width: 100px; height: 40px; object-fit: contain; filter: brightness(1.1); }
.bookmaker-card__rating { margin-left: auto; text-align: right; }
.bookmaker-card__score { font-size: 1.35rem; font-weight: 900; color: var(--c-text); line-height: 1; }
.bookmaker-card__stars { color: var(--c-gold); font-size: .8rem; }

.bookmaker-card__bonus {
  background: rgba(255,196,0,.07); border: 1px solid rgba(255,196,0,.2);
  border-radius: var(--r-md); padding: var(--sp-3) var(--sp-4); margin-bottom: var(--sp-4);
}
.bookmaker-card__bonus-label { font-size: .75rem; color: var(--c-gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: var(--sp-1); }
.bookmaker-card__bonus-amount { font-size: 1.3rem; font-weight: 900; color: var(--c-gold); line-height: 1; }

.bookmaker-card__features { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.bookmaker-card__feature {
  font-size: .75rem; color: var(--c-muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--c-border);
  border-radius: var(--r-full); padding: 2px 10px;
}
.bookmaker-card__footer { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.bookmaker-card__license { font-size: .75rem; color: var(--c-dim); }

/* === Services Grid ===================================== */
.services-grid { display: grid; gap: var(--sp-5); }
.service-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: all var(--t-base);
}
.service-card:hover { border-color: var(--c-border-acc); background: var(--c-card-hover); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; margin-bottom: var(--sp-5);
}
.service-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--sp-3); color: var(--c-text); }
.service-card__text  { font-size: .875rem; color: var(--c-muted); line-height: 1.7; }

/* === Blog Cards ======================================== */
.blog-grid { display: grid; gap: var(--sp-5); }
.blog-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--t-base); display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--c-border-acc); transform: translateY(-4px); box-shadow: var(--sh-md); }

.blog-card__image {
  position: relative; aspect-ratio: 16/9; overflow: hidden; display: block;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__category { position: absolute; top: var(--sp-3); left: var(--sp-3); }

.blog-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); font-size: .8rem; color: var(--c-muted); flex-wrap: wrap; }
.blog-card__title { font-size: 1.05rem; font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-3); line-height: 1.35; transition: color var(--t-fast); }
.blog-card__title a { color: inherit; }
.blog-card:hover .blog-card__title, .blog-card:hover .blog-card__title a { color: var(--c-green); }
.blog-card__excerpt {
  font-size: .875rem; color: var(--c-muted); line-height: 1.65;
  flex: 1; margin-bottom: var(--sp-4);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: .875rem; font-weight: 700; color: var(--c-green); transition: gap var(--t-fast); }
.blog-card:hover .blog-card__link { gap: var(--sp-2); }

/* === Post Single ======================================= */
.post-hero { position: relative; height: 50vh; min-height: 280px; overflow: hidden; margin-top: var(--header-h); }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, var(--c-bg) 0%, transparent 55%); }

.post-layout { display: flex; flex-direction: column; gap: var(--sp-8); padding: var(--sp-8) 0; }
.post-content { max-width: 800px; width: 100%; }
.post-header   { margin-bottom: var(--sp-8); }
.post-meta     { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-5); font-size: .875rem; color: var(--c-muted); }
.post-title    { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: var(--sp-5); }
.post-excerpt  { font-size: 1.1rem; color: var(--c-muted); line-height: 1.65; border-left: 3px solid var(--c-green); padding-left: var(--sp-5); }

.post-body { font-size: 1rem; line-height: 1.85; color: var(--c-muted); }
.post-body h2,.post-body h3,.post-body h4 { color: var(--c-text); margin: var(--sp-8) 0 var(--sp-4); }
.post-body p  { margin-bottom: var(--sp-5); }
.post-body ul,.post-body ol { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.post-body li { color: var(--c-muted); margin-bottom: var(--sp-2); }
.post-body a  { color: var(--c-green); text-decoration: underline; text-underline-offset: 3px; }
.post-body blockquote { background: var(--c-card); border-left: 4px solid var(--c-green); padding: var(--sp-5) var(--sp-6); margin: var(--sp-6) 0; border-radius: 0 var(--r-md) var(--r-md) 0; }
.post-body blockquote p { font-size: 1.05rem; font-style: italic; margin: 0; }
.post-body img { width: 100%; border-radius: var(--r-lg); margin: var(--sp-6) 0; }
.post-body strong { color: var(--c-text); }
.post-body code { font-family: monospace; background: var(--c-card); padding: 2px 6px; border-radius: 4px; font-size: .9em; color: var(--c-green); }

/* === Sidebar =========================================== */
.sidebar { display: flex; flex-direction: column; gap: var(--sp-6); }
.sidebar-widget { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-5); }
.sidebar-widget__title { font-size: 1rem; font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--c-border); display: flex; align-items: center; gap: var(--sp-2); }
.sidebar-widget__title::before { content: ''; display: block; width: 4px; height: 16px; background: var(--c-green); border-radius: 2px; }

.sidebar-search { display: flex; gap: var(--sp-2); }
.sidebar-search input { flex: 1; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: var(--sp-3); color: var(--c-text); font-size: .875rem; transition: border-color var(--t-fast); }
.sidebar-search input::placeholder { color: var(--c-dim); }
.sidebar-search input:focus { outline: none; border-color: var(--c-green); }
.sidebar-search button { background: var(--c-green); color: var(--c-bg); border: none; border-radius: var(--r-sm); padding: var(--sp-3) var(--sp-4); cursor: pointer; font-weight: 700; font-size: .875rem; transition: all var(--t-fast); }

.category-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.category-list__item { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-3) var(--sp-4); background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-sm); color: var(--c-muted); font-size: .875rem; transition: all var(--t-fast); text-decoration: none; }
.category-list__item:hover { color: var(--c-green); border-color: var(--c-border-acc); background: var(--c-card); }
.category-list__count { background: rgba(255,255,255,.05); color: var(--c-dim); font-size: .75rem; padding: 1px 8px; border-radius: var(--r-full); }

.recent-posts { display: flex; flex-direction: column; gap: var(--sp-4); }
.recent-post  { display: flex; gap: var(--sp-3); align-items: flex-start; text-decoration: none; transition: all var(--t-fast); }
.recent-post__img { width: 60px; height: 60px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.recent-post__title { font-size: .875rem; font-weight: 600; color: var(--c-text); line-height: 1.4; margin-bottom: 2px; transition: color var(--t-fast); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.recent-post:hover .recent-post__title { color: var(--c-green); }
.recent-post__date { font-size: .78rem; color: var(--c-muted); }

/* === Breadcrumbs ======================================= */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; padding: var(--sp-4) 0; font-size: .875rem; color: var(--c-muted); }
.breadcrumbs__item { display: flex; align-items: center; gap: 4px; }
.breadcrumbs__item a { color: var(--c-muted); transition: color var(--t-fast); }
.breadcrumbs__item a:hover { color: var(--c-green); }
.breadcrumbs__item::after { content: '/'; color: var(--c-dim); margin-left: 4px; }
.breadcrumbs__item:last-child::after { display: none; }
.breadcrumbs__item:last-child { color: var(--c-text); }

/* === Pagination ======================================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: var(--sp-2); padding: var(--sp-8) 0; flex-wrap: wrap; }
.pagination__btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--c-card); border: 1px solid var(--c-border); color: var(--c-muted); font-size: .875rem; font-weight: 700; text-decoration: none; transition: all var(--t-fast); }
.pagination__btn:hover, .pagination__btn.active { background: var(--c-green); border-color: var(--c-green); color: var(--c-bg); }
.pagination__btn.disabled { opacity: .35; pointer-events: none; }

/* === Forms ============================================= */
.form-group  { margin-bottom: var(--sp-5); }
.form-label  { display: block; font-size: .875rem; font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-2); }
.form-control {
  width: 100%; background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: .875rem 1rem;
  color: var(--c-text); font-size: 1rem; transition: all var(--t-fast);
}
.form-control::placeholder { color: var(--c-dim); }
.form-control:focus { outline: none; border-color: var(--c-green); background: var(--c-card-hover); box-shadow: 0 0 0 3px rgba(0,230,118,.12); }
.form-control.is-invalid { border-color: var(--c-red); }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(244,67,54,.1); }
textarea.form-control { min-height: 160px; resize: vertical; }
.form-error   { font-size: .8rem; color: var(--c-red); margin-top: 4px; min-height: 1.2em; }
.form-success { background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.3); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); color: var(--c-green); font-weight: 600; margin-bottom: var(--sp-5); }
.form-alert   { background: rgba(244,67,54,.1); border: 1px solid rgba(244,67,54,.3); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); color: var(--c-red); font-weight: 600; margin-bottom: var(--sp-5); }

/* === Page Hero ========================================= */
.page-hero {
  padding: calc(var(--header-h) + var(--sp-12)) 0 var(--sp-12);
  background: var(--c-surface); border-bottom: 1px solid var(--c-border);
}
.page-hero__eyebrow { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-green); margin-bottom: var(--sp-3); display: block; }
.page-hero__title   { font-size: clamp(1.875rem, 5vw, 3.25rem); font-weight: 900; margin-bottom: var(--sp-4); }
.page-hero__desc    { font-size: 1.1rem; color: var(--c-muted); max-width: 640px; }

/* === CTA Section ======================================= */
.cta-section { background: var(--c-card); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: var(--sp-16) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section h2 { margin-bottom: var(--sp-4); }
.cta-section p  { max-width: 600px; margin: 0 auto var(--sp-8); }
.btn-group { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }

/* === About - Team ====================================== */
.team-grid { display: grid; gap: var(--sp-5); }
.team-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-6); text-align: center; transition: all var(--t-base); }
.team-card:hover { border-color: var(--c-border-acc); transform: translateY(-4px); }
.team-card__img   { width: 80px; height: 80px; border-radius: var(--r-full); object-fit: cover; margin: 0 auto var(--sp-4); border: 3px solid rgba(0,230,118,.3); }
.team-card__name  { font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.team-card__role  { font-size: .85rem; color: var(--c-green); margin-bottom: var(--sp-4); }
.team-card__bio   { font-size: .875rem; color: var(--c-muted); line-height: 1.65; }

/* === Sitemap =========================================== */
.sitemap-grid { display: grid; gap: var(--sp-6); }
.sitemap-section h2 { font-size: 1.05rem; color: var(--c-green); margin-bottom: var(--sp-4); padding-bottom: var(--sp-2); border-bottom: 1px solid var(--c-border); }
.sitemap-section h3 { font-size: 1.05rem; color: var(--c-green); margin-bottom: var(--sp-4); padding-bottom: var(--sp-2); border-bottom: 1px solid var(--c-border); }
.sitemap-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.sitemap-links a { display: flex; align-items: center; gap: var(--sp-2); color: var(--c-muted); font-size: .875rem; padding: var(--sp-2) 0; border-bottom: 1px solid rgba(255,255,255,.03); transition: color var(--t-fast); }
.sitemap-links a:hover { color: var(--c-green); }
.sitemap-links a::before { content: '→'; color: var(--c-green); font-size: .8rem; }

/* === Content Pages ===================================== */
.content-body { max-width: 800px; margin: 0 auto; }
.content-body h2 { font-size: 1.5rem; margin: var(--sp-8) 0 var(--sp-4); }
.content-body h3 { font-size: 1.2rem; margin: var(--sp-6) 0 var(--sp-3); }
.content-body p  { margin-bottom: var(--sp-4); line-height: 1.8; }
.content-body ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.content-body li { color: var(--c-muted); margin-bottom: var(--sp-2); line-height: 1.65; }
.content-body a  { color: var(--c-green); text-decoration: underline; text-underline-offset: 3px; }

/* === Gambling Warning ================================== */
.gambling-warning { background: rgba(244,67,54,.05); border-top: 1px solid rgba(244,67,54,.15); padding: var(--sp-5) 0; }
.gambling-warning__inner { display: flex; align-items: flex-start; gap: var(--sp-4); max-width: var(--container); margin: 0 auto; padding: 0 var(--cont-pad); }
.gambling-warning__icon  { font-size: 1.5rem; flex-shrink: 0; }
.gambling-warning__text  { font-size: .78rem; color: var(--c-dim); line-height: 1.65; }
.gambling-warning__text strong { color: var(--c-muted); }
.gambling-warning__text a { color: var(--c-green); }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--c-red); color: #fff; font-size: .72rem; font-weight: 900; border-radius: var(--r-full); flex-shrink: 0; }

/* === Footer ============================================ */
.site-footer { background: var(--c-surface); border-top: 1px solid var(--c-border); padding-top: var(--sp-16); }
.footer-grid { display: grid; gap: var(--sp-8); margin-bottom: var(--sp-12); }
.footer-brand__logo { font-family: var(--ff-heading); font-size: 1.5rem; font-weight: 900; color: var(--c-text); margin-bottom: var(--sp-4); display: inline-block; text-decoration: none; }
.footer-brand__logo span { color: var(--c-green); }
.footer-brand__desc { font-size: .875rem; color: var(--c-muted); line-height: 1.7; margin-bottom: var(--sp-5); }
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social__link { width: 38px; height: 38px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--c-muted); font-size: 1rem; transition: all var(--t-fast); text-decoration: none; }
.footer-social__link:hover { background: var(--c-card-hover); border-color: var(--c-border-acc); color: var(--c-green); }
.footer-nav__title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--c-text); margin-bottom: var(--sp-4); }
.footer-nav__list  { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav__link  { font-size: .875rem; color: var(--c-muted); transition: color var(--t-fast); }
.footer-nav__link:hover { color: var(--c-green); }
.footer-bottom { border-top: 1px solid var(--c-border); padding: var(--sp-6) 0; }
.footer-bottom__inner { display: flex; flex-direction: column; gap: var(--sp-4); text-align: center; }
.footer-bottom__copy  { font-size: .78rem; color: var(--c-dim); }
.footer-bottom__links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4); }
.footer-bottom__link  { font-size: .78rem; color: var(--c-dim); transition: color var(--t-fast); }
.footer-bottom__link:hover { color: var(--c-muted); }

/* === Cookie Banner ===================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--c-surface); border-top: 1px solid var(--c-border);
  padding: var(--sp-5) var(--cont-pad);
  transform: translateY(100%); transition: transform var(--t-slow);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner  { display: flex; flex-direction: column; gap: var(--sp-4); max-width: var(--container); margin: 0 auto; }
.cookie-banner__text   { font-size: .875rem; color: var(--c-muted); line-height: 1.6; }
.cookie-banner__text a { color: var(--c-green); }
.cookie-banner__btns   { display: flex; flex-direction: column; gap: var(--sp-2); }

/* === Scroll Top ======================================== */
.scroll-top {
  position: fixed; bottom: var(--sp-6); right: var(--sp-5);
  width: 44px; height: 44px;
  background: var(--c-green); color: var(--c-bg);
  border: none; border-radius: var(--r-full);
  cursor: pointer; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all var(--t-base); z-index: 100;
  box-shadow: var(--sh-green);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { background: var(--c-green-dim); transform: translateY(-3px); }

/* === 404 =============================================== */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: var(--sp-12) var(--cont-pad); text-align: center; }
.error-page__code { font-size: clamp(5rem, 20vw, 10rem); font-weight: 900; line-height: 1; background: var(--g-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: var(--sp-4); }
.error-page__title { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: var(--sp-4); }
.error-page__text  { font-size: 1.1rem; color: var(--c-muted); max-width: 500px; margin: 0 auto var(--sp-8); }

/* === About grid ======================================== */
.about-grid { grid-template-columns: 1fr; }

/* ===================================================
   Responsive — Tablet (≥640px)
   =================================================== */
@media (min-width: 640px) {
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   Responsive — Tablet+ (≥480px)
   =================================================== */
@media (min-width: 480px) {
  :root { --cont-pad: 1.5rem; }
  .hero__ctas         { flex-direction: row; flex-wrap: wrap; }
  .cookie-banner__btns{ flex-direction: row; }
}

/* ===================================================
   Responsive — Tablet (≥768px)
   =================================================== */
@media (min-width: 768px) {
  :root { --cont-pad: 2rem; --header-h: 78px; }

  .hero__trust         { flex-direction: row; }
  .stats-grid          { grid-template-columns: repeat(4, 1fr); }
  .footer-grid         { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom__inner{ flex-direction: row; justify-content: space-between; text-align: left; }
  .cookie-banner__inner{ flex-direction: row; align-items: center; }
  .cookie-banner__btns { flex-shrink: 0; }
  .about-grid          { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   Responsive — Desktop (≥1024px)
   =================================================== */
@media (min-width: 1024px) {
  .header-nav  { display: block; }
  .header-cta  { display: inline-flex; }
  .hamburger   { display: none; }
  .mobile-nav  { display: none !important; }

  .blog-grid     { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid     { grid-template-columns: repeat(4, 1fr); }
  .sitemap-grid  { grid-template-columns: repeat(3, 1fr); }

  .post-layout { flex-direction: row; align-items: flex-start; }
  .post-content { flex: 1; min-width: 0; }
  .sidebar {
    width: 320px; flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-h) + var(--sp-5));
  }

  .btn-group { flex-direction: row; justify-content: center; }
}

/* ===================================================
   Responsive — Large Desktop (≥1280px)
   =================================================== */
@media (min-width: 1280px) {
  :root { --cont-pad: 2.5rem; }
}
