/* Trust Dark – CasinoPeicks.com */
:root {
  --bg: #0c1222;
  --surface: #151d32;
  --text: #e8ecf4;
  --muted: #8b9bb5;
  --accent: #3b82f6;
  --border: #2a3550;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Ccircle cx='36' cy='36' r='14' fill='none' stroke='rgba(59,130,246,0.05)' stroke-width='2'/%3E%3Ccircle cx='36' cy='36' r='8' fill='rgba(59,130,246,0.04)'/%3E%3Ccircle cx='12' cy='12' r='6' fill='none' stroke='rgba(59,130,246,0.04)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='6' fill='none' stroke='rgba(59,130,246,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 72px 72px;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 25%),
              radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 20%);
}
@keyframes blue-glow {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent); }
  50% { box-shadow: 0 0 24px rgba(59, 130, 246, 0.25), 0 0 0 1px var(--accent); }
}
.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.strip a { color: var(--muted); text-decoration: none; }
.strip a:hover { color: var(--accent); }
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--accent); }
.logo .age { color: #f59e0b; font-size: 0.75em; margin-left: 0.25rem; }
.nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.nav a {
  padding: 0.45rem 0.9rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: var(--surface); }
.main { max-width: 1000px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.hero {
  text-align: center;
  padding: 2.5rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.hero h1 { font-size: clamp(1.4rem, 3.5vw, 2rem); margin-bottom: 0.75rem; color: var(--text); font-weight: 700; }
.hero p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.section-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
/* Showcase 6: Split card – logo+name left, features+CTA right */
.grid.showcase-split .card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.grid.showcase-split .card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
}
.grid.showcase-split .card-left img { height: 40px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 0.5rem; }
.grid.showcase-split .card-left h2 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 0; }
.grid.showcase-split .card-right .card-meta { margin-bottom: 0.5rem; font-size: 0.78rem; }
.grid.showcase-split .card-right p { font-size: 0.85rem; margin-bottom: 0.75rem; }
@media (max-width: 480px) {
  .grid.showcase-split .card { grid-template-columns: 1fr; }
  .grid.showcase-split .card-left { flex-direction: row; justify-content: flex-start; gap: 0.75rem; text-align: left; }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card { transition: border-color 0.25s, box-shadow 0.3s, transform 0.2s; }
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 28px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
  animation: blue-glow 2.2s ease-in-out infinite;
}
.card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.card-head img { height: 42px; width: auto; max-width: 120px; object-fit: contain; }
.card-head h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.card-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.card-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.card-cta:hover {
  background: #2563eb;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.45);
}
.card-cta { transition: background 0.2s, box-shadow 0.25s; }
.rg-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.rg-box h2 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text); }
.rg-box p, .rg-box li { font-size: 0.95rem; color: var(--muted); }
.rg-box ul { margin-left: 1.25rem; margin-top: 0.5rem; }
.faq-block { margin-top: 2rem; }
.faq-block details {
  margin-bottom: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-block summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--text); }
