.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy, #1A2B4A);
  color: #fff;
  padding: 16px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1;
  min-width: 240px;
}

.cookie-banner a {
  color: var(--gold-light, #E8D49A);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.cookie-btn-accept {
  background: var(--gold, #C9A84C);
  color: var(--navy, #1A2B4A);
}

.cookie-btn-accept:hover {
  filter: brightness(1.08);
}

.cookie-btn-settings {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.compliance-strip {
  background: #f0f4f8;
  border-bottom: 1px solid var(--slate, #E8EDF4);
  font-size: 0.78rem;
  color: var(--text-muted, #5A6A85);
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.compliance-strip a {
  color: var(--navy, #1A2B4A);
  font-weight: 500;
  text-decoration: underline;
}

.compliance-strip strong {
  color: var(--text-main, #1A2B4A);
}

/* Portugal responsible gambling footer (Google Ads / SRIJ) */
.pt-rg-footer {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm, 8px);
  padding: 20px 22px;
  margin-bottom: 16px;
}

.pt-rg-footer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pt-rg-footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pt-rg-footer-badges a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.pt-rg-footer-badges a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.pt-rg-footer-badges img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.pt-rg-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--gold, #C9A84C);
  color: var(--navy, #1A2B4A);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.pt-rg-footer-warning {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0 0 14px;
}

.pt-rg-footer-warning strong {
  color: rgba(255, 255, 255, 0.92);
}

.pt-rg-footer-warning a {
  color: var(--gold-light, #E8D49A);
  text-decoration: underline;
}

.pt-rg-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-rg-footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
}

.pt-rg-footer-links a:hover {
  color: var(--gold-light, #E8D49A);
  text-decoration: underline;
}

.pt-rg-footer-disclosure {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.pt-rg-footer-disclosure strong {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .pt-rg-footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
