/* main.css — city-schawarma-neuwied.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; }

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

/* NAVIGATION */
.site-header {
  background: #0f172a;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #1e293b;
  padding: 1rem;
  gap: 0.75rem;
}
.mobile-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.open { display: flex; }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 4rem 1rem 3rem;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.4);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
.hero-stars .stars { color: #f59e0b; font-size: 1rem; }
.hero-stars strong { color: #f1f5f9; }
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
  box-shadow: 0 4px 15px rgba(22,163,74,0.4);
  rel: nofollow;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.5);
  animation: none;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 15px rgba(22,163,74,0.4); }
  50% { box-shadow: 0 4px 25px rgba(22,163,74,0.7); }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #f1f5f9;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.stat-label { font-size: 0.7rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero Author */
.hero-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.hero-author-info {}
.hero-author-name a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-author-role, .hero-pub-date {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

/* SHOWCASE / VITRINA */
.showcase-section {
  background: var(--bg-alt);
  padding: 3rem 1rem;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.casino-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
  position: relative;
}
.casino-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.casino-rank {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.casino-rank.gold { background: #fef3c7; color: #d97706; }
.casino-main {}
.casino-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: #dcfce7;
  color: #166534;
  display: inline-block;
  margin-bottom: 4px;
}
.casino-badge.best { background: #fef3c7; color: #92400e; }
.casino-name { font-weight: 700; font-size: 1rem; color: var(--text); }
.casino-license { font-size: 0.75rem; color: var(--text-muted); }
.casino-bonus {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin: 4px 0;
}
.casino-pros {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.pro-tag {
  font-size: 0.7rem;
  background: #f0fdf4;
  color: #166534;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid #bbf7d0;
}
.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 120px;
}
.rating-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.rating-stars { color: #f59e0b; font-size: 0.85rem; }
.casino-cta {
  display: inline-block;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  animation: pulse 3s infinite;
}
@media (max-width: 640px) {
  .casino-card {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-rating {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    min-width: unset;
  }
}

/* CONTENT SECTIONS */
.content-section {
  padding: 3rem 1rem;
}
.content-section-alt {
  padding: 3rem 1rem;
  background: var(--bg-alt);
}
.content-inner { max-width: 860px; margin: 0 auto; }
.content-inner h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.3;
}
.content-inner p {
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1rem;
}

/* H2 BANNERS */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 1.5rem;
  border-radius: 0;
}
@media (min-width: 900px) {
  .h2-banner-wrap { width: 100%; margin-left: 0; border-radius: var(--radius); }
}
.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 figcaption {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  line-height: 1.4;
}

/* TABLES */
.data-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table caption {
  font-weight: 700;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table th {
  background: #f1f5f9;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #f8fafc; }

/* E-E-A-T / AUTHOR */
.author-section {
  background: #0f172a;
  color: #fff;
  padding: 3rem 1rem;
}
.author-card {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 640px) { .author-card { grid-template-columns: 1fr; } }
.author-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.author-name { font-size: 1.4rem; font-weight: 800; color: #f1f5f9; }
.author-title { color: var(--accent); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.author-bio { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.author-expertise {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.expertise-tag {
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  color: #4ade80;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 16px;
}
.eeat-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.eeat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: #94a3b8;
}
.eeat-badge span { font-size: 1.2rem; }

/* REVIEWED BY */
.reviewed-by-section {
  background: #f0fdf4;
  padding: 3rem 1rem;
}
.reviewed-by-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 768px) { .reviewed-by-cards { grid-template-columns: 1fr; } }
.reviewer-card {
  border: 1px solid #16A34A;
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #fff;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.reviewer-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #bbf7d0;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.reviewer-title { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.reviewer-date { font-size: 0.7rem; color: var(--text-muted); }
.reviewer-note { font-size: 0.8rem; color: #374151; margin-top: 4px; font-style: italic; }

/* FAQ */
.faq-section { padding: 3rem 1rem; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
  font-family: var(--font);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #64748b;
  padding: 2.5rem 1rem;
  font-size: 0.825rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { color: #94a3b8; }
.footer-brand strong { color: #f1f5f9; font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.footer-heading { color: #94a3b8; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer-links a { color: #64748b; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #94a3b8; }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }
.footer-disclaimer { line-height: 1.6; margin-bottom: 1rem; }
.footer-disclaimer a { color: var(--accent); text-decoration: none; }

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 2px solid var(--accent);
  padding: 12px 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 200;
}
.sticky-cta-text { color: #f1f5f9; font-size: 0.875rem; font-weight: 600; }
.sticky-cta-btn {
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}
.popup-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.popup-desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.popup-cta {
  display: block;
  background: linear-gradient(135deg, #16A34A, #15803d);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.popup-disclaimer { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.75rem; }

/* DISCLAIMER BOX */
.warning-box {
  background: #fef3c7;
  border: 1px solid #d97706;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: #92400e;
}
.warning-box strong { display: block; margin-bottom: 4px; }

/* BREADCRUMB */
.breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 10px 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: #d1d5db; }
