/* suomislotscore.com – main stylesheet */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg0: #08080f;
  --bg1: #0d0d1a;
  --bg2: #131325;
  --bg3: #1c1c30;
  --ac1: #00d4b4;
  --ac2: #00b89c;
  --ac3: #ffc800;
  --txt: #f0f0f8;
  --txt2: #8888aa;
  --rad: 12px;
  --rad2: 8px;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg0);
  color: var(--txt);
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: var(--ac1);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--ac3);
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* ── Age Gate ──────────────────────────────────── */
.xk7-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 4, 10, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.xk7-box {
  background: var(--bg2);
  border: 1px solid var(--ac1);
  border-radius: var(--rad);
  box-shadow: 0 0 60px rgba(0, 212, 180, 0.28);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 460px;
  width: 90%;
}
.xk7-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ac1);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.xk7-logo span {
  color: var(--ac3);
}
.xk7-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.xk7-box p {
  color: var(--txt2);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.xk7-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.xk7-btns button {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--rad2);
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.xk7-yes {
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #000;
}
.xk7-no {
  background: var(--bg3);
  color: var(--txt2);
  border: 1px solid var(--bg3);
}
.xk7-btns button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 180, 0.3);
}
.xk7-blocked {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
.xk7-blocked h2 {
  color: var(--ac1);
  font-size: 1.6rem;
}
.xk7-blocked p {
  color: var(--txt2);
  max-width: 380px;
}

/* ── Cookie Banner ─────────────────────────────── */
.qm3-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: var(--bg2);
  border-top: 2px solid rgba(0, 212, 180, 0.15);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}
.qm3-banner p {
  flex: 1;
  color: var(--txt2);
  font-size: 0.85rem;
  min-width: 200px;
}
.qm3-banner p a {
  color: var(--ac1);
}
.qm3-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.qm3-accept,
.qm3-reject {
  padding: 0.5rem 1.3rem;
  border: none;
  border-radius: var(--rad2);
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.qm3-accept {
  background: var(--ac1);
  color: #000;
}
.qm3-reject {
  background: var(--bg3);
  color: var(--txt2);
}
.qm3-accept:hover,
.qm3-reject:hover {
  opacity: 0.82;
}

/* ── Header ────────────────────────────────────── */
.br9-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 180, 0.1);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.br9-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  border-radius: var(--rad2);
  transition:
    opacity 0.2s,
    filter 0.2s;
}
.br9-logo:hover {
  opacity: 0.9;
}
.br9-logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0, 212, 180, 0.45));
}
.ft1-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.85rem;
  transition: opacity 0.2s;
}
.ft1-logo-link:hover {
  opacity: 0.88;
}
.ft1-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 212, 180, 0.28));
}
.br9-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.br9-badge18 {
  background: #cc0000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.28rem 0.7rem;
  border-radius: 99px;
  flex-shrink: 0;
}
.br9-free {
  color: var(--ac1);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  background: rgba(0, 212, 180, 0.1);
  border-radius: 99px;
  white-space: nowrap;
}
.br9-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.br9-nav a {
  color: var(--txt2);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--rad2);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.br9-nav a:hover,
.br9-nav a.br9-cur {
  color: var(--ac1);
  background: rgba(0, 212, 180, 0.08);
}
.br9-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
}
.br9-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: all 0.3s;
}
.br9-drawer {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.98);
  border-bottom: 1px solid rgba(0, 212, 180, 0.1);
  padding: 1rem 1.5rem;
}
.br9-drawer.br9-open {
  display: flex;
}
.br9-drawer a {
  color: var(--txt2);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bg3);
  display: block;
}
.br9-drawer a:last-child {
  border: none;
}

/* ── Hero ──────────────────────────────────────── */
.zp2-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #050510 0%, #081828 45%, #050510 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 4rem;
}
.zp2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 55% at 70% 50%,
      rgba(0, 212, 180, 0.13) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 40% at 15% 80%,
      rgba(255, 200, 0, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.zp2-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(0, 212, 180, 0.08) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}
.zp2-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.zp2-tag {
  display: inline-block;
  background: rgba(0, 212, 180, 0.14);
  border: 1px solid rgba(0, 212, 180, 0.3);
  color: var(--ac1);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.85rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.zp2-h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--txt);
  text-shadow: 0 0 40px rgba(0, 212, 180, 0.2);
  margin-bottom: 1.2rem;
}
.zp2-h1 em {
  color: var(--ac1);
  font-style: normal;
}
.zp2-lead {
  color: var(--txt2);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.zp2-img {
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(0, 212, 180, 0.2),
    0 0 0 1px rgba(0, 212, 180, 0.1);
  aspect-ratio: 4/3;
}
.zp2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wt5-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--rad2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wt5-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 212, 180, 0.4);
  color: #000;
}

