*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Roboto', sans-serif; font-size: 16px; line-height: 1.65; color: #2c3e50; background: #fff; }
a { color: #ff2453; text-decoration: none; transition: all 0.3s ease; }
a:hover { text-decoration: underline; }

.container {  }
.content-wrap {}


/* HERO */
.article-hero {  }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.article-meta-item { font-size: 13px; color: #7f8c8d; }
.article-meta-item i { margin-right: 5px; color: #ff2453; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: #dfe6e9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-avatar i { font-size: 22px; color: #7f8c8d; }
.author-name { font-weight: 700; font-size: 14px; color: #111; }
.author-title { font-size: 12px; color: #7f8c8d; }

/* ARTICLE BODY */
.article-body { padding: 35px 0; }
.article-body h2 { font-family: 'Roboto Slab', serif; font-size: 1.55em; font-weight: 700; color: #111; margin: 42px 0 18px; padding-bottom: 10px; border-bottom: 2px solid #f1f3f4; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15em; font-weight: 700; color: #2e3246; margin: 30px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body strong { color: #111; }
.article-body ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.article-body ul li { padding: 4px 0 4px 22px; position: relative; }
.article-body ul li::before { content: '\f111'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #ff2453; font-size: 7px; position: absolute; left: 2px; top: 9px; }
.article-body ol { padding-left: 0; list-style: none; counter-reset: steps; margin-bottom: 16px; }
.article-body ol li { padding: 5px 0 5px 32px; position: relative; counter-increment: steps; }
.article-body ol li::before { content: counter(steps); position: absolute; left: 0; top: 4px; width: 22px; height: 22px; background: #ff2453; color: #fff; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* TOC */


/* ORG3 CARDS */
.topliste-wrap { margin: 20px 0 30px; }
.org3-list { display: flex; flex-direction: column; gap: 14px; }
.org3-item { position: relative; }
.org3-card {
  border-radius: 5px; background: #fff;
  box-shadow: 0 10px 40px rgba(109,141,173,0.25);
  transition: box-shadow 0.4s ease;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  overflow: visible;
}
.org3-card:hover { box-shadow: 0 15px 40px rgba(109,141,173,0.5); }
.org3-rank { position: absolute; top: -14px; left: 30px; width: 30px; height: 42px; background: #be2edd; border-radius: 5px; z-index: 2; display: flex; align-items: center; justify-content: center; }
.org3-rank::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px; background: rgba(0,0,0,0.1); border-radius: 5px 5px 0 0; }
.org3-item:first-child .org3-rank { background: #ff2453; }
.org3-item:nth-child(2) .org3-rank { background: #f39c12; }
.org3-item:nth-child(3) .org3-rank { background: #3498db; }
.org3-rank span { color: #fff; font-weight: 700; font-size: 1em; position: relative; z-index: 1; }
.org3-logo { display: flex; align-items: center; justify-content: center; padding: 12px 20px 12px 30px; border-right: 1px solid #d6d7db; min-height: 90px; }
.org3-logo img { width: 120px; height: 55px; object-fit: contain; border-radius: 5px; background: #f8f9fa; }
.org3-terms { padding: 12px 20px; border-right: 1px solid #d6d7db; }
.org3-terms-label { font-size: 12px; color: #7f8c8d; margin-bottom: 3px; }
.org3-terms-value { font-size: 22px; font-weight: 700; color: #111; line-height: 1.1; margin-bottom: 4px; }
.org3-terms-meta { font-size: 12px; color: #7f8c8d; }
.org3-terms-meta strong { color: #2e3246; font-size: 13px; }
.org3-rating { padding: 12px 20px; border-right: 1px solid #d6d7db; text-align: center; min-width: 140px; }
.org3-rating-label { font-size: 11px; color: #7f8c8d; margin-bottom: 5px; }
.org3-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 4px; }
.org3-stars i { color: #ff2453; font-size: 14px; }
.org3-rating-num { display: inline-flex; align-items: center; gap: 5px; background: #fff; border: 1px solid #d6d7db; border-radius: 20px; padding: 4px 12px; font-weight: 700; font-size: 0.95em; color: #111; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.org3-rating-num i { color: #ff2453; font-size: 12px; }
.org3-buttons { padding: 12px 20px; display: flex; flex-direction: column; gap: 7px; min-width: 180px; }
.btn-green { display: block; text-align: center; padding: 11px 20px; background: #2ecc71; color: #fff; border-radius: 23px; font-weight: 700; font-size: 0.9em; box-shadow: 0 0 15px rgba(45,221,108,0.4); transition: box-shadow 0.4s; }
.btn-green:hover { box-shadow: 0 0 15px rgba(45,221,108,0.7); text-decoration: none; color: #fff; }
.btn-grey { display: block; text-align: center; padding: 9px 20px; background: #7f8c8d; color: #fff; border-radius: 23px; font-weight: 400; font-size: 0.85em; }
.btn-grey:hover { box-shadow: 0 0 12px rgba(127,140,141,0.4); text-decoration: none; color: #fff; }
.org3-tc { grid-column: 1 / -1; font-size: 11px; color: #b2bec3; padding: 6px 30px 8px; border-top: 1px solid #f1f3f4; }
.badge { display: inline-block; padding: 2px 9px; border-radius: 10px; font-size: 11px; font-weight: 700; margin-left: 5px; vertical-align: middle; }
.badge-new    { background: #eafaf1; color: #27ae60; }
.badge-hot    { background: #fdedee; color: #e74c3c; }
.badge-fast   { background: #e8f4fd; color: #2980b9; }
.badge-rec    { background: #fef9e7; color: #d35400; }
.badge-cash   { background: #f5eef8; color: #8e44ad; }
.badge-sport  { background: #e8f8f5; color: #1a5276; }

/* CASINO DETAIL CARDS */
.casino-detail { background: #fff; border-radius: 5px; box-shadow: 0 8px 30px rgba(109,141,173,0.2); margin: 28px 0; overflow: hidden; }
.casino-detail-header { background: #2e3246; padding: 16px 24px; display: flex; align-items: center; gap: 14px; }
.casino-detail-header-logo { width: 100px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.casino-detail-header-logo span { color: #fff; font-weight: 700; font-size: 1.1em; }
.casino-detail-header h3 { color: #fff; font-size: 1.25em; margin: 0; }
.casino-detail-header .badge { font-size: 12px; }
.casino-detail-body { padding: 20px 24px; }
.casino-detail-body p { margin-bottom: 12px; font-size: 0.95em; }
.casino-meta-table { width: 100%; border-collapse: collapse; font-size: 0.9em; margin: 14px 0; }
.casino-meta-table tr:nth-child(even) { background: #f8f9fa; }
.casino-meta-table td { padding: 8px 14px; border-bottom: 1px solid #ecf0f1; }
.casino-meta-table td:first-child { font-weight: 600; color: #2e3246; width: 45%; }
.casino-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
.pros-mini, .cons-mini { padding: 12px 16px; border-radius: 5px; }
.pros-mini { background: #eafaf1; }
.cons-mini { background: #fdedee; }
.pros-mini strong { color: #27ae60; display: block; margin-bottom: 6px; font-size: 0.88em; }
.cons-mini strong { color: #e74c3c; display: block; margin-bottom: 6px; font-size: 0.88em; }
.pros-mini span, .cons-mini span { font-size: 0.88em; color: #2c3e50; }
.casino-detail-cta { padding: 14px 24px 20px; text-align: right; border-top: 1px solid #f1f3f4; }
.casino-detail-cta a { display: inline-block; padding: 12px 30px; background: #2ecc71; color: #fff; border-radius: 23px; font-weight: 700; box-shadow: 0 0 15px rgba(45,221,108,0.4); }
.casino-detail-cta a:hover { text-decoration: none; box-shadow: 0 0 20px rgba(45,221,108,0.7); }

/* TABLES */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9em; }
thead th { background: #2e3246; color: #fff; padding: 12px 14px; text-align: left; font-weight: 700; white-space: nowrap; }
tbody tr:nth-child(even) { background: #f8f9fa; }
tbody tr:hover { background: #f1f3f4; }
tbody td { padding: 10px 14px; border-bottom: 1px solid #ecf0f1; color: #2c3e50; vertical-align: middle; }
.dot-green { color: #27ae60; font-weight: 700; }
.dot-yellow { color: #f39c12; font-weight: 700; }
.dot-red { color: #e74c3c; font-weight: 700; }
.highlight-row { background: #fef9e7 !important; }

/* INFO BOXES */
.info-box  { background: #eaf6fb; border-left: 4px solid #3498db; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.info-box i { color: #3498db; margin-right: 8px; }
.warn-box  { background: #fef9e7; border-left: 4px solid #f39c12; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.warn-box i { color: #f39c12; margin-right: 8px; }
.ok-box    { background: #eafaf1; border-left: 4px solid #2ecc71; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.ok-box i  { color: #2ecc71; margin-right: 8px; }
.danger-box { background: #fdedee; border-left: 4px solid #e74c3c; border-radius: 5px; padding: 16px 20px; margin: 18px 0; font-size: 0.95em; }
.danger-box i { color: #e74c3c; margin-right: 8px; }

/* PROS / CONS */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.pros-box, .cons-box { border-radius: 5px; padding: 20px; }
.pros-box { background: #eafaf1; border-top: 3px solid #2ecc71; }
.cons-box { background: #fdedee; border-top: 3px solid #e74c3c; }
.pros-box h4 { color: #27ae60; margin-bottom: 12px; font-size: 1em; }
.cons-box h4 { color: #e74c3c; margin-bottom: 12px; font-size: 1em; }
.pros-box ul li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #2ecc71; position: absolute; left: 0; top: 7px; font-size: 12px; }
.cons-box ul li::before { content: '\f00d'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #e74c3c; position: absolute; left: 0; top: 7px; font-size: 12px; }

/* CRITERIA CHECK */
.checklist { background: #f8f9fa; border-radius: 5px; padding: 20px 24px; margin: 18px 0; }
.checklist h4 { font-size: 0.95em; font-weight: 700; color: #2e3246; margin-bottom: 12px; }
.checklist ul li { padding: 5px 0 5px 26px; font-size: 0.93em; }
.checklist ul li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #2ecc71; position: absolute; left: 0; top: 7px; font-size: 14px; }

/* LICENSE CARDS */
.license-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.lic-card { border-radius: 5px; padding: 20px; }
.lic-card-de { background: #eaf6fb; border-top: 3px solid #2980b9; }
.lic-card-int { background: #f5eef8; border-top: 3px solid #8e44ad; }
.lic-card h4 { font-size: 1em; font-weight: 700; margin-bottom: 12px; }
.lic-card-de h4 { color: #1a5276; }
.lic-card-int h4 { color: #6c3483; }
.lic-card ul li { font-size: 0.88em; padding: 3px 0 3px 18px; }
.lic-card ul li::before { font-size: 8px; top: 8px; }

/* PAYMENT ICONS */
.payment-icons { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.pay-icon { display: flex; align-items: center; gap: 6px; background: #f1f3f4; border-radius: 5px; padding: 7px 12px; font-size: 0.82em; font-weight: 600; color: #2e3246; }
.pay-icon i { color: #ff2453; }

/* STICKY VS NON-STICKY */
.sticky-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.sticky-card { border-radius: 5px; padding: 18px; }
.sticky-card-non { background: #eafaf1; border-top: 3px solid #2ecc71; }
.sticky-card-yes { background: #fef9e7; border-top: 3px solid #f39c12; }
.sticky-card h4 { font-size: 0.95em; font-weight: 700; margin-bottom: 10px; }
.sticky-card-non h4 { color: #27ae60; }
.sticky-card-yes h4 { color: #d35400; }
.sticky-card p { font-size: 0.88em; color: #2c3e50; margin: 0; }

/* KYC STEPS */
.kyc-steps { display: flex; gap: 0; margin: 18px 0; }
.kyc-step { flex: 1; text-align: center; padding: 16px 10px; background: #f1f3f4; position: relative; }
.kyc-step:not(:last-child)::after { content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: #ff2453; font-size: 1.2em; font-weight: 700; z-index: 1; }
.kyc-step:nth-child(1) { border-radius: 5px 0 0 5px; background: #eaf6fb; }
.kyc-step:nth-child(2) { background: #fef9e7; }
.kyc-step:nth-child(3) { border-radius: 0 5px 5px 0; background: #eafaf1; }
.kyc-step-num { width: 32px; height: 32px; border-radius: 50%; background: #ff2453; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-size: 0.95em; }
.kyc-step p { font-size: 0.82em; color: #2e3246; font-weight: 600; margin: 0; }
.kyc-step small { font-size: 0.75em; color: #7f8c8d; }


/* FLOAT BAR */
.float-bar { position: fixed; bottom: -80px; left: 0; right: 0; background: #2e3246; padding: 12px 20px; z-index: 999; transition: bottom 0.4s ease; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.float-bar.visible { bottom: 0; }
.float-bar-text { color: #fff; font-size: 0.9em; }
.float-bar-text span { color: #2ecc71; font-weight: 700; }
.float-bar-btn { display: inline-block; padding: 10px 28px; background: #2ecc71; color: #fff; border-radius: 23px; font-weight: 700; font-size: 0.9em; box-shadow: 0 0 15px rgba(45,221,108,0.5); }
.float-bar-btn:hover { box-shadow: none; text-decoration: none; color: #fff; }

/* DISCLAIMER */
.responsible-box { background: #fef9e7; border-radius: 5px; padding: 22px 25px; margin: 28px 0; }
.responsible-box h3 { color: #e67e22; margin-bottom: 10px; font-size: 1.05em; }
.responsible-box ul li { font-size: 0.93em; }
.responsible-box ul li::before { color: #e67e22; }



/* RESPONSIVE */
@media (max-width: 900px) {
  .org3-card { grid-template-columns: 160px 1fr; grid-template-rows: auto auto auto; }
  .org3-rating { grid-column: 1; grid-row: 2; border-right: none; border-top: 1px solid #f1f3f4; }
  .org3-buttons { grid-column: 2; grid-row: 2; border-top: 1px solid #f1f3f4; }
  .org3-tc { grid-row: 3; }
  .license-compare, .sticky-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .article-hero h1 { font-size: 1.45em; }
  .org3-card { grid-template-columns: 1fr; }
  .org3-logo { border-right: none; border-bottom: 1px solid #f1f3f4; min-height: auto; padding: 16px; }
  .org3-terms, .org3-rating { border-right: none; border-bottom: 1px solid #f1f3f4; }
  .toc-list { columns: 1; }
  .pros-cons-grid, .casino-pros-cons { grid-template-columns: 1fr; }
  .kyc-steps { flex-direction: column; }
  .kyc-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -16px; transform: translateX(50%); }
  .float-bar { flex-direction: column; text-align: center; }
}