*, *::before, *::after {
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  background-color: #121420;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0;
}
p {
  font-family: 'Outfit', sans-serif;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  appearance: button;
  border: none;
}
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
::-webkit-scrollbar {
  width: 12px;
  background-color: #000;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #06a6fc;
  border: 2px solid #01102d;
  border-radius: 9px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3%, 2rem);
}
.flex {
  display: flex;
}
.grid {
  display: grid;
  gap: 1rem;
}
.flex-align-center {
  align-items: center;
}
.section {
  padding: 3rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 2rem 0;
  }
}
.highlight {
  color: #57b3eb;
}
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3677db, #22518e);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(34, 81, 142, 0.4), 0 0 40px rgba(54, 119, 219, 0.3), 0 0 60px rgba(54, 119, 219, 0.2);
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  padding: 1em 2.5em;
  text-align: center;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: fit-content;
  color: #fff;
  border: none;
}
.button:hover, button:hover {
  box-shadow: 0 12px 30px rgba(34, 81, 142, 0.5), 0 0 50px rgba(54, 119, 219, 0.4), 0 0 80px rgba(54, 119, 219, 0.3);
  transform: translateY(-2px);
}
.top-bar__wrapper {
  background-color: #3677db;
}
.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 0;
  text-align: center;
}
.top-bar__icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar__icons img {
  height: 24px;
  width: auto;
}
@media (max-width: 992px) {
  .top-bar__icons img {
    height: 20px;
  }
}
.top-bar__text {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}
@media (max-width: 992px) {
  .top-bar__text {
    font-size: 12px;
  }
}
.header {
  position: relative;
  width: 100%;
  z-index: 555;
}
.header__inner {
  gap: 1rem;
  padding-top: 1.5rem;
}
.site-logo {
  display: inline-block;
}
.site-logo img {
  max-width: 99px;
  width: 100%;
}
.header__menu {
  align-items: center;
}
.header .button, .header button {
  background-color: transparent;
  color: #fff;
}
.menu {
  flex-direction: column;
  gap: 1rem;
}
.header__menu .menu-item:not(.button) a {
  font-size: 0.875rem;
  font-weight: 800;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}
