/* ================================================
   CHICKEN ROAD BELGIË — STYLES
   Palette: deep navy / gold / orange
   ================================================ */

:root {
  --cr-bg: #0F1633;
  --cr-bg-2: #1A2151;
  --cr-bg-3: #232B66;
  --cr-card: #FFFFFF;
  --cr-text: #1A1F35;
  --cr-text-soft: #4A5170;
  --cr-text-light: #E6E9F5;
  --cr-text-muted: #9AA1C0;
  --cr-yellow: #FFD400;
  --cr-yellow-hover: #FFE552;
  --cr-orange: #FF7A0F;
  --cr-orange-hover: #FF9136;
  --cr-red: #C2362C;
  --cr-red-hover: #DA4339;
  --cr-border: #2D3573;
  --cr-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --cr-shadow-card: 0 12px 40px rgba(0, 0, 0, 0.5);
  --cr-radius: 12px;
  --cr-radius-lg: 20px;
  --cr-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Manrope', Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--cr-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cr-text-light);
  background: var(--cr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--cr-yellow);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cr-yellow-hover);
}

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

.cr-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
   HEADER
   ================================================ */

.cr-header {
  background: var(--cr-bg-2);
  border-bottom: 1px solid var(--cr-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--cr-shadow);
}

.cr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cr-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.cr-logo__text {
  font-family: var(--cr-font);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: var(--cr-yellow);
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 var(--cr-orange);
}

.cr-logo__accent {
  color: var(--cr-orange);
  text-shadow: 2px 2px 0 var(--cr-red);
}

.cr-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.cr-nav a {
  color: var(--cr-text-light);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.cr-nav a:hover {
  color: var(--cr-yellow);
  border-bottom-color: var(--cr-yellow);
}

/* ================================================
   BUTTONS
   ================================================ */

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--cr-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: var(--cr-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.cr-btn--primary {
  background: var(--cr-yellow);
  color: var(--cr-text);
  box-shadow: 0 4px 14px rgba(255, 212, 0, 0.45);
}

.cr-btn--primary:hover {
  background: var(--cr-yellow-hover);
  color: var(--cr-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 212, 0, 0.55);
}

.cr-btn--secondary {
  background: #D4D7E0;
  color: var(--cr-text);
}

.cr-btn--secondary:hover {
  background: #E6E9F0;
  color: var(--cr-text);
  transform: translateY(-2px);
}

.cr-btn--exclusive {
  background: var(--cr-red);
  color: #FFF;
  font-size: 13px;
  padding: 10px 18px;
  box-shadow: 0 4px 14px rgba(194, 54, 44, 0.45);
}

.cr-btn--exclusive:hover {
  background: var(--cr-red-hover);
  color: #FFF;
  transform: translateY(-2px);
}

.cr-btn--large {
  font-size: 16px;
  padding: 16px 32px;
}

.cr-btn--xl {
  font-size: 18px;
  padding: 18px 40px;
}

/* ================================================
   HERO
   ================================================ */

.cr-hero {
  position: relative;
  background: linear-gradient(135deg, var(--cr-bg) 0%, var(--cr-bg-2) 50%, var(--cr-bg-3) 100%);
  overflow: hidden;
  padding: 60px 0 80px;
}

.cr-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 122, 15, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 212, 0, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.cr-hero__bg::before,
.cr-hero__bg::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 212, 0, 0.05);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cr-hero__bg::before {
  left: 5%;
  filter: blur(40px);
}

.cr-hero__bg::after {
  right: 5%;
  filter: blur(40px);
}

.cr-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cr-hero__image {
  display: flex;
  justify-content: center;
  position: relative;
}

.cr-hero__image::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.cr-hero__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.6));
  animation: cr-float 3s ease-in-out infinite;
}

@keyframes cr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.cr-hero__card {
  background: var(--cr-card);
  color: var(--cr-text);
  padding: 40px;
  border-radius: var(--cr-radius-lg);
  box-shadow: var(--cr-shadow-card);
}

.cr-hero__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--cr-text);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cr-flag {
  display: inline-block;
  font-size: 32px;
  vertical-align: middle;
  margin-left: 8px;
}

.cr-hero__bonus {
  font-size: 18px;
  color: var(--cr-text-soft);
  margin-bottom: 24px;
}

.cr-hero__bonus strong {
  color: var(--cr-orange);
  font-size: 22px;
  font-weight: 900;
}

.cr-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cr-hero__buttons .cr-btn {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
}

/* ================================================
   FEATURES BAR
   ================================================ */

.cr-features {
  background: var(--cr-bg-3);
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
  padding: 18px 0;
}

.cr-features__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.cr-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cr-text-light);
}

.cr-feature__icon {
  font-size: 18px;
}

/* ================================================
   MAIN CONTENT
   ================================================ */

.cr-main {
  background: var(--cr-bg);
  padding: 60px 0 80px;
}

.cr-article {
  max-width: 900px;
}

.cr-article > * {
  margin-bottom: 18px;
}

.cr-article h2 {
  font-size: 30px;
  font-weight: 800;
  color: #FFF;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  scroll-margin-top: 80px;
}

.cr-article h2:first-of-type {
  margin-top: 32px;
}

