:root {
  --green: #166534;
  --green-soft: #dcfce7;
  --red: #b91c1c;
  --red-soft: #fee2e2;
  --gold: #facc15;
  --gold-soft: #fef9c3;
  --ink: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-page: #f3f4f6;
  --bg-card: #ffffff;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f1f5f9 0, #f3f4f6 40%, #e5e7eb 100%);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.flag-strip {
  height: 5px;
  background: linear-gradient(to right, #166534 35%, #facc15 35%, #facc15 45%, #b91c1c 45%);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.brand-medal {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15, #b45309);
  padding: 2px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
}

.brand-medal-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #022c22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fefce8;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "DM Sans", system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: #022c22;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: background 140ms ease-out, border 140ms ease-out, color 140ms ease-out;
}

.main-nav a:hover {
  background: #e2f3e9;
  border-color: rgba(22, 101, 52, 0.4);
  color: #022c22;
}

.main-nav a[data-active="true"] {
  background: #dcfce7;
  border-color: rgba(22, 101, 52, 0.8);
  color: #14532d;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(185, 28, 28, 0.5);
  background: #fef2f2;
  font-size: 11px;
  color: #7f1d1d;
  white-space: nowrap;
}

.badge-18 strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fef2f2;
  font-size: 10px;
}

/* LAYOUT */

.site-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 16px 30px;
  flex: 1;
}

/* HERO */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 10px;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-left-card {
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
  position: relative;
  overflow: hidden;
}

.hero-left-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at -10% 20%, rgba(22, 101, 52, 0.09), transparent 60%),
    radial-gradient(circle at 110% 0, rgba(185, 28, 28, 0.09), transparent 55%);
  pointer-events: none;
}

.hero-flag-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #ecfdf3;
  font-size: 11px;
  color: #166534;
  margin-bottom: 10px;
}

.hero-flag-label span {
  display: inline-flex;
  width: 16px;
  height: 10px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.35);
}

.hero-flag-label span::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, #166534 40%, #facc15 40%, #facc15 55%, #b91c1c 55%);
}

.hero-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #022c22;
  margin-bottom: 6px;
}

.hero-title span {
  color: var(--red);
}

.hero-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 4px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hero-bullets li::before {
  content: "•";
  color: var(--green);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn-primary {
  border-radius: 999px;
  padding: 9px 20px;
  border: none;
  background: linear-gradient(135deg, #166534, #b91c1c);
  color: #fefce8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.45);
}

.btn-outline {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  background: rgba(248, 250, 252, 0.9);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.hero-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}

.hero-right-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-panel {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 12px 10px;
}

/* BADGE STRIP */

.strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.badge-tag {
  border-radius: 999px;
  padding: 4px 9px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #f8fafc;
  color: var(--muted);
}

/* MINI LIST */

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.mini-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

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

.mini-logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mini-meta {
  font-size: 11px;
  color: var(--muted);
}

/* SECTION HEADERS */

.section {
  margin-top: 26px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.section-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #022c22;
}

.section-sub {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
}

@media (max-width: 720px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CASINO CARDS */

.casino-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 960px) {
  .casino-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .casino-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

.casino-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.casino-logo {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.casino-name {
  font-weight: 700;
}

.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 3px;
}

.tag {
  border-radius: 999px;
  padding: 3px 7px;
  border: 1px solid var(--border);
  background: #f9fafb;
  font-size: 11px;
  color: var(--muted);
}

.casino-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 6px;
}

.meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.meta-value {
  font-size: 12px;
}

.casino-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.helper-pill {
  border-radius: 999px;
  padding: 3px 7px;
  background: var(--green-soft);
  color: #14532d;
  font-size: 10px;
}

/* GENERIC CONTENT LAYOUTS */

.page-main {
  margin-top: 20px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .split-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px 18px;
  box-shadow: 0 16px 30px rgba(148, 163, 184, 0.18);
}

.card h1,
.card h2,
.card h3 {
  font-family: "DM Sans", system-ui, sans-serif;
}

.card h1 {
  font-size: 22px;
  margin-bottom: 6px;
}

.card h2 {
  font-size: 18px;
  margin: 10px 0 4px;
}

.card p,
.card li {
  font-size: 14px;
  color: var(--muted);
}

.card ul {
  margin-left: 18px;
  padding-left: 0;
}

/* RESPONSIBLE BLOCK */

.card-rg {
  border-left: 4px solid var(--red);
}

.card-rg-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.card-rg-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 9px 11px;
}

.faq-q {
  font-weight: 600;
  font-size: 13px;
}

.faq-a {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* CONTACT */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

label {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(22, 101, 52, 0.24);
  background: #ffffff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.helper-text {
  font-size: 11px;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  background: #f8fafc;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
}

.footer-section strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-note {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 10px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}

.footer-note strong {
  color: #0f172a;
}

@media (max-width: 880px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  justify-content: center;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 12px;
  padding: 8px 10px;
}

.cookie-inner {
  max-width: 1120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-inner a {
  color: #bfdbfe;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background: transparent;
  color: #e5e7eb;
}

.cookie-btn-primary {
  background: #facc15;
  color: #0f172a;
  border-color: #facc15;
  font-weight: 600;
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}