:root {
  --c-main:   #0a4c99;
  --c-dark:   #003266;
  --c-light:  #4993e3;
  --c-orange: #fa5800;
  --c-purple: #6100ff;
  --c-green:  #87c209;
  --c-bg:     #001e40;
  --c-card:   rgba(10,76,153,0.28);
  --c-card2:  #0d3d7a;
  --c-border: rgba(73,147,227,0.22);
  --text:     #ffffff;
  --text-muted: rgba(255,255,255,0.62);
  --shadow:   0 8px 32px rgba(0,0,0,0.5);
  --r:  12px;
  --r-sm: 8px;
  --t: 0.3s ease;
}

/* --- Reset / Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--text);
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
p, i, b, a, h1, h2, h3, h4, h5, h6, ul, ol {
  color: var(--text);
  font-family: 'Rubik', sans-serif;
  margin-bottom: 0;
}
h1 { font-size: 42px; font-weight: 700; line-height: 1.15; margin-top: 0; }
h2 { font-size: 26px; font-weight: 700; margin-top: 0; margin-bottom: 18px; }
h3 { font-size: 19px; font-weight: 600; margin-top: 22px; margin-bottom: 12px; }
a { text-decoration: none; transition: var(--t); }
img { max-width: 100%; height: auto; display: block; }
.hidden { display: none !important; }

/* --- Utility Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  gap: 8px;
}
.btn-orange { background: var(--c-orange); color: #fff; }
.btn-orange:hover { background: #d94e00; color: #fff; }
.btn-blue { background: var(--c-light); color: #fff; }
.btn-blue:hover { background: #3a84d4; color: #fff; }
.btn-outline {
  border: 2px solid var(--c-light);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { background: var(--c-light); color: #fff; }
.btn-green { background: var(--c-green); color: #fff; }
.btn-green:hover { background: #77ab08; color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: var(--r); }

/* ============================================
   HEADER / TOPBAR
============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--c-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  gap: 20px;
}
/* Logo */
.logo { flex-shrink: 0; }
.logo img { height: 46px; }

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  display: block;
  padding: 7px 13px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  transition: var(--t);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 13px; right: 13px;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-links li a:hover,
