:root {
  --bg: #050508;
  --surface: #12121a;
  --surface2: #1a1a24;
  --pink: #ff69b4;
  --pink-dim: #e85a9e;
  --white: #ffffff;
  --muted: #b8b8c8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  padding-top: 3.35rem;
}
body.notify-dismissed {
  padding-top: 0;
}
a.ref, a.ref:visited {
  color: inherit;
  text-decoration: none;
}
.notify-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1002;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.55rem 0.75rem 0.55rem 0.5rem;
  background: linear-gradient(90deg, #0a0a0f 0%, #12101a 50%, #0d0d12 100%);
  border-bottom: 1px solid rgba(255,105,180,0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.notify-bar--hidden {
  display: none;
}
.notify-bar__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.notify-bar__close:hover {
  background: rgba(255,105,180,0.25);
  color: var(--pink);
}
.notify-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.notify-bar__logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink), #c71585);
  border: 2px solid rgba(255,255,255,0.25);
}
.notify-bar__name {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
  white-space: nowrap;
}
.notify-bar__name-cat { color: var(--pink); }
.notify-bar__name-casino { color: var(--white); }
.notify-bar__text {
  flex: 1 1 200px;
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
}
.notify-bar__text strong { color: var(--pink); font-weight: 800; }
.notify-bar__timer {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,105,180,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.notify-bar__timer::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  flex-shrink: 0;
}
.notify-bar__timer-num {
  color: var(--pink);
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
}
.notify-bar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  color: #0a0a0a !important;
  background: linear-gradient(135deg, var(--pink) 0%, #ff1493 55%, #c71585 100%);
  box-shadow: 0 0 20px rgba(255,105,180,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.notify-bar__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(255,105,180,0.55);
}
body.notify-dismissed .header {
  top: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn--dark {
  background: #0a0a0a;
  color: var(--white);
}
.btn--dark:hover {
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(255,105,180,0.55);
}
.btn--pink {
  background: linear-gradient(135deg, var(--pink) 0%, #ff1493 100%);
  color: #0a0a0a;
}
.btn--pink:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(255,105,180,0.65);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--pink);
}
.btn--outline:hover {
  background: rgba(255,105,180,0.12);
  transform: scale(1.02);
}
.header {
  position: sticky;
  top: 3.35rem;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(10,10,15,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink), #c71585);
  border: 2px solid rgba(255,255,255,0.35);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav a:hover { color: var(--pink); }
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: 2.5rem 1.5rem 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("images/cat1.jpg") center 20% / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5,5,8,0.94) 0%, rgba(5,5,8,0.75) 45%, rgba(5,5,8,0.55) 100%);
}
.hero__watermark {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,105,180,0.15);
  border: 1px solid rgba(255,105,180,0.45);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--pink); }
.hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.bonus-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.75rem;
  border-radius: 12px;
  background: rgba(18,18,26,0.85);
  border: 1px solid rgba(255,105,180,0.35);
}
.bonus-box div {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.5rem;
}
.bonus-box strong { display: block; color: var(--pink); font-size: 0.95rem; margin-bottom: 0.2rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.trust-row span::before {
  content: "✓ ";
  color: var(--pink);
  font-weight: 800;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid rgba(255,105,180,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat {
  text-align: center;
  padding: 0.5rem;
}
.stat__num {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--pink);
}
.stat__label { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}
.section__sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(255,105,180,0.45);
  transform: translateY(-4px);
}
.card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--pink);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.card__body { padding: 1rem 1.1rem 1.15rem; }
.card__body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.card__body p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.card .btn { width: 100%; border-radius: 10px; }
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  color: var(--muted);
}
.article h2 {
  color: var(--white);
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
}
.article h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
}
.article p { margin-bottom: 1rem; }
.article ul { margin: 0.5rem 0 1rem 1.25rem; }
.article li { margin-bottom: 0.35rem; }
.article--after-faq { padding-top: 0; }
.faq-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  color: var(--muted);
}
.faq-block > h2 {
  color: var(--white);
  font-size: 1.45rem;
  margin: 0 0 1.25rem;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq__item {
  border: 1px solid rgba(255,105,180,0.25);
  border-radius: 12px;
  background: var(--surface2);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.faq__q::after {
  content: "+";
  color: var(--pink);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.faq__item--open .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 1.15rem 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.85rem;
  margin-top: 0;
}
.faq__item:not(.faq__item--open) .faq__a { display: none; }
.scroll-hint {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 1rem;
}
.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(255,105,180,0.4);
}
.float-cta .btn { padding: 0.75rem 1rem; font-size: 0.85rem; }
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 600px) {
  .bonus-box { grid-template-columns: 1fr; }
  .nav { width: 100%; justify-content: center; }
}