/* ── Section wrappers ──────────────────────────── */
.lp4-sec {
  padding: 5rem 2rem;
}
.lp4-in {
  max-width: 1200px;
  margin: 0 auto;
}
.lp4-alt {
  background: var(--bg1);
}
.lp4-dark {
  background: var(--bg0);
}

.mn8-h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ac1);
  margin-bottom: 0.4rem;
}
.mn8-sub {
  color: var(--txt2);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* ── Game Cards ────────────────────────────────── */
.gt6-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 340px));
  gap: 1.5rem;
  justify-content: center;
}
.gt6-card {
  background: var(--bg2);
  border: 1px solid rgba(0, 212, 180, 0.1);
  border-radius: var(--rad);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.gt6-card.gt6-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.gt6-card.gt6-card--link .gt6-body h3 {
  color: var(--txt);
}
.gt6-card.gt6-card--link .gt6-play {
  pointer-events: none;
}
.gt6-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 180, 0.35);
  box-shadow: 0 12px 40px rgba(0, 212, 180, 0.22);
}
.gt6-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
}
.gt6-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s;
}
.gt6-card:hover .gt6-thumb img {
  transform: scale(1.04);
}
.gt6-stars {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: var(--ac3);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.gt6-body {
  padding: 1rem;
}
.gt6-body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.gt6-body p {
  font-size: 0.78rem;
  color: var(--txt2);
  margin-bottom: 0.85rem;
}
.gt6-play {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.55rem;
  border-radius: var(--rad2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: opacity 0.2s;
}
.gt6-play:hover {
  opacity: 0.84;
  color: #000;
}

/* ── About grid ────────────────────────────────── */
.rv5-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.rv5-img {
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 212, 180, 0.15);
}
.rv5-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.rv5-text p {
  color: var(--txt2);
  margin-bottom: 1rem;
}

/* ── Benefits ──────────────────────────────────── */
.tb3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.tb3-card {
  background: var(--bg2);
  border: 1px solid rgba(0, 212, 180, 0.1);
  border-radius: var(--rad);
  padding: 1.75rem 1.5rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.tb3-card:hover {
  border-color: rgba(0, 212, 180, 0.3);
  box-shadow: 0 0 28px rgba(0, 212, 180, 0.14);
}
.tb3-ic {
  font-size: 1.9rem;
  margin-bottom: 0.85rem;
}
.tb3-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ac1);
  margin-bottom: 0.4rem;
}
.tb3-card p {
  font-size: 0.85rem;
  color: var(--txt2);
}

/* ── FAQ ───────────────────────────────────────── */
.fq9-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fq9-item {
  background: var(--bg2);
  border: 1px solid rgba(0, 212, 180, 0.1);
  border-radius: var(--rad2);
  overflow: hidden;
}
.fq9-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  transition: color 0.2s;
}
.fq9-q:hover {
  color: var(--ac1);
}
.fq9-ic {
  font-size: 1.25rem;
  color: var(--ac1);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.fq9-item.fq9-on .fq9-ic {
  transform: rotate(45deg);
}
.fq9-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fq9-item.fq9-on .fq9-a {
  max-height: 250px;
}
.fq9-a p {
  padding: 0 1.25rem 1rem;
  color: var(--txt2);
  font-size: 0.88rem;
}

/* ── Responsible preview ───────────────────────── */
.rg7-box {
  background: linear-gradient(135deg, var(--bg2), rgba(0, 212, 180, 0.06));
  border: 1px solid rgba(0, 212, 180, 0.2);
  border-radius: var(--rad);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.rg7-ic {
  font-size: 3.2rem;
  flex-shrink: 0;
}
.rg7-cnt h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ac1);
  margin-bottom: 0.5rem;
}
.rg7-cnt p {
  color: var(--txt2);
  margin-bottom: 1rem;
}

/* ── Disclaimer ────────────────────────────────── */
.dc2-box {
  background: var(--bg1);
  border-top: 1px solid var(--bg3);
  border-bottom: 1px solid var(--bg3);
  padding: 2rem;
  text-align: center;
}
.dc2-box h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--txt2);
  margin-bottom: 0.65rem;
}
.dc2-box p {
  font-size: 0.8rem;
  color: var(--txt2);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Footer ────────────────────────────────────── */
.ft1-footer {
  background: var(--bg0);
  border-top: 1px solid rgba(0, 212, 180, 0.08);
  padding: 3rem 2rem 2rem;
}
.ft1-in {
  max-width: 1200px;
  margin: 0 auto;
}
.ft1-top {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg3);
}
.ft1-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--txt2);
  margin-bottom: 0.85rem;
}
.ft1-col a {
  display: block;
  color: var(--txt2);
  font-size: 0.84rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}
