:root {
  --bg: #f2f6ff;
  --text: #0f1a33;
  --brand: #2f6bff;
  --brand-2: #0d3cae;
  --card: #ffffff;
  --muted: #5e6780;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(240, 245, 255, 0.94), rgba(230, 240, 255, 0.9), rgba(240, 245, 255, 0.94)),
    url("../backdrops/bg.png") center/cover fixed no-repeat,
    var(--bg);
  animation: profiGradientFlow 22s linear infinite;
}
.container { width: min(1080px, 92%); margin: 0 auto; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.site-header.compact-sticky {
  background: rgba(13, 44, 129, 0.95);
  color: #fff;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 8;
  border-bottom: 1px solid rgba(165, 190, 255, 0.38);
  backdrop-filter: blur(6px);
}
.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-mark {
  width: 17px;
  height: 17px;
  display: inline-block;
  transform: rotate(45deg);
  border: 2px solid #b7d2ff;
  border-radius: 3px;
  animation: profiIconBob 3.6s ease-in-out infinite;
}
.brand-text { letter-spacing: 0.2px; }
.age-pill {
  background: #fff;
  color: var(--brand-2);
  border-radius: 16px;
  padding: 2px 8px;
  font-size: 12px;
}
.header-nav a { color: #fff; text-decoration: none; margin-left: 14px; font-size: 14px; }
.header-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.hero { padding: 42px 0 18px; }
.notice { background: #e8efff; border-left: 4px solid var(--brand); padding: 10px 14px; border-radius: 8px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; padding: 24px 0; }
.card { background: var(--card); border: 1px solid #dae3fb; border-radius: 14px; padding: 16px; box-shadow: 0 8px 24px rgba(28, 64, 146, 0.09); display: flex; flex-direction: column; gap: 6px; }
.card img { width: 120px; height: 42px; object-fit: contain; }
.card-logo-link { display: inline-flex; width: fit-content; }
.card-labels {
  display: flex;
  gap: 6px;
  margin: 10px 0 0;
  flex-wrap: wrap;
}
.label {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
.label.new { background: #e5f1ff; color: #1c54b5; }
.label.popular { background: #fceccd; color: #8a5700; }
.label.verified { background: #e6f8ec; color: #0f6b3e; }
.label.rtp { background: #f0ecff; color: #4a3b9b; }
.label.support { background: #ffeaf1; color: #a13762; }
.card h3 { margin: 10px 0 8px; }
.card h3 span { color: #b00020; font-size: 14px; }
.trust-meter {
  position: relative;
  margin: 10px 0 8px;
  height: 8px;
  border-radius: 999px;
  background: #e2eafd;
  overflow: hidden;
}
.trust-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--meter, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #5a8dff, #2f6bff);
}
.risk-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.risk {
  border-radius: 7px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 700;
}
.risk.low { background: #e5f8ed; color: #126c3f; }
.risk.medium { background: #fff0d8; color: #8c5604; }
.risk.review { background: #edf2ff; color: #2f55a4; animation: profiBadgePulse 2.2s ease-in-out infinite; }
.risk.check { background: #edf6ff; color: #2b4e88; }
.card-cta {
  display: inline-block;
  margin-top: auto;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.card-cta::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -35%;
  width: 32%;
  height: 260%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: rotate(18deg);
  animation: profiButtonShimmer 3.7s ease-in-out infinite;
}
.seo-block, .support, .page { padding: 10px 0 24px; }
.seo-block.container,
.support.container,
.deep-section.container {
  width: min(980px, 92%);
  margin: 0 auto 18px;
}
.support {
  text-align: center;
}
.deep-section {
  background: #ffffff;
  border: 1px solid #d7e2ff;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(28, 64, 146, 0.07);
}
.deep-section.alt {
  background: #f5f8ff;
  border-color: #cddcff;
}
.deep-section h2 {
  margin: 0 0 10px;
}
.deep-section p {
  margin: 0 0 10px;
  color: #23345a;
  line-height: 1.6;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.faq-item {
  background: #eef3ff;
  border: 1px solid #d4e0ff;
  border-radius: 10px;
  padding: 12px;
}
.faq-item h3 {
  margin: 0 0 8px;
}
.faq-item { overflow-wrap: anywhere; }
.info-block {
  background: #ffffff;
  border: 1px solid #d7e2ff;
  border-radius: 10px;
  padding: 14px;
  margin-top: 14px;
}
.info-block h2 {
  margin: 0 0 8px;
}
.info-block p {
  margin: 0 0 9px;
  line-height: 1.6;
}
.info-block p:last-child {
  margin-bottom: 0;
}
.regulator-logos { display: flex; align-items: center; justify-content: center; gap: .7rem; flex-wrap: wrap; }
.regulator-logos a { display: inline-flex; border: 1px solid #dae3fb; border-radius: 8px; padding: .35rem .5rem; background: #fff; }
.regulator-logos img { height: 32px; width: auto; object-fit: contain; display: block; }
.site-footer { background: #0c1838; color: #d7ddf1; padding: 20px 0; margin-top: 26px; }
.profi-footer { border-top: 1px solid #2d4174; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.site-footer a { color: #d7ddf1; }
.cookie-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; background: #fff; border: 1px solid #ccd5f0; border-radius: 10px; padding: 12px; box-shadow: 0 8px 20px rgba(0,0,0,.12); display: none; gap: 10px; align-items: center; justify-content: space-between; }
.cookie-banner.show { display: flex; }
.actions { display: flex; gap: 8px; }
button { border: none; background: var(--brand); color: #fff; padding: 8px 12px; border-radius: 8px; cursor: pointer; }
button.ghost { background: #dde6ff; color: #23345a; }
.age-gate { position: fixed; inset: 0; background: rgba(7, 14, 33, 0.88); display: none; align-items: center; justify-content: center; z-index: 10; }
.age-gate.show { display: flex; }
.gate-card { background: #fff; max-width: 420px; margin: 18px; border-radius: 12px; padding: 18px; text-align: center; }
@keyframes profiGradientFlow {
  0% { background-position: 0% 0%, center, center; }
  50% { background-position: 100% 0%, center, center; }
  100% { background-position: 0% 0%, center, center; }
}
@keyframes profiIconBob {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-3px); }
}
@keyframes profiBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 105, 193, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(63, 105, 193, 0); }
}
@keyframes profiButtonShimmer {
  0%, 18% { left: -35%; }
  40%, 100% { left: 125%; }
}
@media (max-width: 720px) {
  .header-nav a { margin-left: 9px; font-size: 13px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .row { align-items: flex-start; }
  .header-nav { justify-content: flex-start; }
}
