/* Chicken Road Hungary — Affiliate site styles */

:root {
  --bg: #ffffff;
  --bg-header: #000000;
  --bg-footer: #000000;
  --bg-card: #f8f9fa;
  --bg-surf: #eedd82;
  --bg-surf2: #e9ecef;

  --accent: #ffcc00;
  --accent2: #ff9900;

  --accent-red: #dc3545;
  --neon: #ffd700;
  --success: #28a745;

  --text: #000000;
  --text-light: #ffffff;
  --text2: #6c757d;

  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);

  --container: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); text-decoration: underline; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============ HEADER ============ */
.site-header {
  background: var(--bg-header);
  color: var(--text-light);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.main-nav a {
  color: var(--text-light);
  padding: 8px 12px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: rgba(255,204,0,.15); color: var(--accent); text-decoration: none; }
.main-nav a.active { color: var(--accent); }

.play-btn {
  background: var(--accent) !important;
  color: var(--text) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px !important;
  box-shadow: 0 4px 12px rgba(255,204,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease !important;
}
.play-btn:hover {
  background: var(--accent2) !important;
  color: var(--text-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,153,0,.45);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
  color: var(--text-light);
  padding: 56px 20px;
  border-bottom: 4px solid var(--accent);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--text-light);
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: #d9d9d9; margin: 0 0 24px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.6); border: 2px solid var(--accent); }
.hero-img img { width: 100%; height: auto; display: block; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255,204,0,.4);
}
.btn-primary:hover {
  background: var(--accent2);
  color: var(--text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,153,0,.5);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--text);
  text-decoration: none;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============ MAIN CONTENT ============ */
main { padding: 50px 0; }
article { max-width: 900px; margin: 0 auto; padding: 0 20px; }
article.wide { max-width: var(--container); }

article h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--text);
}
article h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  margin: 42px 0 18px;
  padding-left: 14px;
  border-left: 5px solid var(--accent);
  color: var(--text);
}
article h3 {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.3;
  margin: 32px 0 14px;
  color: var(--text);
}
article p { margin: 0 0 18px; }
article ul, article ol { margin: 0 0 22px; padding-left: 28px; }
article li { margin-bottom: 8px; }
article ul li::marker { color: var(--accent2); }
article ol li::marker { color: var(--accent2); font-weight: 700; }
article strong { color: var(--text); font-weight: 700; }

article a { color: var(--accent2); text-decoration: underline; text-decoration-color: rgba(255,153,0,.4); }
article a:hover { color: var(--accent); text-decoration-color: var(--accent); }

article img.content-img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text2);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 8px; color: var(--text2); }
.breadcrumbs a { color: var(--text2); }
.breadcrumbs a:hover { color: var(--accent2); }

/* ============ TABLES ============ */
.table-wrap { overflow-x: auto; margin: 24px 0 30px; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th {
  background: var(--bg-header);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .4px;
}
tbody tr:hover { background: var(--bg-surf2); }
tbody tr:last-child td { border-bottom: none; }

/* ============ CARDS / FEATURE BLOCKS ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(0,0,0,.12); }
.feature-card h3 { margin: 0 0 10px; font-size: 19px; }
.feature-card .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 14px;
  text-align: center;
  line-height: 48px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

/* highlight box */
.highlight {
  background: var(--bg-surf);
  border-left: 5px solid var(--accent2);
  padding: 20px 24px;
  margin: 26px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.highlight p:last-child { margin-bottom: 0; }

/* warning / alert */
.alert {
  background: #fff8e1;
  border: 1px solid var(--accent);
  border-left: 5px solid var(--accent2);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: var(--radius);
}

/* CTA block (inside articles) */
.cta-block {
  background: linear-gradient(135deg, #000 0%, #1f1f1f 100%);
  color: var(--text-light);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 36px 0;
  border: 2px solid var(--accent);
}
.cta-block h3 { color: var(--accent); margin-top: 0; }
.cta-block p { color: #d9d9d9; }

/* ============ FAQ ============ */
.faq { margin: 36px 0; }
.faq h2 { margin-bottom: 22px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--accent2);
  font-weight: 700;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--bg-surf2); }
.faq-item .answer { padding: 0 22px 18px; color: var(--text2); color: #333; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-footer);
  color: var(--text-light);
  padding: 50px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  color: var(--accent);
  margin: 0 0 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #ccc; font-size: 15px; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-col p { color: #ccc; margin: 0 0 10px; font-size: 14px; line-height: 1.6; }
.footer-logo img { height: 36px; margin-bottom: 16px; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}
.footer-bottom .disclaimers { max-width: 75%; }
.footer-bottom .badges { display: flex; gap: 10px; align-items: center; }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  color: var(--accent-red);
  font-weight: 800;
  font-size: 13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    padding: 14px 20px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 3px solid var(--accent);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 14px; }
  .play-btn { width: 100%; text-align: center; margin-top: 6px; }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .disclaimers { max-width: 100%; }
  body { font-size: 16px; }
  article h2 { margin-top: 32px; }
}