.cr-article h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cr-yellow);
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.3;
  scroll-margin-top: 80px;
}

.cr-article p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cr-text-light);
}

.cr-article p strong {
  color: #FFF;
  font-weight: 700;
}

.cr-article ul,
.cr-article ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.cr-article ul li,
.cr-article ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.cr-article ul li::marker {
  color: var(--cr-yellow);
}

.cr-article ol li::marker {
  color: var(--cr-orange);
  font-weight: 700;
}

.cr-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cr-text-light);
  padding: 24px 28px;
  background: var(--cr-bg-2);
  border-left: 4px solid var(--cr-yellow);
  border-radius: var(--cr-radius);
  margin-bottom: 32px;
}

/* ================================================
   TABLE
   ================================================ */

.cr-table-wrap {
  margin: 28px 0;
  background: var(--cr-bg-2);
  border-radius: var(--cr-radius);
  overflow: auto;
  border: 1px solid var(--cr-border);
}

.cr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.cr-table thead th {
  background: var(--cr-bg-3);
  color: var(--cr-yellow);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--cr-border);
}

.cr-table tbody tr {
  border-bottom: 1px solid var(--cr-border);
  transition: background 0.2s ease;
}

.cr-table tbody tr:last-child {
  border-bottom: none;
}

.cr-table tbody tr:hover {
  background: rgba(255, 212, 0, 0.05);
}

.cr-table th,
.cr-table td {
  padding: 12px 18px;
  vertical-align: top;
  color: var(--cr-text-light);
}

.cr-table th {
  text-align: left;
  font-weight: 600;
  color: var(--cr-yellow);
  width: 35%;
  background: rgba(255, 255, 255, 0.02);
}

/* ================================================
   CTA INLINE
   ================================================ */

.cr-cta-inline,
.cr-cta-final {
  display: flex;
  justify-content: center;
  margin: 36px 0;
}

.cr-cta-final {
  margin: 48px 0 24px;
}

/* ================================================
   FAQ
   ================================================ */

.cr-faq-item {
  background: var(--cr-bg-2);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

.cr-faq-item:hover {
  border-color: var(--cr-yellow);
}

.cr-faq-item h3 {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-left: 0;
}

.cr-faq-item h3::before {
  content: "❓ ";
  color: var(--cr-yellow);
}

.cr-faq-item p {
  color: var(--cr-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   REVIEWS
   ================================================ */

.cr-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}

.cr-review {
  background: var(--cr-bg-2);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 22px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cr-review:hover {
  transform: translateY(-3px);
  border-color: var(--cr-yellow);
}

.cr-review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.cr-review__name {
  font-weight: 700;
  color: var(--cr-yellow);
  font-size: 16px;
}

.cr-review__stars {
  color: var(--cr-orange);
  font-size: 16px;
  letter-spacing: 2px;
}

.cr-review__text {
  color: var(--cr-text-light);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

/* ================================================
   FOOTER
   ================================================ */

.cr-footer {
  background: var(--cr-bg-2);
  border-top: 1px solid var(--cr-border);
  padding: 40px 0 24px;
  margin-top: 60px;
}

.cr-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cr-border);
  margin-bottom: 20px;
}

.cr-footer__logo .cr-logo__text {
  font-size: 24px;
}

.cr-footer__safety {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}

.cr-footer__safety > span {
  background: var(--cr-red);
  color: #FFF;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
}

.cr-footer__safety a {
  color: var(--cr-text-muted);
  font-size: 13px;
}

.cr-footer__safety a:hover {
  color: var(--cr-yellow);
}

.cr-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}

.cr-footer__nav a {
  color: var(--cr-text-muted);
  font-size: 14px;
}

.cr-footer__nav a:hover {
  color: var(--cr-yellow);
}

.cr-footer__copy {
  text-align: center;
}

.cr-footer__copy p {
  font-size: 13px;
  color: var(--cr-text-muted);
  margin: 0 0 8px;
}

.cr-footer__disclaimer {
  max-width: 800px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.6;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
  .cr-hero {
    padding: 40px 0 60px;
  }

  .cr-hero__content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .cr-hero__image {
    order: -1;
  }

  .cr-hero__image img {
    max-width: 280px;
  }

  .cr-hero__title {
    font-size: 32px;
  }

  .cr-nav {
    display: none;
  }

  .cr-features__inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .cr-feature {
    flex-shrink: 0;
  }

  .cr-article h2 {
    font-size: 24px;
  }

  .cr-article h3 {
    font-size: 18px;
  }

  .cr-table {
    font-size: 13px;
  }

  .cr-table th,
  .cr-table td {
    padding: 10px 12px;
  }

  .cr-footer__top {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .cr-container {
    padding: 0 16px;
  }

  .cr-header {
    padding: 10px 0;
  }

  .cr-btn--exclusive {
    font-size: 12px;
    padding: 8px 12px;
  }

  .cr-hero__card {
    padding: 24px;
  }

  .cr-hero__title {
    font-size: 26px;
  }

  .cr-lead {
    font-size: 16px;
    padding: 18px 20px;
  }

  .cr-article p,
  .cr-article ul li,
  .cr-article ol li {
    font-size: 15px;
  }
}