.ft1-col a:hover {
  color: var(--ac1);
}
.ft1-col p {
  color: var(--txt2);
  font-size: 0.8rem;
  line-height: 1.65;
}

.ft1-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--bg3);
  border-bottom: 1px solid var(--bg3);
  margin-bottom: 1.5rem;
}
.ft1-org {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg2);
  border: 1px solid var(--bg3);
  border-radius: var(--rad2);
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--txt2);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    opacity 0.2s;
  white-space: nowrap;
}
.ft1-org:has(.ft1-org-img) {
  padding: 0.4rem 0.85rem;
}
.ft1-org:hover {
  border-color: var(--ac1);
  color: var(--ac1);
}
.ft1-org:has(.ft1-org-img):hover img {
  opacity: 0.92;
}
.ft1-org-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.ft1-org-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ac1);
  display: inline-block;
  flex-shrink: 0;
}
.ft1-b18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #cc0000;
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.ft1-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--txt2);
}
.ft1-bot a {
  color: var(--txt2);
  margin-right: 0.85rem;
  transition: color 0.2s;
}
.ft1-bot a:hover {
  color: var(--ac1);
}

/* ── Page hero (inner pages) ───────────────────── */
.ph2-hero {
  background: linear-gradient(135deg, var(--bg0), var(--bg2));
  border-bottom: 1px solid rgba(0, 212, 180, 0.1);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.ph2-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--ac1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.65rem;
}
.ph2-hero p {
  color: var(--txt2);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── Prose content ─────────────────────────────── */
.pr6 {
  max-width: 800px;
  margin: 0 auto;
}
.pr6 h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ac1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 2rem 0 0.65rem;
}
.pr6 h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin: 1.4rem 0 0.45rem;
}
.pr6 p {
  color: var(--txt2);
  margin-bottom: 0.9rem;
  line-height: 1.78;
}
.pr6 ul,
.pr6 ol {
  color: var(--txt2);
  margin: 0.65rem 0 1.1rem 1.5rem;
}
.pr6 li {
  margin-bottom: 0.35rem;
  line-height: 1.7;
}
.pr6 strong {
  color: var(--txt);
}

/* ── Tips (responsible gaming) ─────────────────── */
.rg8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
  margin: 1.75rem 0;
}
.rg8-tip {
  background: var(--bg2);
  border: 1px solid rgba(0, 212, 180, 0.1);
  border-radius: var(--rad);
  padding: 1.4rem;
}
.rg8-n {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--ac1);
  opacity: 0.35;
  margin-bottom: 0.4rem;
}
.rg8-tip h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.rg8-tip p {
  font-size: 0.8rem;
  color: var(--txt2);
}

/* ── Resource links ────────────────────────────── */
.rs3-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0;
}
.rs3-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid rgba(0, 212, 180, 0.1);
  border-radius: var(--rad2);
  padding: 1rem 1.2rem;
  transition: border-color 0.2s;
}
.rs3-item:hover {
  border-color: rgba(0, 212, 180, 0.3);
}
.rs3-ic {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.rs3-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.rs3-item p {
  font-size: 0.8rem;
  color: var(--txt2);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .br9-nav {
    display: none;
  }
  .br9-burger {
    display: flex;
  }
  .zp2-inner {
    grid-template-columns: 1fr;
  }
  .zp2-img {
    display: none;
  }
  .rv5-grid {
    grid-template-columns: 1fr;
  }
  .rv5-img {
    display: none;
  }
  .rg7-box {
    flex-direction: column;
  }
  .ft1-bot {
    flex-direction: column;
    text-align: center;
  }
  .lp4-sec {
    padding: 3.5rem 1.25rem;
  }
  .br9-header {
    padding: 0.75rem 1.25rem;
  }
  .ft1-logos {
    gap: 0.6rem;
  }
  .br9-free {
    display: none;
  }
}
@media (max-width: 480px) {
  .gt6-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tb3-grid {
    grid-template-columns: 1fr;
  }
  .xk7-btns {
    flex-direction: column;
  }
  .zp2-hero {
    min-height: 70vh;
    padding: 4rem 1.25rem 3rem;
  }
}

/* ── Animations ────────────────────────────────── */
@keyframes jg2-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 180, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 180, 0.42);
  }
}
.jg2-pulse {
  animation: jg2-glow 3s ease-in-out infinite;
}

@keyframes jg2-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.jg2-float {
  animation: jg2-float 4s ease-in-out infinite;
}

.dn {
  display: none !important;
}
