/* Casino Ohne Oasis — static styles */
:root{
  --background:#fcfcfc;
  --foreground:#1d2233;
  --card:#ffffff;
  --border:#e2e5ec;
  --muted:#f2f3f7;
  --muted-foreground:#6d7488;
  --secondary:#eaf7f4;
  --secondary-foreground:#2b3145;
  --primary:#189e8b;
  --primary-hover:#148877;
  --primary-foreground:#ffffff;
  --rating:#2ea84f;
  --rating-foreground:#ffffff;
  --radius:.75rem;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--background);color:var(--foreground);
  font-family:"Inter",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  line-height:1.5;-webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
h1,h2,h3,p{margin:0}
a{text-decoration:none}

.wrap{max-width:64rem;margin:0 auto;padding:1.5rem 1rem}

/* hero */
.hero{text-align:center}
.hero h1{font-size:1.5rem;font-weight:700;letter-spacing:-.02em}
.lead{margin:.5rem auto 0;max-width:42rem;font-size:.875rem;color:var(--muted-foreground)}
.trust{margin-top:1rem;display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem}
.pill{display:inline-flex;align-items:center;gap:.375rem;border:1px solid var(--border);background:var(--card);
  border-radius:999px;padding:.375rem .75rem;font-size:.75rem;font-weight:500;box-shadow:0 1px 2px rgba(16,24,40,.05)}
.pill svg{width:.875rem;height:.875rem;fill:var(--primary);stroke-linecap:round;stroke-linejoin:round}
.pill svg[fill="none"]{fill:none;stroke:var(--primary)}

/* listing */
.listing{margin-top:2rem}
.listing-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;gap:.75rem}
.listing-head h2{font-size:1.125rem;font-weight:600}
.listing-head span{font-size:.75rem;color:var(--muted-foreground)}
.grid{display:grid;grid-template-columns:1fr;gap:1.25rem}

/* card */
.card{display:flex;flex-direction:column;background:var(--card);border:1px solid var(--border);
  border-radius:1.25rem;padding:1.25rem;box-shadow:0 1px 2px rgba(16,24,40,.06);transition:box-shadow .2s}
.card:hover{box-shadow:0 8px 24px rgba(16,24,40,.09)}
.card-top{display:flex;align-items:flex-start;gap:1rem}
.logo{flex:0 0 auto;width:7rem;height:4rem;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--border);border-radius:.75rem;background:#fff;padding:.5rem;overflow:hidden}
.logo img{max-height:100%;max-width:100%;width:auto;height:auto;object-fit:contain}
.card-meta{min-width:0;flex:1}
.card-meta h3{font-size:1.125rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rate-row{margin-top:.25rem;display:flex;align-items:center;gap:.5rem}
.stars{display:flex;align-items:center;gap:.125rem}
.star{width:1rem;height:1rem}
.star.on{fill:var(--rating)}
.star.half{fill:var(--rating);opacity:.5}
.star.off{fill:#dcdfe6}
.score{background:var(--rating);color:var(--rating-foreground);border-radius:999px;
  padding:.125rem .5rem;font-size:.75rem;font-weight:700}
.reviews{margin-top:.25rem;font-size:.75rem;color:var(--muted-foreground)}

.bonus{margin-top:1.25rem;background:var(--secondary);border-radius:.75rem;padding:1rem}
.bonus-label{font-size:.6875rem;font-weight:500;text-transform:uppercase;letter-spacing:.06em;color:var(--muted-foreground)}
.bonus-text{margin-top:.25rem;font-size:1rem;font-weight:600;color:var(--secondary-foreground)}

.pays{margin-top:1rem}
.pays-label{font-size:.75rem;font-weight:500;color:var(--muted-foreground)}
.pay-row{margin-top:.5rem;display:flex;flex-wrap:wrap;gap:.5rem}
.pay{display:inline-flex;align-items:center;justify-content:center;width:2.5rem;height:1.75rem;
  border:1px solid var(--border);border-radius:.375rem;background:#fff;padding:2px}
.pay img{max-height:100%;max-width:100%;object-fit:contain}

.cta{margin-top:1.25rem;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  background:var(--primary);color:var(--primary-foreground);border-radius:.75rem;padding:.8125rem 1rem;
  font-size:.875rem;font-weight:600;transition:background-color .2s}
.cta:hover{background:var(--primary-hover)}
.cta:focus-visible{outline:2px solid var(--primary);outline-offset:2px}
.arrow{width:1rem;height:1rem;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* about */
.about{margin-top:2.5rem;background:var(--card);border:1px solid var(--border);border-radius:1.25rem;padding:1.25rem}
.about h2{font-size:1rem;font-weight:600}
.about p{margin-top:.5rem;font-size:.875rem;color:var(--muted-foreground)}

@media (min-width:640px){
  .wrap{padding:2.5rem 1rem}
  .hero h1{font-size:1.875rem}
  .lead{margin-top:1rem;font-size:1rem}
  .trust{margin-top:2rem;gap:.75rem}
  .pill{gap:.5rem;padding:.5rem 1rem;font-size:.875rem}
  .pill svg{width:1rem;height:1rem}
  .listing{margin-top:3rem}
  .listing-head{margin-bottom:1.5rem}
  .listing-head h2{font-size:1.25rem}
  .listing-head span{font-size:.875rem}
  .about{margin-top:3.5rem;padding:1.5rem}
  .about h2{font-size:1.125rem}
}
@media (min-width:768px){
  .wrap{padding:4rem 1rem}
  .hero h1{font-size:2.25rem}
  .lead{font-size:1.125rem}
  .grid{grid-template-columns:1fr 1fr}
  .about{padding:2rem}
  .about p{font-size:1rem}
}
@media (min-width:1024px){
  .hero h1{font-size:3rem}
  .grid{gap:1.5rem}
}
