/* ==========================================================================
   NPwin365 — Global Stylesheet
   v1.0.1 — Nep9-inspired redesign: white top bar + royal blue nav + portrait cards
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg-0: #050507;
  --bg-1: #0A0A0F;
  --bg-2: #14141C;
  --bg-3: #1C1C26;

  --accent-blue: #1E90FF;
  --accent-blue-bright: #00AEEF;
  --accent-red: #E5142A;
  --accent-red-bright: #FF1744;
  --accent-yellow: #FFD700;
  --accent-yellow-warm: #F5C518;

  --nav-blue: #0F4FA8;
  --nav-blue-bright: #1660C8;
  --top-bar-bg: #FFFFFF;
  --top-bar-text: #1A1A24;

  --success: #22C55E;
  --warning: #F5C518;
  --danger: #FF1744;
  --info: #1E90FF;

  --text-100: #FFFFFF;
  --text-200: #E8E9EC;
  --text-300: #B8BAC2;
  --text-400: #8E909A;
  --text-500: #6B6D75;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(30, 144, 255, 0.4);

  --max-width: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.32s;
  --dur-slow: 0.6s;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-blue: 0 0 40px rgba(30, 144, 255, 0.35);
  --shadow-glow-red: 0 0 40px rgba(255, 23, 68, 0.3);
  --shadow-glow-yellow: 0 0 40px rgba(255, 215, 0, 0.3);
}

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

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

body {
  background: var(--bg-1);
  color: var(--text-200);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-blue-bright); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--accent-yellow); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--accent-blue); color: var(--text-100); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text-100);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1em; color: var(--text-200); }
strong { color: var(--text-100); font-weight: 700; }
em { color: var(--accent-yellow); font-style: italic; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(48px, 8vw, 96px); }

.section-head { margin-bottom: clamp(32px, 5vw, 56px); text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue-bright);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.08);
}
.section-head h2 { margin-bottom: 14px; }
.section-head .section-lead {
  max-width: 760px;
  margin-inline: auto;
  color: var(--text-300);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

/* =====================================================================
   HEADER — two-row: white top bar + royal blue nav
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--top-bar-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-bar {
  background: var(--top-bar-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  color: var(--accent-red);
  font-weight: 800;
  font-size: 0.96rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
}

.btn-login:hover {
  background: rgba(229, 20, 42, 0.08);
  color: var(--accent-red);
  border-color: rgba(229, 20, 42, 0.2);
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--accent-yellow-warm), var(--accent-yellow));
  color: var(--bg-0);
  font-weight: 800;
  font-size: 0.96rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.4);
  transition: all var(--dur-fast) var(--ease-out);
}

.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.55);
  color: var(--bg-0);
}

/* Royal blue navigation */
.primary-nav {
  background: linear-gradient(180deg, var(--nav-blue) 0%, var(--nav-blue-bright) 100%);
  position: relative;
}

.primary-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}

.primary-nav ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
}

.primary-nav a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  color: var(--text-100);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.primary-nav a:hover {
  color: var(--accent-yellow);
  background: rgba(0, 0, 0, 0.12);
}

.primary-nav a.active {
  color: var(--accent-yellow);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px 2px 0 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--top-bar-text);
  position: relative;
  transition: transform var(--dur-fast) var(--ease-out);
}

.nav-toggle span::before { content: ""; position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { content: ""; position: absolute; top: 7px; left: 0; }

/* =====================================================================
   HERO — full-width carousel + content panel below
   ===================================================================== */
.hero-carousel-section {
  background: var(--bg-1);
  padding: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  aspect-ratio: 1920 / 600;
  overflow: hidden;
  background: var(--bg-2);
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}

.hero-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}

.hero-carousel-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 5;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.hero-carousel-arrow:hover {
  background: var(--accent-yellow);
  transform: translateY(-50%) scale(1.08);
}

.hero-carousel-arrow.prev { left: 18px; }
.hero-carousel-arrow.next { right: 18px; }

.hero-carousel-controls {
  position: absolute;
  inset: auto 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.hero-carousel-dot {
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  transition: background var(--dur-fast) var(--ease-out), width var(--dur-fast) var(--ease-out);
}

.hero-carousel-dot:hover { background: rgba(255, 255, 255, 0.7); }
.hero-carousel-dot.is-active { background: var(--accent-yellow); width: 48px; }

/* Hero content panel below carousel */
.hero-content {
  position: relative;
  background:
    radial-gradient(60% 50% at 80% 50%, rgba(30, 144, 255, 0.12), transparent 60%),
    radial-gradient(50% 40% at 10% 80%, rgba(255, 215, 0, 0.08), transparent 60%),
    var(--bg-1);
  padding-block: clamp(48px, 7vw, 88px);
  overflow: hidden;
}

.hero-content-grid {
  display: block;
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-100);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.verified-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22C55E;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2s var(--ease-in-out) infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.75; }
}

