    /* ============================================
   DankeBox.de – Neue Online Casinos Deutschland
   style.css | Pure CSS, no JS
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --c-bg:          #200421;
  --c-surface:     #181028;
  --c-surface-2:   #130e2e;
  --c-border:      #212223;
  --c-accent:      #fe9729;
  --c-accent-dim:  #f5d906;
  --c-accent2:     #9d15d7;
  --c-good:        #1af148;
  --c-text:        #f9fbff;
  --c-muted:       #e0e6ff;
  --c-white:       #f3f4fb;

  /* Typography */
  --ff-head: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-gap: 5rem;
  --card-radius:  16px;
  --radius-sm:     8px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(22, 22, 22, 0.45);
  --shadow-btn:  0 4px 16px rgba(28, 28, 28, 0.43);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,16,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--c-white);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
.logo-icon { font-size: 1.4rem; }
.logo-dot  { color: var(--c-accent); }

.main-nav {
  display: flex;
  gap: 1.75rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--c-muted);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.main-nav a:hover { color: var(--c-accent); }

/* ── HERO ── */
.blob, .blob1, .blob2 {
  position: absolute;
  width: 100px;
  height: 100px;
  filter: blur(25px);
  z-index: -1;
}


/* Общий стиль для всех blob */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
  z-index: -1;
}

/* Каждый blob с уникальным размером, цветом, позицией и анимацией */
.blob1 {
  width: 120px;
  height: 120px;
  background: rgba(241, 133, 17, 0.747);
  top: 10%;
  left: 5%;
  animation: morph 10s ease-in-out infinite, float1 15s ease-in-out infinite;
}

.blob2 {
  width: 100px;
  height: 100px;
  background: rgba(216, 39, 219, 0.679);
  top: 30%;
  left: 70%;
  animation: morph 12s ease-in-out infinite, float2 18s ease-in-out infinite;
}

.blob3 {
  width: 140px;
  height: 140px;
  background: rgba(43, 102, 212, 0.651);
  top: 60%;
  left: 30%;
  animation: morph 14s ease-in-out infinite, float3 20s ease-in-out infinite;
}

.blob4 {
  width: 80px;
  height: 80px;
  background: rgba(245, 157, 5, 0.905);
  top: 50%;
  left: 50%;
  animation: morph 11s ease-in-out infinite, float4 16s ease-in-out infinite;
}

.blob5 {
  width: 90px;
  height: 90px;
  background: rgba(79, 29, 177, 0.808);
  top: 70%;
  left: 20%;
  animation: morph 13s ease-in-out infinite, float5 19s ease-in-out infinite;
}

/* Morph-Animation для плавной смены формы */
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%; }
  50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  75% { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
}

/* Float-анимации для движения */
@keyframes float1 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(50px,-40px) rotate(10deg); }
  66% { transform: translate(-30px,20px) rotate(-10deg); }
}

@keyframes float2 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-50px,30px) rotate(-15deg); }
  66% { transform: translate(40px,-50px) rotate(15deg); }
}

@keyframes float3 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,40px) rotate(5deg); }
  66% { transform: translate(-60px,-20px) rotate(-10deg); }
}

@keyframes float4 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-20px,-30px) rotate(-5deg); }
  66% { transform: translate(50px,20px) rotate(8deg); }
}

@keyframes float5 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(40px,10px) rotate(7deg); }
  66% { transform: translate(-30px,-40px) rotate(-6deg); }
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(245,200,67,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 100%, rgba(230,78,108,.08) 0%, transparent 70%);
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  padding: .3rem 1rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  color: var(--c-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  letter-spacing: -.03em;
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: var(--c-muted);
  font-size: 1.05rem;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: .85rem 2rem;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--c-border);
}

/* ── SECTIONS ── */
.section {
  padding: 10px 0;
  border-top: 1px solid var(--c-border);
}

.section h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}
.section h3, .section-sub {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-top: .75rem;
  letter-spacing: -.01em;
}
.section-intro-text, .prose-p {
  color: var(--c-muted);
  margin-bottom: 2rem;
  max-width: 720px;
}

.prose-block p { color: var(--c-muted); margin-bottom: 1.5rem; max-width: 720px; }

/* ── CASINO LIST ── */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  padding: 1.4rem 1.5rem;
  transition: border-color .25s, transform .2s;
}
.casino-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
}

.casino-card--featured {
  border-color: rgba(245,200,67,.35);
  background: linear-gradient(135deg, rgba(245,200,67,.05) 0%, var(--c-surface) 60%);
}
.casino-card--featured:hover {
  border-color: var(--c-accent);
}

.casino-rank {
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: .08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  opacity: .7;
}