.faq-block summary:hover { color: var(--accent); }
.faq-block .ans { padding: 1rem 1.25rem; border-top: 1px solid var(--border); font-size: 0.9rem; color: var(--muted); }
.footer {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer .regs { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer .regs a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.footer .regs a:hover { color: var(--accent); }
.footer .regs img { height: 22px; width: auto; }
.footer .links { margin-bottom: 1rem; }
.footer .links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; margin: 0 0.5rem; }
.footer .links a:hover { color: var(--accent); }
.footer .legal { font-size: 0.8rem; color: var(--muted); }
.page-content { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.page-content h1 { font-size: 1.65rem; margin-bottom: 1rem; color: var(--text); }
.page-content h2 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: var(--accent); }
.page-content p, .page-content li { margin-bottom: 0.75rem; color: var(--muted); }
.page-content ul { margin-left: 1.25rem; }
.page-content a { color: var(--accent); }
/* Disclaimer – CasinoPeicks: bottom bar */
.disclaimer-peicks {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.6);
  display: flex; align-items: flex-end; justify-content: center; padding: 0 1rem 2rem; pointer-events: auto;
}
.disclaimer-peicks[hidden] { display: none !important; }
.disclaimer-peicks-banner {
  max-width: 640px; width: 100%; background: var(--surface); border: 2px solid var(--accent);
  border-radius: 12px 12px 0 0; padding: 1.25rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.disclaimer-peicks-banner p { flex: 1; min-width: 260px; font-size: 0.9rem; color: var(--text); }
.disclaimer-peicks-btns { display: flex; gap: 0.5rem; }
.disclaimer-peicks-btns button { padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; font-weight: 600; }
#disclaimer-overlay #disclaimer-enter { background: var(--accent); color: #fff; border: none; }
#disclaimer-overlay #disclaimer-leave { background: transparent; color: var(--muted); border: 1px solid var(--border); }

/* Info blocks – CasinoPeicks */
.info-peicks-bar { padding: 1rem 1.25rem; background: var(--surface); border-top: 3px solid var(--accent); border-bottom: 1px solid var(--border); margin-bottom: 1rem; font-size: 0.9rem; color: var(--muted); }
.info-peicks-bar-end { margin-top: 1.5rem; margin-bottom: 0; border-top: 1px solid var(--border); border-bottom: 3px solid var(--accent); }
.info-peicks-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.info-peicks-duo div { padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.info-peicks-duo h3 { font-size: 1rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-peicks-duo p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.info-peicks-list { padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-left: 4px solid var(--accent); background: rgba(59,130,246,0.06); border-radius: 0 8px 8px 0; }
.info-peicks-list h3 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--text); }
.info-peicks-list ul { margin: 0 0 0 1rem; font-size: 0.88rem; color: var(--muted); }
.info-peicks-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.info-peicks-item { padding: 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.info-peicks-item h4 { font-size: 0.9rem; color: var(--accent); margin-bottom: 0.4rem; }
.info-peicks-item p { font-size: 0.82rem; color: var(--muted); margin: 0; }
@media (max-width: 650px) { .info-peicks-duo, .info-peicks-three { grid-template-columns: 1fr; } }

/* Header – nav left, logo right */
.header-peicks .header-inner { flex-direction: row-reverse; }
.header-peicks .nav { order: 0; }
.header-peicks .logo { order: 1; }
.header-logo-left .header-inner { flex-direction: row; }
.header-logo-left .nav, .header-logo-left .logo { order: unset; }

/* Footer – legal first, then row / regs first then two col */
.footer-peicks .footer-inner { text-align: center; }
.footer-peicks .legal { margin-bottom: 1rem; }
.footer-peicks-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.footer-peicks .regs, .footer-peicks .links { margin-bottom: 0; }
.footer-peicks .links a { margin: 0 0.25rem; }
.footer-peicks-regs-first .footer-inner { text-align: left; }
.footer-peicks-regs-first .footer-regs-row { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.footer-peicks-regs-first .footer-regs-row h4 { font-size: 0.8rem; color: var(--accent); margin-bottom: 0.5rem; text-transform: uppercase; }
.footer-peicks-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-peicks-col h4 { font-size: 0.8rem; color: var(--accent); margin-bottom: 0.5rem; text-transform: uppercase; }
.footer-peicks-regs-first .legal { margin: 0; }
@media (max-width: 600px) { .footer-peicks-two-col { grid-template-columns: 1fr; } }

/* Cookie – bottom full width strip */
.cookie-peicks-inline {
  left: 0; right: 0; bottom: 0; border-radius: 0; border-top: 2px solid var(--accent);
  justify-content: center; flex-wrap: wrap;
}
.cookie-peicks-text { flex: 1; min-width: 240px; font-size: 0.9rem; }
.cookie-bar p { flex: 1; min-width: 200px; font-size: 0.9rem; color: var(--muted); }
.cookie-bar button { padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; font-weight: 600; }
#accept-cookies { background: var(--accent); color: #fff; border: none; }
#decline-cookies { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