.hero-content h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-content h1 .accent-yellow {
  color: var(--accent-yellow);
}

.hero-content .hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-300);
  max-width: 64ch;
  margin-inline: auto;
  margin-bottom: 28px;
}

.hero-content .hero-lead a {
  color: var(--accent-yellow);
  border-bottom: 1px dashed currentColor;
}

.hero-content .hero-lead a:hover {
  color: var(--accent-blue-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Decorative side bonus badge */
.hero-bonus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 26vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #FFE166 0%, #FFD700 35%, #E5142A 100%);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 12px 40px rgba(229, 20, 42, 0.4),
    0 0 0 8px rgba(255, 215, 0, 0.15),
    inset 0 -6px 18px rgba(229, 20, 42, 0.4);
  transform: rotate(-6deg);
  transition: transform var(--dur-med) var(--ease-out);
}

.hero-bonus-card:hover {
  transform: rotate(-6deg) scale(1.04);
  color: #FFFFFF;
}

.hero-bonus-card .label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.hero-bonus-card .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-bonus-card .sub {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 6px;
}

/* =====================================================================
   BUTTON SYSTEM
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-bright));
  color: var(--text-100);
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 144, 255, 0.5), var(--shadow-glow-blue);
  color: var(--text-100);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-100);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-yellow-warm), var(--accent-yellow));
  color: var(--bg-0);
  box-shadow: var(--shadow-glow-yellow);
}
.btn-accent:hover {
  transform: translateY(-2px);
  color: var(--bg-0);
}

/* =====================================================================
   LICENSE BANNER (Gaming Curaçao + PAGCOR)
   ===================================================================== */
.license-banner-section {
  padding-block: clamp(28px, 4vw, 56px);
  background: var(--bg-1);
}

.license-banner-img {
  display: block;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.license-banner-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 144, 255, 0.25), 0 0 0 1px rgba(255, 215, 0, 0.35);
}

/* =====================================================================
   RECOMMENDED BY (Celebrity videos) — portrait cards
   ===================================================================== */
.recommended-section {
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(255, 153, 0, 0.18), transparent 70%),
    radial-gradient(40% 60% at 50% 0%, rgba(229, 20, 42, 0.08), transparent 70%),
    var(--bg-0);
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
}

.recommended-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--accent-yellow);
  letter-spacing: -0.01em;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1180px;
  margin-inline: auto;
  gap: clamp(16px, 2.4vw, 28px);
}

.rec-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.rec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.35);
}

.rec-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bg-3);
  cursor: pointer;
}

.rec-thumb img,
.rec-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rec-thumb .rec-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
  pointer-events: none;
}

.rec-card:hover .rec-play-circle {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-yellow);
}

.rec-info {
  padding: 14px 16px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rec-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

.rec-name {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.25;
}

.rec-watch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 16px 16px;
  padding: 12px 14px;
  background: #FFFFFF;
  color: var(--bg-0);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.rec-watch:hover {
  background: var(--accent-yellow);
  transform: translateY(-1px);
}

.rec-watch::before {
  content: "▶";
  font-size: 0.78rem;
}

/* Once the user clicks WATCH NOW we swap thumbnail for actual <video> */
.rec-card.is-playing .rec-thumb img,
.rec-card.is-playing .rec-play-circle {
  display: none;
}

.rec-card.is-playing .rec-watch {
  display: none;
}

/* =====================================================================
   SNAPSHOT stat cards
   ===================================================================== */
.snapshot-section { padding-block: clamp(40px, 6vw, 64px); background: var(--bg-1); }

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.snapshot-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}

.snapshot-card .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 8px;
}

.snapshot-card .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 4px;
  line-height: 1.05;
}

.snapshot-card .desc { font-size: 0.92rem; color: var(--text-300); }

/* =====================================================================
   Content blocks
   ===================================================================== */
.content-section { padding-block: clamp(48px, 7vw, 88px); }
.content-section .container > p { font-size: 1.04rem; color: var(--text-200); max-width: 72ch; margin-bottom: 1.1em; }
.content-section h2 { margin-bottom: 18px; }
.content-section h3 { margin-top: 32px; margin-bottom: 12px; color: var(--text-100); }

