:root{
  --brand1:#4f46e5;  /* indigo */
  --brand2:#06b6d4;  /* cyan */
  --ink:#0f172a;     /* slate-900 */
}

body {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  
}

.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: var(--bs-secondary-color);
}

footer {
  border-top: 1px solid rgba(15,23,42,.08);
}

.title {
  font-size: 1.0em;
}

#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: var(--bs-body-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icon:hover {
  color: var(--bs-link-color);
}



.flip-card {
  perspective: 1000px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.flip-card--text {
  height: 220px;
}

.flip-card--image {
  height: 320px;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.flip-card__front {
  padding: 1rem;
}

.flip-card__back {
  transform: rotateY(180deg);
  padding: 1rem;
  background: #0d6efd;
  color: #fff;
}

.flip-card--image .flip-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  margin: auto;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 10px;
}

.card-front {
  background: #fc0570;
  color: white;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.card-back {
  background: #057dfc;
  color: white;
  transform: rotateY(180deg);
}

.debug-border {
  border: 0px solid yellow;
  outline: 0px solid red;
}

body {
  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);
}
.navbar {
  background:
    radial-gradient(circle at 50% -10%, rgba(110,130,170,.34), transparent 34rem),
    radial-gradient(circle at 20% 20%, rgba(49,99,255,.12), transparent 24rem),
    linear-gradient(180deg, #080a0e 0%, var(--hub-bg) 42%, #07080b 100%);
  color: #f4f6fb;
}