.nav-links li a.active { color: #fff; }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

/* Auth buttons */
.header-auth { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-login {
  padding: 8px 20px;
  border: 1.5px solid var(--c-light);
  border-radius: var(--r-sm);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  transition: var(--t);
  white-space: nowrap;
  font-family: 'Rubik', sans-serif;
}
.btn-login:hover { background: var(--c-light); color: #fff; }
.btn-register {
  padding: 8px 20px;
  border-radius: var(--r-sm);
  background: var(--c-orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  font-family: 'Rubik', sans-serif;
}
.btn-register:hover { background: #d94e00; color: #fff; }

/* Burger Button */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--c-dark);
  z-index: 190;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-links { flex-direction: column; justify-content: flex-start; gap: 0; }
.mobile-menu .nav-links li { width: 100%; border-bottom: 1px solid var(--c-border); }
.mobile-menu .nav-links li a { font-size: 17px; padding: 15px 4px; }
.mobile-menu .nav-links li a::after { display: none; }
.mobile-menu .header-auth {
  margin-top: 24px;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.mobile-menu .header-auth a {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  display: block;
}

/* Content nav bar (below header) */
.content-nav {
  background: rgba(10,76,153,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-border);
  padding: 7px 20px;
  position: sticky;
  top: 68px;
  z-index: 100;
}
.content-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-nav-label {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.content-nav-scroll {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  scrollbar-width: none;
  padding: 2px 0;
}
.content-nav-scroll::-webkit-scrollbar { height: 2px; }
.content-nav-scroll::-webkit-scrollbar-thumb { background: var(--c-light); }
.content-nav-scroll a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 5px 13px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid transparent;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: var(--t);
}
.content-nav-scroll a:hover,
.content-nav-scroll a.active {
  background: var(--c-light);
  border-color: var(--c-light);
  color: #fff;
}

/* Responsive breakpoints */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger-btn { display: flex; }
}
@media (max-width: 520px) {
  .header-auth { display: none; }
  .content-nav-label { display: none; }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 68px;
  background-image: url('../images/bg.webp');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,50,102,0.93) 0%,
    rgba(10,76,153,0.72) 50%,
    rgba(0,30,64,0.9) 100%
  );
}
/* Decorative shapes */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(73,147,227,0.15);
  pointer-events: none;
}

/* Breadcrumbs */
.hero-breadcrumbs {
  position: absolute;
  top: 18px; left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  z-index: 3;
}
.hero-breadcrumbs a { color: rgba(255,255,255,0.6); }
.hero-breadcrumbs a:hover { color: #fff; }
.hero-breadcrumbs .sep { opacity: 0.5; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h1 .accent { color: var(--c-orange); }
.hero-content .hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .hero { min-height: 440px; }
  .hero-content h1 { font-size: 30px; }
  .hero-content .hero-subtitle { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-num { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .hero-stat-divider { display: none; }
}

/* ============================================
   PAGE BODY & CONTENT BLOCKS
============================================ */
.page-body {
  padding: 40px 20px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Anchor offsets for fixed header */
.section-anchor {
  position: absolute;
  margin-top: -120px;
  padding-top: 120px;
  visibility: hidden;
  pointer-events: none;
}

/* Main content block */
.content-block {
  background: linear-gradient(135deg, rgba(13,61,122,0.6) 0%, rgba(10,76,153,0.2) 100%);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-light);
  border-radius: var(--r);
  padding: 32px 36px;
  margin-bottom: 24px;
  position: relative;
}
.content-block:nth-child(3n) { border-left-color: var(--c-orange); }
.content-block:nth-child(3n+2) { border-left-color: var(--c-green); }
.content-block h2 {
  font-size: 24px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.content-block h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-light);
  margin-top: 24px;
  margin-bottom: 12px;
}
.content-block p {
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 14px;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block ul, .content-block ol {
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 22px;
}
.content-block li { margin-bottom: 8px; }
.content-block img { border-radius: var(--r-sm); width: 100%; }

/* Image + text layouts */
.snippet-left {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.snippet-left .simg { flex-shrink: 0; width: 340px; }
.snippet-left .simg img { width: 100%; border-radius: var(--r-sm); }
.snippet-right {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.snippet-right .simg { flex-shrink: 0; width: 340px; order: 2; }
.snippet-right .simg img { width: 100%; border-radius: var(--r-sm); }
.snippet-right .stxt { order: 1; }
@media (max-width: 900px) {
  .snippet-left, .snippet-right { flex-direction: column; }
  .snippet-left .simg, .snippet-right .simg { width: 100%; order: 0; }
}

/* Info cards grid */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.info-card {
  background: rgba(10,76,153,0.3);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: var(--t);
}
.info-card:hover {
  border-color: var(--c-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-card .ic-num {
  font-size: 38px;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 10px;
}
.info-card .ic-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.info-card .ic-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Numbered steps */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  counter-reset: step;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  counter-increment: step;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-main);
  border: 2px solid var(--c-light);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Table */
.table-responsive { overflow-x: auto; margin-top: 16px; }
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
table thead tr td,
table thead tr th {
  background: rgba(10,76,153,0.7);
  padding: 12px 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Rubik', sans-serif;
}
table thead tr td:first-child,
table thead tr th:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
table thead tr td:last-child,
table thead tr th:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
table tbody tr td {
  padding: 10px 16px;
  color: rgba(255,255,255,0.8);
  font-family: 'Rubik', sans-serif;
}
table tbody tr:nth-child(even) td { background: rgba(10,76,153,0.22); }
table tbody tr td:first-child {
  font-weight: 600;
  color: #fff;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}
table tbody tr td:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--r); overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(10,76,153,0.4);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--t);
  gap: 12px;
  border: none;
  width: 100%;
  text-align: left;
  color: #fff;
  font-family: 'Rubik', sans-serif;
}
.faq-question:hover { background: rgba(10,76,153,0.6); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--c-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--t);
  color: #fff;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 16px 20px;
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.72;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   APP CATFISH BAR (fixed bottom)
============================================ */
.app-catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  transform: translateY(0);
  transition: transform var(--t);
}
.app-catfish.dismissed { transform: translateY(100%); }
.catfish-bar {
  background: linear-gradient(90deg, var(--c-dark) 0%, var(--c-main) 60%, var(--c-dark) 100%);
  border-top: 2px solid var(--c-light);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.catfish-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.catfish-left .app-badge {
  background: var(--c-orange);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.catfish-btns { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.catfish-dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(73,147,227,0.5);
  border-radius: var(--r-sm);
  padding: 8px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: var(--t);
  text-decoration: none;
}
.catfish-dl-btn:hover {
  background: var(--c-light);
  border-color: var(--c-light);
  color: #fff;
}
.catfish-dl-btn img { width: 22px; height: 22px; display: block; }
.catfish-dl-btn.android-btn:hover {
  background: var(--c-green);
  border-color: var(--c-green);
}
.catfish-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: var(--t);
  font-family: sans-serif;
}
.catfish-close:hover { color: #fff; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: linear-gradient(180deg, #001e3c 0%, var(--c-dark) 100%);
  border-top: 1px solid var(--c-border);
  padding: 60px 20px 24px;
  margin-bottom: 60px; /* space for catfish */
}
.footer-inner { max-width: 1320px; margin: 0 auto; }

/* Top columns */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 36px;
}
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }

/* Payment systems */
.footer-payments { margin-bottom: 32px; }
.footer-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  height: 42px;
  min-width: 66px;
  transition: var(--t);
}
.pay-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(73,147,227,0.4);
}
.pay-badge svg { display: block; height: 22px; width: auto; }

/* Trust logos */
.footer-trust {
  padding: 28px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-row img {
  height: 28px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--t);
  display: block;
}
.trust-row img:hover { opacity: 1; }
.trust-text-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  height: 28px;
  letter-spacing: 0.3px;
}