.intro-block {
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.08), rgba(30, 144, 255, 0));
  border: 1px solid var(--border-accent);
  border-left: 4px solid var(--accent-blue-bright);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.intro-block p:last-child { margin-bottom: 0; }

/* Callouts */
.callout-warn, .dont-callout, .info-callout {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-block: 24px;
  border: 1px solid var(--border);
}

.callout-warn {
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.1), rgba(245, 197, 24, 0));
  border-color: rgba(245, 197, 24, 0.35);
  border-left: 4px solid var(--accent-yellow);
}
.dont-callout {
  background: linear-gradient(180deg, rgba(255, 23, 68, 0.08), rgba(255, 23, 68, 0));
  border-color: rgba(255, 23, 68, 0.3);
  border-left: 4px solid var(--accent-red);
}
.info-callout {
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.08), rgba(30, 144, 255, 0));
  border-color: var(--border-accent);
  border-left: 4px solid var(--accent-blue-bright);
}

.callout-warn h3, .dont-callout h3, .info-callout h3 {
  font-size: 1.1rem; margin-top: 0; margin-bottom: 8px;
}
.callout-warn h3 { color: var(--accent-yellow); }
.dont-callout h3 { color: var(--accent-red-bright); }
.info-callout h3 { color: var(--accent-blue-bright); }

/* Pillar grid (2082) */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-block: 24px;
}

.pillar-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.pillar-card .pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.pillar-card.tone-blue .pillar-icon { background: rgba(30, 144, 255, 0.15); color: var(--accent-blue-bright); }
.pillar-card.tone-yellow .pillar-icon { background: rgba(245, 197, 24, 0.15); color: var(--accent-yellow); }
.pillar-card.tone-red .pillar-icon { background: rgba(255, 23, 68, 0.15); color: var(--accent-red-bright); }
.pillar-card.tone-green .pillar-icon { background: rgba(34, 197, 94, 0.15); color: var(--success); }

.pillar-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-100); }
.pillar-card p { color: var(--text-300); font-size: 0.96rem; margin-bottom: 0; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-block: 24px;
  background: var(--bg-2);
}

.data-table { width: 100%; min-width: 640px; font-size: 0.94rem; }

.data-table th, .data-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.data-table thead th {
  background: var(--bg-3);
  color: var(--text-100);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table strong { color: var(--text-100); }
.data-table .col-good { color: var(--success); }
.data-table .col-bad { color: var(--accent-red-bright); }

/* =====================================================================
   2082 Safety Filter
   ===================================================================== */
.safety-filter-section {
  padding-block: clamp(48px, 7vw, 88px);
  background:
    radial-gradient(60% 50% at 10% 0%, rgba(30, 144, 255, 0.18), transparent 60%),
    radial-gradient(60% 50% at 90% 100%, rgba(255, 215, 0, 0.1), transparent 60%),
    var(--bg-1);
}

.safety-filter {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 880px;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.safety-filter-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 720px) {
  .safety-filter-form { grid-template-columns: 1fr 1fr; }
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--text-200); letter-spacing: 0.02em; }

.field select, .field input[type="number"] {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-100);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.field select:focus, .field input[type="number"]:focus {
  outline: none;
  border-color: var(--accent-blue-bright);
  background: var(--bg-2);
}

.field-hint { font-size: 0.78rem; color: var(--text-400); }

.safety-filter-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.safety-filter-result {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-1);
  display: none;
}
.safety-filter-result.is-visible { display: block; }

.safety-filter-result[data-band="low"] {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0));
}
.safety-filter-result[data-band="standard"] {
  border-color: rgba(245, 197, 24, 0.4);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0));
}
.safety-filter-result[data-band="fiu"] {
  border-color: rgba(255, 23, 68, 0.4);
  background: linear-gradient(180deg, rgba(255, 23, 68, 0.08), rgba(255, 23, 68, 0));
}

.safety-filter-result .result-band-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.safety-filter-result[data-band="low"] .result-band-label { background: rgba(34, 197, 94, 0.18); color: var(--success); }
.safety-filter-result[data-band="standard"] .result-band-label { background: rgba(245, 197, 24, 0.18); color: var(--accent-yellow); }
.safety-filter-result[data-band="fiu"] .result-band-label { background: rgba(255, 23, 68, 0.18); color: var(--accent-red-bright); }