.header__menu .menu-item:not(.button) a:hover {
  color: #3677db;
}
.header__menu .current-menu-item:not(.button) a {
  color: #fff;
  border-bottom: 2px solid #3677db;
}
@media screen and (min-width: 768px) {
  .header__menu {
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    padding: 0.5rem 0;
    width: 100%;
  }
  .header__nav {
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 1;
  }
  .header__nav .button {
    font-size: 14px;
    font-weight: 400;
  }
  .header .burger-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__menu .menu-item a {
    font-size: 0.875rem;
  }
  .burger-menu {
    display: block;
    margin-left: auto;
    cursor: pointer;
    color: #fff;
  }
  .header__nav {
    display: none;
  }
  body.nav-active .header__nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 100vw;
    background-color: #0a1926;
    border-top: 1px solid #3677db;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 555;
  }
  body.nav-active .header__nav .button {
    display: block;
    margin: 0.5rem auto 0;
  }
}
.hero__inner {
  align-items: center;
  color: #fff;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 0;
    text-align: center;
  }
}
.hero__text h1 {
  font-size: 70px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .hero__text {
    padding: 0.5rem;
  }
  .hero__text h1 {
    font-size: 48px;
  }
}
@media (max-width: 400px) {
  .hero__text h1 {
    font-size: 36px;
  }
}
.hero__text p {
  color: #616161;
}
.hero__image img {
  width: 100%;
  height: auto;
}
.features {
  padding-top: 0;
}
.features__wrapper {
  background-image: url("https://spinnebulaca.com/wp-content/themes/spinnebulaca-com/img/no-purchase-bg.png");
  background-position: center;
  background-size: cover;
  border: 1px solid #373740;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 2rem;
}
.features__header {
  text-align: center;
}
.features__header h2 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .features__header h2 {
    font-size: 32px;
  }
}
.features__header p {
  color: #938fb7;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.features__big {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .features__big {
    grid-template-columns: 1fr;
  }
}
.feature__big {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 150px);
  align-items: center;
  gap: 0;
  background-image: url("https://spinnebulaca.com/wp-content/themes/spinnebulaca-com/img/big-f-bg.png");
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  padding: 1rem 0 1rem 1rem;
}
@media (max-width: 767px) {
  .feature__big {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.feature__big h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.feature__big--content {
  text-align: left;
}
@media (max-width: 767px) {
  .feature__big--content {
    text-align: center;
  }
}
.feature__big--image {
  text-align: right;
}
@media (max-width: 767px) {
  .feature__big--image {
    text-align: center;
  }
}
.features__boxes {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .features__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .features__boxes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.features__box {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 110px);
  align-items: flex-end;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.features__box:first-child {
  background-image: url("https://spinnebulaca.com/wp-content/themes/spinnebulaca-com/img/bg-1.png");
}
.features__box:nth-child(2) {
  background-image: url("https://spinnebulaca.com/wp-content/themes/spinnebulaca-com/img/bg-2.png");
}
.features__box:nth-child(3) {
  background-image: url("https://spinnebulaca.com/wp-content/themes/spinnebulaca-com/img/bg-3.png");
}
.features__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  justify-content: center;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
.features__text h3 {
  font-size: 22px;
  font-weight: 700;
}
.features__image {
  text-align: right;
}
.games__grid {
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 10em));
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .games__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 767px) {
  .games__grid {
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  .games__heading h2 {
    text-align: center;
  }
}
.games__heading p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.games .game {
  border: 1px solid #3e4e6a;
  border-radius: 20px;
  overflow: clip;
}
.games .game__wrapper {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}
.games .game__wrapper img {
  width: 100%;
  transition: transform 0.2s ease-in-out;
}
.games .game__wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: none;
  pointer-events: none;
  z-index: 1;
}
.games .game__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 0, 41, 0.8);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  z-index: 3;
}
.games .game:hover .game__overlay {
  opacity: 1;
  z-index: 4;
}
.games .games__grid > .game:nth-child(5n+1) .game__wrapper::after {
  background: linear-gradient(180deg, rgba(38, 191, 249, 0), #0070ac);
}
.games .games__grid > .game:nth-child(5n+2) .game__wrapper::after {
  background: linear-gradient(180deg, rgba(38, 249, 63, 0), #00ac56);
}
.games .games__grid > .game:nth-child(5n+3) .game__wrapper::after {
  background: linear-gradient(180deg, rgba(249, 38, 203, 0), #9d00ac);
}
.games .games__grid > .game:nth-child(5n+4) .game__wrapper::after {
  background: linear-gradient(180deg, rgba(249, 63, 38, 0), #ac0000);
}
.games .games__grid > .game:nth-child(5n) .game__wrapper::after {
  background: linear-gradient(180deg, rgba(249, 144, 38, 0), #ac4800);
}
.benefits {
  overflow: hidden;
}
.benefits__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .benefits__wrapper {
    gap: 0;
  }
}
.benefits__item {
  position: relative;
  padding: 2rem 0;
  text-align: center;
}
.benefits__bg-text {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(50px, 5vw, 70px);
  font-weight: 900;
  color: #162531;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1023px) {
  .benefits__bg-text {
    display: none;
  }
}
.benefits__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.benefits__content p {
  color: #c9c9c9;
}
.benefits__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.faqs__wrapper {
  background-image: url("https://spinnebulaca.com/wp-content/themes/spinnebulaca-com/img/faq-bg.png");
  background-size: cover;
  border-radius: 25px;
  overflow: hidden;
  padding: 2rem;
}
.faqs__content {
  max-width: 900px;
  margin: 0 auto;
}
.faqs__content > p {
  color: #938fb7;
}
.faqs__content > h2 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .faqs__content > h2 {
    font-size: 32px;
  }
}
.faqs__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .faqs__accordion {
    margin-top: 1rem;
  }
}
.faqs__item {
  background-color: #12172f;
  border-radius: 16px;
  padding: 1rem;
}
@media (max-width: 400px) {
  .faqs__item {
    padding: 0.75rem;
  }
}
.faqs__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  word-break: break-word;
}
.faqs__question span:first-child {
  color: #285ea8;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .faqs__question {
    font-size: 16px;
  }
}
.faqs__icon {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 300;
  color: #285ea8;
  margin-left: 1rem;
}
.faqs__icon-minus {
  display: none;
}
.faqs__icon-plus {
  display: inline;
}
.faqs__item.is-active .faqs__icon-minus {
  display: inline;
}
.faqs__item.is-active .faqs__icon-plus {
  display: none;
}
.faqs__answer {
  overflow: hidden;
  transition: all 0.3s ease;
}
.faqs__answer p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.footer {
  position: relative;
  padding: 2rem 0;
  color: #fff;
  text-align: center;
  overflow: clip;
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__logo {
  text-align: center;
}
.footer__nav {
  width: 100%;
  border-top: 1px solid #2c3a52;
  margin: 1rem 0;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease-in-out;
}
.footer__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .footer__menu {
    gap: 3rem;
  }
}
.footer__menu .menu-item a {
  font-size: 1rem;
  font-weight: 800;
  color: #7584a6;
  text-decoration: none;
}
.footer__menu .menu-item a:hover,
.footer__menu .current-menu-item a {
  color: #fff;
}
.footer__disclaimer {
  margin: 1rem 0;
  text-align: center;
}
.footer__disclaimer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .footer__text {
    max-width: 800px;
  }
}
.footer__copyright p {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 1rem 0;
}
.footer__gamble-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer__logo-item {
  height: 28px;
  width: auto;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-top: 2px solid #3677db;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  animation: slideUp 0.3s ease-out;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
.cookie-banner__text {
  flex: 1;
}
.cookie-banner__text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}
.cookie-banner__buttons {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}
@media (max-width: 768px) {
  .cookie-banner__buttons {
    justify-content: center;
    width: 100%;
  }
}
.cookie-banner__button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-width: 80px;
  transition: all 0.2s ease;
}
.cookie-banner__button--accept {
  background: #1853ad;
  color: #fff;
}
.cookie-banner__button--accept:hover {
  background: #0064fa;
  transform: translateY(-1px);
}
.cookie-banner__button--decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.cookie-banner__button--decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .cookie-banner__button {
    flex: 1;
    max-width: 120px;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.game-modal.show {
  display: block;
}
.game-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}
.game-modal__content {
  position: relative;
  z-index: 10000;
  width: 1200px;
  max-width: 95%;
  max-height: 90vh;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(54, 119, 219, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(54, 119, 219, 0.2);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .game-modal__content {
    margin: 1rem;
    padding: 1rem;
    max-height: 95vh;
  }
}
.game-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.game-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .game-modal__close {
    width: 35px;
    height: 35px;
    font-size: 28px;
  }
}
.game-modal__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.game-modal__header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .game-modal__header h2 {
    font-size: 22px;
  }
}
.game-modal__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
}
.game-modal__iframe {
  width: 100%;
  height: 70vh;
  border: none;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .game-modal__iframe {
    height: 60vh;
  }
}
.section-regular {
  padding: 3rem 0;
}
.section-regular .content {
  max-width: 800px;
  margin: 0 auto;
}
.section-regular .content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #57b3eb;
}
.section-regular .content h2:first-child {
  margin-top: 0;
}
.section-regular .content p {
  color: #c9c9c9;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.section-regular .content p strong {
  color: #fff;
  font-weight: 600;
}
.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 0;
}
.contact .email-feedback {
  color: #06a6fc;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.form {
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.form__field {
  position: relative;
}
.form__field label {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  color: #7584a6;
  font-size: 1rem;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}
.form__field input,
.form__field textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: #87ecf8;
  background: rgba(255, 255, 255, 0.08);
}
.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:focus + label,
.form__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-2.5rem);
  font-size: 0.875rem;
  color: #87ecf8;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: transparent;
}
.form__field input {
  height: 60px;
}
.form__field textarea {
  height: 200px;
  resize: vertical;
  font-family: inherit;
}
.form__field:has(textarea) label {
  top: 1.5rem;
}
.form__field button.button--submit {
  width: 100%;
  background-color: unset;
  border: 1px solid #285ea8;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form__field button.button--submit:hover {
  border: 1px solid rgba(26, 98, 199, 0.831);
  transform: translateY(-2px);
}
.form__field button.button--submit:active {
  transform: translateY(0);
}