/* ============================================================
   CLEAN CONVERT — deranglerundmehr.de
   Casino Ohne Lugas — DE
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --accent: #16A34A;
  --accent2: #DC2626;
  --gold: #D97706;
  --shadow: 0 1px 3px rgba(0,0,0,.10);
  --radius: 8px;
  --font: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER / NAV ── */
.site-header {
  background: #0f172a;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  color: #f1f5f9;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.site-logo:hover { color: #16A34A; text-decoration: none; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: #cbd5e1; font-size: 0.9rem; transition: color .2s; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.mobile-nav { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #1e293b;
    padding: 12px 0;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: #cbd5e1;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 0.95rem;
  }
  .mobile-nav a:hover { background: rgba(255,255,255,.05); }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.hero-inner { max-width: 800px; }
.hero-badge {
  display: inline-block;
  background: rgba(22,163,74,.2);
  border: 1px solid rgba(22,163,74,.5);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #4ade80;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(22,163,74,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,.5);
  text-decoration: none;
  color: #fff;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(22,163,74,.4); }
  50% { box-shadow: 0 4px 25px rgba(22,163,74,.7); }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.14); text-decoration: none; color: #fff; }
.trust-row {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #94a3b8;
}
.trust-row .stars { color: #fbbf24; font-size: 0.9rem; }

.hero-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.3);
}
.hero-author-info { font-size: 0.82rem; }
.hero-author-name a { color: #f1f5f9; font-weight: 600; text-decoration: none; }
.hero-author-name a:hover { text-decoration: underline; }
.hero-author-role, .hero-pub-date { color: #94a3b8; display: block; }

/* ── VITRINA ── */
.vitrina-section {
  background: var(--bg-alt);
  padding: 60px 0;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.vitrina-list { display: flex; flex-direction: column; gap: 16px; }
.casino-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.casino-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transform: translateY(-1px);
}
.casino-card.rank-1 { border-color: var(--gold); border-width: 2px; }
.casino-rank {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
}
.casino-card.rank-1 .casino-rank { color: var(--gold); }
.casino-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: .3px;
}
.casino-info { min-width: 0; }
.casino-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.casino-license {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.casino-bonus {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}
.casino-highlight {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.casino-rating {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  margin-bottom: 8px;
}
.casino-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(22,163,74,.3);
}
.casino-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22,163,74,.4); text-decoration: none; color: #fff; }
.casino-meta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

@media (max-width: 640px) {
  .casino-card { grid-template-columns: 36px 1fr; }
  .casino-meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 60px 0; }
.content-section-dark { background: #0f172a; color: #f1f5f9; }
.content-section-dark h2 { color: #f1f5f9; }
.content-section-dark p { color: #cbd5e1; }
.content-section-dark .table-wrap { border-color: #334155; }
.content-section-dark table { color: #e2e8f0; }
.content-section-dark thead { background: #1e293b; }
.content-section-dark tbody tr:hover { background: rgba(255,255,255,.04); }
.content-section-dark td, .content-section-dark th { border-color: #334155; }

.content-section-alt { background: var(--bg-alt); }

h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }

.content-body p { margin-bottom: 16px; color: var(--text); }
.content-body p:last-child { margin-bottom: 0; }

/* ── H2 BANNERS ── */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-bottom: 28px;
  overflow: hidden;
  line-height: 0;
  border-radius: 0;
}
.h2-banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .h2-banner-img { aspect-ratio: 1/1; object-position: center top; }
  .h2-banner-wrap { width: calc(100% + 40px); margin-left: -20px; }
}
.h2-banner-wrap figcaption {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  line-height: 1.4;
}

/* ── TABLES ── */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: #f1f5f9; }
thead th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--text); border-bottom: 2px solid var(--border); }
tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #f8f9fa; }
caption { caption-side: bottom; text-align: center; font-size: 0.78rem; color: var(--text-muted); padding: 8px; font-style: italic; }

/* ── AUTHOR / E-E-A-T ── */
.eeat-section { background: #0f172a; color: #f1f5f9; padding: 60px 0; }
.author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  background: #1e293b;
  border-radius: 12px;
  padding: 28px;
}
@media (max-width: 640px) { .author-card { grid-template-columns: 1fr; } .author-portrait { margin: 0 auto; } }
.author-portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #16A34A;
}
.author-card h3 { color: #f1f5f9; font-size: 1.2rem; margin-bottom: 4px; }
.author-title { color: #94a3b8; font-size: 0.85rem; margin-bottom: 12px; display: block; }
.author-bio { color: #cbd5e1; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.author-expertise { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.expertise-tag {
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.3);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── REVIEWED BY ── */
.reviewed-by-section { background: #f0fdf4; padding: 60px 0; }
.reviewed-by-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
@media (max-width: 768px) { .reviewed-by-cards { grid-template-columns: 1fr; } }
.reviewer-card {
  border: 1px solid #16A34A;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}
.reviewer-card-top { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.reviewer-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #16A34A;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; }
.reviewer-title { font-size: 0.78rem; color: var(--text-muted); }
.reviewer-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.reviewer-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 8px; }

/* ── FAQ ── */
.faq-section { background: var(--bg-alt); padding: 60px 0; }
.faq-list { margin-top: 28px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-question:hover { background: #f8f9fa; }
.faq-question .faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 16px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; }
.footer-desc { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { color: #f1f5f9; font-size: 0.9rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.85rem; transition: color .2s; }
.footer-col ul li a:hover { color: #f1f5f9; text-decoration: none; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.78rem;
  line-height: 1.6;
}
.disclaimer {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.78rem;
  color: #fca5a5;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── STICKY CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  border-top: 1px solid rgba(22,163,74,.3);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-text { color: #f1f5f9; font-size: 0.88rem; font-weight: 600; }
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  animation: pulse 2.5s ease-in-out infinite;
}
.sticky-cta-btn:hover { text-decoration: none; color: #fff; }
@media (max-width: 768px) { .sticky-cta { display: flex; transform: translateY(100%); transition: transform .3s; } .sticky-cta.show { transform: translateY(0); } }

/* ── POPUP ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 32px;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.popup-badge { font-size: 2rem; margin-bottom: 12px; }
.popup-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.popup-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  animation: pulse 2.5s ease-in-out infinite;
}
.popup-cta:hover { text-decoration: none; color: #fff; }
.popup-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--bg-alt); padding: 10px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; gap: 6px; list-style: none; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-list li::after { content: ' /'; margin-left: 6px; }
.breadcrumb-list li:last-child::after { content: ''; }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--text); }

/* ── MISC ── */
.section-divider { border: none; border-top: 2px solid var(--border); margin: 40px 0; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-danger { color: var(--accent2); }
.badge-trust { display: inline-flex; align-items: center; gap: 6px; background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }

.intro-section { background: #fff; padding: 50px 0; }
.intro-section p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp .5s ease forwards; }