.safety-filter-result h3 { font-size: 1.2rem; margin-bottom: 8px; }
.safety-filter-result p { color: var(--text-300); margin-bottom: 6px; }
.safety-filter-result ul { margin: 10px 0 0; padding-left: 0; }

.safety-filter-result li {
  position: relative;
  padding-left: 22px;
  color: var(--text-200);
  margin-bottom: 6px;
  font-size: 0.94rem;
}

.safety-filter-result li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-blue-bright);
  font-weight: 700;
}

.safety-filter-note { font-size: 0.84rem; color: var(--text-400); text-align: center; margin-top: 16px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-section { padding-block: clamp(48px, 7vw, 88px); background: var(--bg-1); }

.faq-list {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.faq-item[open] { border-color: var(--border-accent); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  color: var(--text-100);
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-100);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent-blue);
}

.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--text-300);
  font-size: 0.98rem;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* =====================================================================
   Bottom CTA + Disclaimer
   ===================================================================== */
.bottom-cta {
  padding-block: clamp(48px, 7vw, 96px);
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(30, 144, 255, 0.2), transparent 60%),
    var(--bg-0);
  text-align: center;
}
.bottom-cta h2 { margin-bottom: 14px; }
.bottom-cta p { color: var(--text-300); max-width: 60ch; margin-inline: auto; margin-bottom: 28px; }
.bottom-cta .btn { font-size: 1.04rem; padding: 16px 32px; }

.disclaimer {
  padding-block: 28px;
  font-size: 0.84rem;
  color: var(--text-400);
  text-align: center;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.disclaimer p { max-width: 70ch; margin-inline: auto; margin-bottom: 0; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--bg-0);
  color: var(--text-300);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 860px) {
  .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

.footer-about p { color: var(--text-400); font-size: 0.92rem; max-width: 38ch; margin-top: 14px; }

.footer-brand-img {
  height: 36px;
  width: auto;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-200);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-400); font-size: 0.93rem; }
.footer-col a:hover { color: var(--accent-yellow); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: var(--text-500);
}

.footer-licences {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-licences .licence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-400);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

/* =====================================================================
   Float widgets (Telegram + Back-to-Top)
   ===================================================================== */
.float-wrapper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: var(--text-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  border: 0;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.float-btn:hover { transform: translateY(-3px); }

.float-telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.5), 0 0 24px rgba(34, 158, 217, 0.3);
}

.float-telegram:hover {
  box-shadow: 0 12px 28px rgba(34, 158, 217, 0.6), 0 0 36px rgba(34, 158, 217, 0.4);
  color: var(--text-100);
}

.float-telegram svg { width: 28px; height: 28px; }

.float-back-to-top {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-bright));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), 0 0 16px rgba(30, 144, 255, 0.3);
  width: 48px;
  height: 48px;
  opacity: 0;
  pointer-events: none;
}

.float-back-to-top.is-visible { opacity: 1; pointer-events: auto; }

/* =====================================================================
   Utility / Misc
   ===================================================================== */
.text-blue { color: var(--accent-blue-bright); }
.text-yellow { color: var(--accent-yellow); }
.text-red { color: var(--accent-red-bright); }
.text-success { color: var(--success); }

.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;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* =====================================================================
   Responsive — mobile nav
   ===================================================================== */
@media (max-width: 1100px) {
  .primary-nav {
    position: fixed;
    inset: 84px 0 auto;
    transform: translateY(-110%);
    transition: transform var(--dur-med) var(--ease-out);
    z-index: 90;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav.is-open { transform: translateY(0); }

  .primary-nav-inner { padding-inline: var(--gutter); }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 14px 0;
    width: 100%;
  }

  .primary-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .primary-nav a.active::after { display: none; }
  .primary-nav a.active { background: rgba(0, 0, 0, 0.18); }

  .nav-toggle { display: inline-flex; }
}

@media (max-width: 700px) {
  .top-bar-inner { height: 72px; }
  .brand img { height: 46px; }
  .primary-nav { inset-block-start: 72px; }

  .btn-login { padding: 8px 14px; font-size: 0.86rem; }
  .btn-signup { padding: 8px 16px; font-size: 0.86rem; }

  .hero-carousel-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
  .hero-carousel-dot { width: 24px; }
  .hero-carousel-dot.is-active { width: 36px; }

  .hero-bonus { min-height: 220px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .rec-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rec-info { padding: 12px 12px 4px; }
  .rec-name { font-size: 0.92rem; }
  .rec-watch { margin: 10px 12px 12px; padding: 10px; font-size: 0.78rem; }
}
