
  :root{
  --brand1:#4f46e5;  /* indigo */
  --brand2:#06b6d4;  /* cyan */
  --ink:#0f172a;     /* slate-900 */
}

body {
  color: var(--ink); 
}

.hero {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(79,70,229,.25), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(6,182,212,.22), transparent 55%),
              linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,0));
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.badge-soft {
  background: rgba(79,70,229,.08);
  border: 1px solid rgba(79,70,229,.18);
  border-color: #3730a3;
}

.card-soft {
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

.btn-brand {
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  border: 0;
}

.btn-brand:hover { filter: brightness(.98); }

.small-muted { color: rgba(15,23,42,.65); }

footer {
  border-top: 1px solid rgba(15,23,42,.08);
}

.title {
  font-size: 1.2em;
}

#cookie-banner {
  background: #000 !important;
  color: #fff !important;
  border-top: 1px solid #333 !important;
}
#cookie-banner a {
  color: #9ad0ff !important;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.btn-accept {
  background: #28a745;
  color: #fff;
}

.btn-reject {
  background: #6c757d;
  color: #fff;
}

.pd-footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.25em 0.75em;
  border-bottom: 15px solid yellow;
}

.social-links {
  text-align: center;
}

.social-links h5 {
  margin-bottom: 10px;
}

.social-icon {
  font-size: 1.8rem;
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icon:hover {
  color: #0d6efd; /* Bootstrap blue */
}