.casino-badge-new {
  position: absolute;
  top: -1px;
  left: 50px;
  background: var(--c-accent2);
  color: var(--c-white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .15rem .55rem;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
}

.casino-logo-wrap {
  grid-column: span 3;
  /* flex-shrink: 0; */
}
.casino-logo-wrap img {
  display: block;
  border-radius: var(--radius-sm);
  object-fit: contain;
  padding: 4px 8px;
  min-width: 120px;
  height: auto;
}

.casino-info { flex: 1; min-width: 0; }

.casino-name {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: .3rem;
}

.casino-bonus {
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: .6rem;
}

.casino-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .9rem;
  margin-bottom: .6rem;
}
.casino-features li {
  font-size: .78rem;
  color: var(--c-muted);
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.stars {
  color: var(--c-accent);
  font-size: .95rem;
  letter-spacing: .05em;
}
.rating-text {
  font-size: .75rem;
  color: var(--c-muted);
  font-weight: 600;
}

.casino-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: .7rem 1.5rem;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--c-accent);
  color: #0b0c10;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: #ffd55a;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(245,200,67,.4);
}
.btn-secondary {
  background: transparent;
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
}
.btn-secondary:hover {
  background: rgba(245,200,67,.1);
  transform: translateY(-1px);
}

.cta-note {
  font-size: .62rem;
  color: var(--c-muted);
  text-align: center;
  max-width: 130px;
  line-height: 1.4;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(245,200,67,.4);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: .83rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.two-col h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: .75rem;
}
.two-col p { font-size: .9rem; color: var(--c-muted); margin-bottom: 1rem; }

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .5rem;
}
.check-list li {
  font-size: .84rem;
  color: var(--c-muted);
  padding-left: 1.4rem;
  position: relative;
}
.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--c-good);
  font-size: .8rem;
}

/* ── COMPARE TABLE ── */
.compare-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: var(--card-radius);
  border: 1px solid var(--c-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.compare-table thead {
  background: var(--c-surface-2);
}
.compare-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.compare-table td {
  padding: .85rem 1.25rem;
  border-top: 1px solid var(--c-border);
  color: var(--c-muted);
}
.compare-table tr:first-child td { border-top: none; }
.compare-table tr:hover td { background: rgba(255,255,255,.025); }
.compare-table td:first-child {
  font-weight: 600;
  color: var(--c-text);
}
.good   { color: var(--c-good)   !important; }
.neutral{ color: var(--c-muted)  !important; }

/* ── STEP LIST ── */
.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}
.step-list li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .88rem;
  color: var(--c-muted);
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,200,67,.12);
  border: 1px solid rgba(245,200,67,.35);
  border-radius: 50%;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: .02em;
}

/* ── PROS & CONS ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pros-block, .cons-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  padding: 1.75rem;
}
.pros-block { border-top: 3px solid var(--c-good); }
.cons-block { border-top: 3px solid var(--c-accent2); }

.block-title {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.block-title--pros { color: var(--c-good); }
.block-title--cons { color: var(--c-accent2); }

.pros-block ul, .cons-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pros-block ul li, .cons-block ul li {
  font-size: .84rem;
  color: var(--c-muted);
  padding-left: 1.2rem;
  position: relative;
}
.pros-block ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--c-good);
  font-weight: 700;
}
.cons-block ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-accent2);
  font-weight: 700;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: rgba(245,200,67,.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question h3 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -.01em;
  margin: 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--c-accent);
  font-weight: 700;
  transition: transform .25s, background .2s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(245,200,67,.12);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: .875rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  margin-top: 4rem;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
}
.footer-links a {
  font-size: .8rem;
  color: var(--c-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--c-accent); }

.footer-disclaimer p {
  font-size: .72rem;
  color: var(--c-muted);
  max-width: 700px;
  line-height: 1.6;
  margin-top: .5rem;
}
.footer-disclaimer a {
  color: var(--c-accent);
  text-decoration: none;
}

/* ── SECTION BG ALTERNATION ── */
.section-features,
.section-compare,
.section-bonus,
.section-trends,
.section-faq {
  background: var(--c-surface);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .main-nav { display: none; }

  .hero { padding: 1.5rem 0 2.5rem; }
  .hero-stats {
        gap: 0.3rem;
        padding: .5rem .25rem;

  }
  .stat-num { font-size: 1.15rem; }

  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .casino-rank { writing-mode: horizontal-tb; transform: none; }
  .casino-logo-wrap img { margin: 0 auto; }
  .casino-cta-wrap { width: 100%; }
  .btn { width: 100%; }

  .two-col { grid-template-columns: 1fr; gap: 1.75rem; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }

  .compare-table th,
  .compare-table td { padding: .7rem .75rem; font-size: .78rem; }

  .hero-stats { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.55rem; }
  .section h2 { font-size: 1.2rem; }
  .section img{max-width: 316px; height: auto;}
  .hero-sub {margin: 0 auto 0.5rem; font-size: 1rem;}
}


/*  */
.readmore-toggle {
  display: none;
}

/* скрытая часть */
.full-text {
  display: none;
}

/* кнопка */
.readmore-btn {
  display: inline-block;
  margin-top: 6px;
  color: #e5c040;
  cursor: pointer;
  font-size: 14px;
}
.readmore-block .section-intro-text{
  margin-bottom: 0.2rem;
}

/* текст кнопки */
.readmore-btn::after {
  content: "Weiterlesen";
}

/* при открытии */
.readmore-toggle:checked ~ .section-intro-text .full-text {
  display: inline;
}

/* меняем текст кнопки */
.readmore-toggle:checked ~ .readmore-btn::after {
  content: "Weniger anzeigen";
}