@font-face {
  font-family: Nunito;
  src: url("assets/nunito-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 1000;
  font-display: swap;
}
:root {
  --blue: #075aff;
  --navy: #06194e;
  --text: #10286e;
  --gold: #ffdb27;
  --container: 1320px;
  --gutter: clamp(32px, 5.4vw, 92px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  background: #eaf3ff;
}
body {
  margin: 0;
  font-family: Nunito, Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
}
button,
a {
  touch-action: manipulation;
}
a:focus-visible {
  outline: 3px solid #ffbe16;
  outline-offset: 5px;
}
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: -100px;
  left: 20px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(640px, 54.5vw, 850px);
  background: #345ee0;
}
.hero-art {
  position: absolute;
  z-index: -2;
  inset: 80px 0 0;
  background: url("assets/hero-artwork.webp") center center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(44, 49, 169, 0.15), transparent 52%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: -10%;
  width: 120%;
  height: 27px;
  background: #f7f8ff;
  border-radius: 50% 50% 0 0/0 0 0 0;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.site-header {
  height: 80px;
  background: linear-gradient(
    105deg,
    rgba(19, 37, 144, 0.57),
    rgba(23, 31, 133, 0.6) 70%,
    rgba(0, 41, 159, 0.77)
  );
  box-shadow: 0 1px rgba(168, 191, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: block;
  flex: none;
  width: 190px;
  margin-block: -5px;
  transition: transform 0.2s;
}
.brand:hover {
  transform: translateY(-2px);
}
.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 5px #12326d44);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: 16px;
  font-weight: 800;
}
.locale {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 13px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.locale svg {
  width: 31px;
  height: 31px;
}
.login-button,
.header-play {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 29px;
  border-radius: 99px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.login-button {
  border: 1px solid #f2f5ff;
}
.login-button:hover {
  background: #ffffff20;
  transform: translateY(-1px);
}
.header-play {
  background: #075aff;
  box-shadow: 0 4px 16px #0023a444;
}
.header-play:hover {
  background: #2675ff;
  transform: translateY(-1px);
}
.hero-content {
  position: relative;
  padding-top: clamp(68px, 7.25vw, 116px);
  padding-bottom: 35px;
}
.hero-copy {
  width: fit-content;
  max-width: 52%;
}
h1 {
  margin: 0;
  color: #fff;
  font-weight: 1000;
  font-size: clamp(70px, 6.85vw, 107px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  text-shadow:
    0 2px 0 #b6d3ff,
    0 5px 2px #1742b188,
    0 7px 20px #1238b088;
}
.hero-subtitle {
  margin: 20px 0 0;
  color: #fff;
  font-weight: 800;
  font-size: clamp(20px, 1.87vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 7px #1539b3;
}
.trust-list {
  display: flex;
  gap: 27px;
  list-style: none;
  padding: 0;
  margin: 30px 0 31px;
  color: white;
  filter: drop-shadow(0 2px 5px #2146bf80);
}
.trust-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  font-size: clamp(12px, 1.02vw, 15px);
  line-height: 1.25;
  white-space: nowrap;
}
.trust-list .icon {
  height: 38px;
  width: 38px;
  flex: none;
}
.trust-list li:first-child .icon {
  width: 31px;
}
.play-button {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  width: fit-content;
  color: #002353;
  font-weight: 1000;
  background: linear-gradient(
    180deg,
    #fff367 0%,
    #ffe432 36%,
    #ffca18 71%,
    #ffa922 100%
  );
  border: 1.5px solid #fff08d;
  border-radius: 999px;
  box-shadow:
    inset 0 2px 7px #fffab5,
    0 4px 0 #d6862040,
    0 9px 25px #ffcb3547;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
  overflow: hidden;
}
.play-button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 15%,
    #fff9 45%,
    transparent 75%
  );
  transform: translateX(-150%);
  transition: transform 0.65s;
}
.play-button:hover::after {
  transform: translateX(150%);
}
.play-button:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 2px 7px #fffab5,
    0 6px 0 #d6862030,
    0 14px 30px #ffcd4560;
}
.play-button:active {
  transform: translateY(1px);
}
.hero-play {
  width: clamp(355px, 30.5vw, 445px);
  min-height: clamp(73px, 6.2vw, 89px);
  font-size: clamp(30px, 2.6vw, 38px);
  letter-spacing: 0.01em;
}
.play-icon {
  width: 34px;
  height: 34px;
  flex: none;
}
.responsible {
  display: flex;
  gap: 19px;
  align-items: center;
  width: clamp(370px, 31vw, 450px);
  max-width: 100%;
  margin-top: 17px;
  mix-blend-mode: multiply;
}
.pagcor-logo {
  width: 67px;
  height: 75px;
  object-fit: contain;
  flex: none;
}
.responsible-banner {
  width: calc(100% - 86px);
  height: auto;
}
.games-section {
  position: relative;
  background: linear-gradient(170deg, #f8f8ff 10%, #edf6ff 75%, #e5f2ff);
  padding: 27px 0 29px;
}
.section-heading {
  text-align: center;
}
.eyebrow {
  margin: 0 0 2px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 3.05vw, 44px);
  line-height: 1.25;
  color: #071747;
  letter-spacing: -0.035em;
  font-weight: 1000;
}
.section-description {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
  margin-top: 22px;
}
.game-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1.44;
  border-radius: 17px;
  background: #08234c;
  box-shadow: 0 2px 2px #07194a09;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.card-art {
  position: absolute;
  z-index: -2;
  inset-inline: 0;
  top: 50%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("assets/game-atlas.webp") 0 0/300% 200% no-repeat;
  transition: transform 0.4s;
}
.casino .card-art {
  background-position: 50% 0;
}
.fishing .card-art {
  background-position: 100% 0;
}
.bingo .card-art {
  background-position: 0 100%;
}
.more .card-art {
  background-position: 50% 100%;
}
.card-label {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 6px;
  background: linear-gradient(180deg, #0513346b, #061839d9);
  color: white;
  font-weight: 1000;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.3;
  text-shadow: 0 1px 3px #07123370;
}
.card-play {
  display: grid;
  place-items: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  background: #ffe137;
  color: #082559;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.card-play svg {
  width: 15px;
  height: 15px;
}
.game-card:hover,
.game-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px #1645a52b;
}
.game-card:hover .card-art {
  transform: translateY(-50%) scale(1.06);
}
.game-card:hover .card-play,
.game-card:focus-visible .card-play {
  opacity: 1;
  transform: translateY(0);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 20px 12px;
  margin: 25px 0 0;
  border: 1px solid #fff;
  border-radius: 20px;
  background: #ffffffed;
}
.benefits li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.3;
}
.benefits li + li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 34px;
  background: #e0eafd;
}
.benefits .icon {
  width: 41px;
  height: 41px;
  color: var(--blue);
  flex: none;
  --icon-check: white;
  filter: drop-shadow(3px 4px 0 #075aff0d);
}
.mobile-play-bar {
  display: none;
}
@media (min-width: 1700px) {
  .hero {
    min-height: 860px;
  }
  .hero-art {
    background-position: center 48%;
  }
  .hero-content {
    padding-top: 112px;
  }
}
@media (max-width: 1100px) and (min-width: 901px) {
  :root {
    --gutter: 40px;
  }
  .hero {
    min-height: 640px;
  }
  .site-header {
    height: 70px;
  }
  .hero-art {
    top: 70px;
  }
  .brand {
    width: 170px;
  }
  .hero-content {
    padding-top: 84px;
  }
  .hero-copy {
    max-width: 57%;
  }
  h1 {
    font-size: 72px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .trust-list {
    gap: 18px;
  }
  .trust-list li {
    gap: 7px;
    font-size: 12px;
  }
  .trust-list .icon {
    width: 32px;
    height: 32px;
  }
  .hero-play {
    width: 355px;
    min-height: 72px;
  }
  .responsible {
    width: 370px;
  }
  .game-grid {
    gap: 12px;
  }
  .game-card {
    border-radius: 13px;
  }
  .benefits li {
    gap: 9px;
    font-size: 13px;
  }
  .benefits .icon {
    width: 33px;
    height: 33px;
  }
  .section-description {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  :root {
    --gutter: 20px;
  }
  .hero {
    min-height: 0;
    background: #2852d5;
    overflow: hidden;
  }
  .site-header {
    height: 73px;
    position: relative;
    z-index: 3;
    background: linear-gradient(110deg, #082276c9, #14319480);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }
  .brand {
    width: 132px;
  }
  .header-actions {
    gap: 9px;
    font-size: 13px;
  }
  .locale {
    display: none;
  }
  .login-button {
    min-height: 35px;
    padding: 6px 18px;
  }
  .header-play {
    min-height: 35px;
    padding: 6px 17px;
  }
  .hero-art {
    top: 54px;
    bottom: auto;
    height: 360px;
    background-size: auto 360px;
    background-position: right top;
  }
  .hero::before {
    inset: 260px 0 0;
    background: linear-gradient(
      180deg,
      transparent,
      #2c4cce 115px,
      #355ae0 70%,
      #adc0f6 89%,
      #e5e6fb 100%
    );
  }
  .hero::after {
    height: 13px;
  }
  .hero-content {
    padding-top: 268px;
    padding-bottom: 17px;
    width: 100%;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    text-align: center;
  }
  h1 {
    order: 0;
    font-size: clamp(47px, 13.5vw, 70px);
    line-height: 0.99;
    letter-spacing: -0.022em;
    text-shadow:
      0 2px 0 #c9dbff,
      0 4px 2px #0b318da6,
      0 5px 22px #0734b288;
  }
  .hero-subtitle {
    order: 1;
    font-size: clamp(15px, 4.1vw, 20px);
    line-height: 1.3;
    margin-top: 13px;
    letter-spacing: -0.015em;
  }
  .hero-play {
    order: 2;
    width: calc(100% - 52px);
    max-width: 395px;
    min-height: 64px;
    margin-top: 23px;
    font-size: 29px;
    gap: 18px;
  }
  .play-icon {
    width: 29px;
    height: 29px;
  }
  .trust-list {
    order: 3;
    justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 440px;
    gap: 8px;
    margin: 24px 0 0;
    text-align: left;
    filter: drop-shadow(0 2px 3px #1a43b870);
  }
  .trust-list li {
    gap: 7px;
    font-size: clamp(10px, 2.7vw, 13px);
    font-weight: 800;
    line-height: 1.25;
  }
  .trust-list .icon {
    width: 30px;
    height: 30px;
  }
  .trust-list li:first-child .icon {
    width: 23px;
  }
  .responsible {
    order: 4;
    justify-content: center;
    width: calc(100% - 40px);
    max-width: 410px;
    gap: 16px;
    margin-top: 21px;
    padding-top: 6px;
    border-top: 1px solid #ffffff38;
  }
  .pagcor-logo {
    width: 51px;
    height: 59px;
  }
  .responsible-banner {
    width: calc(100% - 67px);
    max-width: 294px;
  }
  .games-section {
    padding: 20px 0 26px;
  }
  .eyebrow {
    font-size: 14px;
    margin-bottom: 4px;
  }
  h2 {
    font-size: clamp(23px, 6.1vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.04em;
  }
  .section-description {
    display: none;
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 17px;
  }
  .game-card {
    aspect-ratio: 1.48;
    border-radius: 13px;
  }
  .card-label {
    min-height: 29px;
    font-size: 15px;
    padding: 4px;
  }
  .more {
    grid-column: 1/-1;
    aspect-ratio: 3.14;
  }
  .more .card-art {
    width: calc((100% - 12px) / 2);
    left: 50%;
    transform: translate(-50%, -45%);
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 13%,
      #000 87%,
      transparent
    );
  }
  .more::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: radial-gradient(ellipse at center, #075598, #04182f 85%);
  }
  .more:hover .card-art {
    transform: translate(-50%, -45%) scale(1.06);
  }
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 25px;
    margin-top: 20px;
    padding: 19px 5px;
    border-radius: 15px;
  }
  .benefits li {
    justify-content: flex-start;
    padding: 0 9px;
    gap: 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .benefits .icon {
    width: 30px;
    height: 30px;
  }
  .benefits li:nth-child(3)::before {
    display: none;
  }
  .benefits li + li::before {
    height: 28px;
  }
  .mobile-play-bar {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 20px calc(11px + env(safe-area-inset-bottom));
    background: #fffffff2;
    border-top: 1px solid #fff;
    box-shadow: 0 -5px 25px #0721531a;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(110%);
    visibility: hidden;
    transition:
      transform 0.25s,
      visibility 0.25s;
  }
  .mobile-play-bar.is-visible {
    transform: translateY(0);
    visibility: visible;
  }
  .mobile-play-bar > img {
    width: 95px;
    height: auto;
  }
  .mobile-play-bar .play-button {
    min-height: 46px;
    min-width: 190px;
    gap: 12px;
    font-size: 21px;
  }
  .mobile-play-bar .play-icon {
    width: 22px;
    height: 22px;
  }
  body.has-play-bar .games-section {
    padding-bottom: 105px;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  :root {
    --gutter: 40px;
  }
  .brand {
    width: 168px;
  }
  .site-header {
    height: 78px;
  }
  .hero-art {
    top: 60px;
    height: 440px;
    background-size: cover;
    background-position: center top;
  }
  .hero::before {
    top: 325px;
    background: linear-gradient(
      180deg,
      transparent,
      #2c4cce 140px,
      #355ae0 70%,
      #adc0f6 89%,
      #e5e6fb
    );
  }
  .hero-content {
    padding-top: 332px;
  }
  h1 {
    font-size: 72px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .hero-play {
    max-width: 395px;
    min-height: 70px;
  }
  .trust-list {
    max-width: 460px;
  }
  .trust-list li {
    font-size: 13px;
  }
  .responsible {
    max-width: 410px;
  }
  .game-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
  .game-card {
    grid-column: span 2;
  }
  .bingo {
    grid-column: 2 / span 2;
  }
  .more {
    grid-column: 4 / span 2;
    aspect-ratio: 1.48;
  }
  .more .card-art {
    width: 100%;
    mask-image: none;
  }
  .benefits {
    padding: 24px;
  }
  .benefits li {
    font-size: 15px;
  }
  .games-section {
    padding-top: 27px;
  }
  .mobile-play-bar {
    padding-inline: 40px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 14px;
  }
  .header-play {
    display: none;
  }
  .hero-art {
    height: 330px;
    background-size: auto 330px;
  }
  .hero-content {
    padding-top: 246px;
  }
  .hero-play {
    width: calc(100% - 38px);
    min-height: 60px;
    font-size: 27px;
  }
  .trust-list {
    width: calc(100% - 26px);
    gap: 7px;
  }
  .trust-list li {
    gap: 5px;
    font-size: 10px;
  }
  .trust-list .icon {
    width: 25px;
    height: 27px;
  }
  .trust-list li:first-child .icon {
    width: 20px;
  }
  .benefits li {
    font-size: 11px;
    gap: 7px;
  }
  .benefits .icon {
    width: 27px;
    height: 27px;
  }
  .mobile-play-bar {
    gap: 10px;
    padding-inline: 15px;
  }
  .mobile-play-bar .play-button {
    min-width: 180px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
