:root {
  --red:        #ff2453;
  --red-dark:   #cc1a3f;
  --green:      #2ecc71;
  --green-dark: #27ae60;
  --purple:     #be2edd;
  --purple-dark:#9b23b5;
  --blue:       #1a73e8;
  --gold:       #f9a825;
  --bg:         #ffffff;
  --bg-light:   #f7f8fa;
  --bg-card:    #ffffff;
  --border:     #e5e7eb;
  --text:       #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --radius:     8px;
  --shadow:     0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:  0 4px 20px rgba(0,0,0,.12);
  --font:       'Roboto', -apple-system, sans-serif;
  --max-w:      1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow: unset;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== LAYOUT ===== */
.container { }
.content-wrap { }
.article-main { flex: 1; min-width: 0; }
.sidebar { width: 300px; flex-shrink: 0; position: sticky; top: 20px; }


/* ===== ARTICLE HERO ===== */
.article-hero { margin-bottom: 28px; }
.article-hero .category-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.article-meta .updated { background: #fff3cd; color: #856404; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; }

/* ===== AUTHOR BOX ===== */
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,#667eea,#764ba2); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.author-info { font-size: 13px; }
.author-info strong { display: block; font-size: 14px; color: var(--text); }
.author-info span { color: var(--text-muted); }



/* ===== DISCLAIMER ===== */
.disclaimer-bar { background: #fff8e1; border: 1px solid #ffe082; border-radius: var(--radius); padding: 10px 16px; font-size: 13px; color: #5d4037; margin-bottom: 24px; }

/* ===== TOPLISTE TABLE ===== */
.topliste-wrap { overflow-x: auto; margin-bottom: 32px; }
.topliste { width: 100%; border-collapse: collapse; font-size: 14px; }
.topliste thead { background: #1a1a2e; color: #fff; }
.topliste thead th { padding: 12px 14px; text-align: left; font-weight: 600; white-space: nowrap; }
.topliste tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.topliste tbody tr:hover { background: #f0f4ff; }
.topliste td { padding: 12px 14px; vertical-align: middle; }
.topliste .casino-name { font-weight: 700; color: var(--text); }
.topliste .bonus-cell { color: var(--green-dark); font-weight: 600; }
.topliste .tag-kyc { background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.topliste .tag-lizenz { background: #eff6ff; color: #1d4ed8; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }

/* ===== ORG3 CASINO CARD ===== */
.org3-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow); }
.org3-card:hover { box-shadow: var(--shadow-lg); }
.org3-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.org3-card-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.org3-card-badge { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-purple { background: #f3e8ff; color: #6b21a8; }
.badge-gold { background: #fef3c7; color: #92400e; }
.org3-cta { background: var(--green); color: #fff; padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 14px; white-space: nowrap; text-align: center; display: inline-block; transition: background .15s; }
.org3-cta:hover { background: var(--green-dark); text-decoration: none; }
.org3-specs { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-bottom: 16px; }
.org3-spec { background: var(--bg-light); border-radius: 6px; padding: 10px 12px; }
.org3-spec-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 3px; }
.org3-spec-value { font-size: 14px; font-weight: 600; color: var(--text); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.pros, .cons { border-radius: 6px; padding: 12px 14px; font-size: 13px; }
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff1f2; border: 1px solid #fecdd3; }
.pros strong, .cons strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.pros strong { color: #166534; }
.cons strong { color: #991b1b; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li::before { content: "✔ "; color: var(--green-dark); }
.cons li::before { content: "✘ "; color: var(--red); }
.pros li, .cons li { margin-bottom: 4px; }

/* ===== CONTENT SECTIONS ===== */
.article-section { margin-bottom: 40px; }
.article-section h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.article-section h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 24px 0 12px; }
.article-section h4 { font-size: 15px; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
.article-section p { margin-bottom: 14px; line-height: 1.75; }
.article-section ul, .article-section ol { padding-left: 22px; margin-bottom: 14px; }
.article-section li { margin-bottom: 7px; line-height: 1.65; }
.article-section strong { color: var(--text); }

/* ===== DATA TABLE ===== */
.data-table-wrap { overflow-x: auto; margin: 16px 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: #f1f3f4; font-weight: 700; text-align: left; padding: 10px 14px; border: 1px solid var(--border); font-size: 13px; }
.data-table td { padding: 10px 14px; border: 1px solid var(--border); vertical-align: middle; }
.data-table tbody tr:nth-child(even) { background: #fafafa; }
.data-table tbody tr:hover { background: #f0f4ff; }

/* ===== COMPARISON TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.compare-table th { background: #1a1a2e; color: #fff; padding: 12px 16px; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table tbody tr:hover { background: #f9fafb; }
.check-yes { color: var(--green-dark); font-weight: 700; }
.check-no  { color: #dc2626; font-weight: 700; }


/* ===== INFO BOXES ===== */
.info-box { background: #fff8e1; border: 1px solid #ffe082; border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; font-size: 14px; }
.info-box strong { display: block; margin-bottom: 6px; font-size: 15px; color: #78350f; }
.warning-box { background: #fff1f2; border: 1px solid #fecdd3; border-left: 4px solid var(--red); border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; font-size: 14px; }
.tip-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-left: 4px solid var(--green); border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; font-size: 14px; }

/* ===== COINS STRIP ===== */
.coins-strip { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.coin-tag { display: inline-flex; align-items: center; gap: 6px; background: #f1f5f9; border: 1px solid #cbd5e1; border-radius: 20px; padding: 5px 12px; font-size: 13px; font-weight: 600; color: #334155; }
.coin-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-btc  { background: #f7931a; }
.dot-eth  { background: #627eea; }
.dot-sol  { background: #9945ff; }
.dot-usdt { background: #26a17b; }
.dot-xrp  { background: #0090d6; }
.dot-trx  { background: #e50914; }
.dot-bnb  { background: #f0b90b; }
.dot-doge { background: #c2a633; }





/* ===== MATCH-TYPE BOXES ===== */
.pros-cons-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
@media (max-width: 600px) { .pros-cons-2col { grid-template-columns: 1fr; } }

/* ===== STEPS ===== */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 16px 0; }
.steps li { counter-increment: step; display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.steps li::before { content: counter(step); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; background: var(--red); color: #fff; border-radius: 50%; font-weight: 700; font-size: 13px; margin-top: 2px; }

/* ===== DISCLAIMER FINAL ===== */


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-wrap { flex-direction: column; }
  .sidebar { width: 100%; position: static; }
}
@media (max-width: 600px) {
  .org3-card-header { flex-direction: column; }
  .pros-cons { grid-template-columns: 1fr; }
  .topliste thead { display: none; }
  .topliste tr { display: block; border-bottom: 2px solid var(--border); margin-bottom: 12px; }
  .topliste td { display: flex; justify-content: space-between; padding: 8px 12px; font-size: 13px; }
  .topliste td::before { content: attr(data-label); font-weight: 700; color: var(--text-muted); margin-right: 8px; }
}