:root {
  --navy: #0b1730;
  --blue: #1d4ed8;
  --blue2: #173b72;
  --orange: #f59e0b;
  --red: #dc2626;
  --green: #059669;
  --ink: #10233f;
  --muted: #58708f;
  --line: #d9e2ef;
  --soft: #f4f7fb;
  --shadow: 0 18px 45px rgba(13, 37, 76, 0.12);
  --radius: 18px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.ag-block-btn {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: auto;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.ag-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.ag-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 226, 239, 0.8);
  transition: box-shadow 0.2s;
}
.ag-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(2, 14, 34, 0.12);
}
.ag-header__inner {
  height: 70px;
  width: min(1230px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.ag-logo img {
  width: 190px;
  height: auto;
}
.ag-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ag-nav a {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 9px;
  color: #0f2a4d;
}
.ag-nav a:hover,
.ag-nav a.active {
  background: #eaf1ff;
  color: var(--blue);
}
.ag-adult {
  background: var(--red);
  color: white;
  border-radius: 7px;
  padding: 9px 13px;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}
.ag-menu {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ag-menu span {
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 99px;
}
.ag-hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(10, 23, 48, 0.76), rgba(13, 54, 101, 0.86)),
    url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ag-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(11, 23, 48, 0.28));
}
.ag-hero__content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 32px));
  padding: 86px 0 70px;
}
.ag-pill,
.ag-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.ag-pill {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.8);
  color: #ffb84d;
  padding: 8px 14px;
  margin-bottom: 24px;
}
.ag-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.05em;
}
.ag-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.ag-hero p {
  font-size: 19px;
  max-width: 720px;
  margin: 26px auto 0;
  color: #e2ecfb;
}
.ag-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.ag-btn {
  border: 0;
  border-radius: 9px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.ag-btn:hover {
  transform: translateY(-1px);
}
.ag-btn--primary {
  background: var(--orange);
  color: #111827;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
}
.ag-btn--primary:hover {
  background: #f7aa24;
}
.ag-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.ag-btn--ghost {
  background: #eef4ff;
  color: var(--blue);
}
.ag-btn--light {
  background: #fff;
  color: var(--blue2);
}
.ag-btn--xl {
  min-width: 190px;
  min-height: 54px;
}
.ag-stats {
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 760px;
}
.ag-stats strong {
  display: block;
  font-size: 21px;
}
.ag-stats span {
  font-size: 12px;
  color: #d9e5f7;
}
.ag-section {
  padding: 86px 0;
}
.ag-section--muted {
  background: var(--soft);
}
.ag-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}
.ag-tag {
  background: #e9efff;
  color: #1d4ed8;
  padding: 7px 14px;
  margin-bottom: 16px;
}
.ag-section__head h2,
.ag-about__text h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  margin: 0;
  font-weight: 950;
  color: #173b72;
  letter-spacing: -0.04em;
}
.ag-section__head p {
  font-size: 17px;
  color: var(--muted);
  margin: 16px 0 0;
}
.ag-grid--cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ag-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(13, 37, 76, 0.05);
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.ag-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.ag-card--featured {
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.12);
}
.ag-card__top {
  background: #f3f7fc;
  padding: 26px 20px 20px;
  text-align: center;
  position: relative;
  min-height: 170px;
}
.ag-card__badge {
  position: absolute;
  right: 14px;
  top: 14px;
  color: white;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
  padding: 6px 10px;
}
.ag-card__badge--green {
  background: #059669;
}
.ag-card__badge--blue {
  background: #2563eb;
}
.ag-card__badge--purple {
  background: #7c3aed;
}
.ag-card__badge--teal {
  background: #0d9488;
}
.ag-card__logo-slot {
  height: 66px;
  width: 160px;
  margin: 22px auto 18px;
  display: grid;
  place-items: center;
}
.ag-card__logo-slot img {
  max-height: 60px;
  object-fit: contain;
}
.ag-rating {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.ag-rating span {
  color: #f59e0b;
  letter-spacing: 1px;
}
.ag-rating strong {
  font-size: 14px;
}
.ag-card__body {
  padding: 24px 22px;
}
.ag-card h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #173b72;
}
.ag-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}
.ag-bonus {
  border: 1px solid #ffbf6a;
  background: #fff7ed;
  border-radius: 8px;
  text-align: center;
  padding: 14px 10px;
  margin-bottom: 18px;
}
.ag-bonus span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a5b00;
  font-weight: 900;
}
.ag-bonus strong {
  display: block;
  color: #d97706;
  font-size: 18px;
}
.ag-checklist {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ag-checklist li {
  font-size: 13px;
  color: #243a58;
  display: flex;
  gap: 8px;
}
.ag-checklist li:before {
  content: "✓";
  color: #059669;
  font-weight: 900;
}
.ag-btn--visit {
  width: 100%;
  background: #2563eb;
  color: #fff;
}
.ag-btn--visit:hover {
  background: #1d4ed8;
}
.ag-card small {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 10px;
  color: #7b8aa2;
}
.ag-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.ag-about__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ag-about__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.ag-float {
  position: absolute;
  left: 32px;
  bottom: 28px;
  background: white;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 2px;
}
.ag-float:before {
  content: "🏆";
  font-size: 25px;
  position: absolute;
  left: -14px;
  top: -15px;
  background: #1d4ed8;
  color: white;
  border-radius: 10px;
  padding: 9px;
}
.ag-float strong {
  color: #173b72;
}
.ag-float span {
  color: #64748b;
  font-size: 12px;
}
.ag-lead {
  border-left: 5px solid var(--blue);
  padding: 16px 0 16px 22px;
  font-size: 17px;
  color: #273d5c;
}
.ag-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.ag-feature-list article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 19px;
}
.ag-feature-list article span {
  width: 44px;
  height: 44px;
  background: #eaf1ff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.ag-feature-list h3 {
  margin: 0 0 4px;
  color: #173b72;
  font-size: 16px;
}
.ag-feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.ag-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ag-panel {
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--line);
}
.ag-panel--ok {
  background: #dcfce7;
  border-color: #86efac;
}
.ag-panel--no {
  background: #fee2e2;
  border-color: #fca5a5;
}
.ag-panel--safe {
  background: #dbeafe;
  border-color: #93c5fd;
}
.ag-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.ag-panel h3 {
  margin: 0 0 18px;
  color: #12366a;
}
.ag-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.ag-panel li {
  font-size: 14px;
  display: flex;
  gap: 8px;
}
.ag-panel li:before {
  content: "•";
  font-weight: 900;
  color: var(--blue);
}
.ag-table-wrap {
  background: white;
  border-radius: 12px;
  overflow: auto;
  box-shadow: var(--shadow);
}
.ag-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
.ag-table th {
  background: #173b72;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-align: left;
  padding: 18px;
}
.ag-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  font-weight: 700;
}
.ag-table tbody tr:hover {
  background: #f8fbff;
}
.ag-brand-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ag-brand-cell img {
  width: 72px;
  height: 28px;
  object-fit: contain;
}
.ag-yes {
  color: #059669;
  font-weight: 950;
}
.ag-partial {
  color: #f59e0b;
  font-weight: 950;
}
.ag-score {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: #173b72;
}
.ag-rg {
  background: linear-gradient(125deg, #101733, #123f75);
  color: white;
  text-align: center;
  border-radius: 18px;
  padding: 58px 28px;
  position: relative;
  overflow: hidden;
}
.ag-rg:after {
  content: "18+";
  position: absolute;
  right: 40px;
  top: -48px;
  font-size: 170px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.05);
}
.ag-rg__age {
  display: inline-flex;
  background: #dc2626;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 950;
  margin-right: 8px;
}
.ag-rg h2 {
  font-size: 34px;
  margin: 22px 0 0;
}
.ag-rg p {
  max-width: 620px;
  margin: 16px auto;
  color: #e2ecfb;
}
.ag-hotline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px 28px;
  border-radius: 10px;
  margin: 14px 0 24px;
}
.ag-hotline strong,
.ag-hotline small {
  display: block;
}
.ag-hotline small {
  opacity: 0.7;
  font-size: 12px;
}
.ag-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ag-contact-cards article {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 24px;
}
.ag-contact-cards span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  background: #1d4ed8;
  color: #fff;
  border-radius: 12px;
  place-items: center;
  font-size: 24px;
}
.ag-contact-cards h3 {
  color: #173b72;
}
.ag-contact-cards p {
  color: var(--muted);
}
.ag-contact-cards strong {
  font-size: 14px;
}
.ag-center {
  text-align: center;
  margin-top: 36px;
}
.ag-regbar {
  background: #0b1730;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ag-regbar__inner {
  width: min(760px, calc(100% - 40px));
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.ag-regbar img {
  width: 116px;
  height: 38px;
  object-fit: contain;
  filter: brightness(1.2);
}
.ag-footer {
  background: #071122;
  color: white;
}
.ag-footer__top {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 0.7fr;
  gap: 54px;
}
.ag-footer__brand img {
  width: 180px;
}
.ag-footer__brand p {
  color: #c7d3e3;
  font-size: 14px;
}
.ag-footer__seal {
  display: inline-flex;
  background: #dc2626;
  border-radius: 8px;
  padding: 9px 14px;
  font-weight: 900;
  font-size: 13px;
}
.ag-footer__mini-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.ag-footer__mini-logos img {
  width: 70px;
  height: 28px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.ag-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}
.ag-footer h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
}
.ag-footer nav a {
  font-size: 14px;
  text-decoration: none;
  color: #c7d3e3;
}
.ag-footer nav a:hover {
  color: var(--orange);
}
.ag-footer__disclaimer {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}
.ag-footer__disclaimer h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: #fbbf24;
}
.ag-footer__disclaimer p {
  font-size: 12px;
  line-height: 1.8;
  color: #aebdd0;
}
.ag-footer__bottom {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #94a3b8;
  font-size: 13px;
}
.ag-footer__bottom a {
  margin-left: 18px;
  color: #c7d3e3;
  text-decoration: none;
}
.ag-age {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 34, 0.88);
  z-index: 999;
  display: none;
  place-items: center;
  padding: 20px;
}
.ag-age.is-visible {
  display: grid;
}
.ag-age__box {
  background: #fff;
  border-radius: 22px;
  width: min(520px, 100%);
  padding: 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.ag-age__seal {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dc2626;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  margin: 0 auto 18px;
}
.ag-age h2 {
  margin: 0;
  color: #173b72;
  font-size: 32px;
}
.ag-age p {
  color: #475569;
}
.ag-age__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.ag-age small {
  display: block;
  color: #64748b;
}
.ag-age__logos {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.ag-age__logos img {
  width: 100px;
  height: 34px;
  object-fit: contain;
}
.ag-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ag-cookie.is-visible {
  display: flex;
}
.ag-cookie p {
  margin: 0;
  color: #334155;
  font-size: 14px;
}
.ag-cookie a {
  color: var(--blue);
  font-weight: 800;
}
.ag-cookie__actions {
  display: flex;
  gap: 10px;
  flex: none;
}
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}
[data-animate].is-in {
  opacity: 1;
  transform: none;
}
.ag-page-hero {
  background: linear-gradient(120deg, #0b1730, #173b72);
  color: white;
  padding: 86px 0;
  text-align: center;
}
.ag-page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  margin: 16px 0 12px;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.ag-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #d9e5f7;
}
.ag-content {
  max-width: 920px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 42px;
}
.ag-content h2 {
  color: #173b72;
  margin-top: 0;
}
.ag-content h3 {
  color: #173b72;
  margin-top: 32px;
}
.ag-content p,
.ag-content li {
  color: #334155;
}
.ag-content a {
  color: var(--blue);
  font-weight: 800;
}
.ag-content ul {
  padding-left: 22px;
}
.ag-content .ag-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 18px;
  margin: 24px 0;
}
.ag-content .ag-safe-box {
  background: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}
.ag-offer-page-logo {
  width: 210px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}
.ag-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ag-mini-grid div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
@media (max-width: 1020px) {
  .ag-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .ag-nav.is-open {
    display: flex;
  }
  .ag-menu {
    display: flex;
  }
  .ag-adult {
    display: none;
  }
  .ag-grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .ag-about,
  .ag-panels,
  .ag-contact-cards {
    grid-template-columns: 1fr;
  }
  .ag-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .ag-header__inner {
    height: 64px;
  }
  .ag-logo img {
    width: 160px;
  }
  .ag-hero {
    min-height: 560px;
  }
  .ag-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ag-grid--cards {
    grid-template-columns: 1fr;
  }
  .ag-section {
    padding: 62px 0;
  }
  .ag-hero__actions,
  .ag-age__actions,
  .ag-cookie,
  .ag-cookie__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ag-cookie {
    align-items: stretch;
  }
  .ag-footer__top,
  .ag-footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
  .ag-footer__bottom div {
    display: grid;
    gap: 8px;
  }
  .ag-footer__bottom a {
    margin-left: 0;
  }
  .ag-mini-grid {
    grid-template-columns: 1fr;
  }
  .ag-content {
    padding: 28px;
  }
}