/* Legal / responsible gaming */
.footer-legal { margin-bottom: 24px; }
.age-warning {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(250,88,0,0.1);
  border: 1px solid rgba(250,88,0,0.28);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 14px;
}
.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--c-orange);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-orange);
  flex-shrink: 0;
  font-family: 'Rubik', sans-serif;
}
.age-warning p { font-size: 13px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.55; }
.legal-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 600px) { .legal-notes { grid-template-columns: 1fr; } }
.legal-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 12px 16px;
}
.legal-note p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Sitemap links row */
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-links-row a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-links-row a:hover { color: #fff; }
.footer-links-row .sep { color: rgba(255,255,255,0.2); }

/* Copyright */
.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}

/* ============================================
   COOKIE BANNER
============================================ */
.cookie-bar {
  position: fixed;
  bottom: 60px; /* above catfish */
  left: 0; right: 0;
  z-index: 400;
  background: #001630;
  border-top: 1px solid var(--c-border);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-bar.visible { display: flex; }
.cookie-text { font-size: 13px; color: var(--text-muted); flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-btn {
  padding: 9px 26px;
  background: var(--c-green);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-weight: 600;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  transition: var(--t);
  white-space: nowrap;
}
.cookie-btn:hover { background: #77ab08; }

/* ============================================
   RESPONSIVE MOBILE PATCHES
============================================ */
@media (max-width: 480px) {
  .btn-lg { padding: 13px 22px; font-size: 15px; }
  .content-block { padding: 20px; }
  .footer { padding: 40px 16px 20px; }
  .catfish-left span { display: none; }
}
