html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}
img {
  display: block;
  max-width: 100%;
}
.glamour-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 1000;
  width: 100%;
  background: linear-gradient(135deg, #1a0b2e, #2e1a4d);
  box-shadow: 0 4px 20px #ffd7004d, inset 0 0 10px #ffd70033;
  border-bottom: 2px solid #ffd700;
  animation: headerGlow 3s ease-in-out infinite alternate;
}
@keyframes headerGlow {
  0% {
    box-shadow: 0 4px 20px #ffd7004d, inset 0 0 10px #ffd70033;
  }
  to {
    box-shadow: 0 6px 30px #ffd70080, inset 0 0 15px #ffd70066;
  }
}
.header_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  max-width: 80px;
  object-fit: cover;
}
.brand-logo:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 1280px) {
  .brand-logo {
    width: 60px;
    height: 60px;
  }
}
.desktop-nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .desktop-nav {
    display: block;
    width: 100%;
  }
}
.mobile-nav-toggle {
  display: block;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffd700 0%, #b8860b 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.mobile-nav-toggle:hover {
  background: radial-gradient(circle, #b8860b 0%, #ffd700 100%);
}
.mobile-nav-toggle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.mobile-nav {
  position: fixed;
  top: 64px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #1a0b2e, #3c2f5f);
  opacity: 0;
  pointer-events: none;
  transition: right 0.5s ease, opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.mobile-nav.is-open {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
  width: 100%;
}
.mobile-nav-item {
  padding: 12px 24px;
  background: linear-gradient(45deg, #ffd700, #b8860b);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mobile-nav-item:hover,
.mobile-nav-item:focus {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #ffd70080;
}
.mobile-nav-item > a {
  font-family: Playfair Display, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a0b2e;
  text-decoration: none;
  letter-spacing: 1px;
}
@media screen and (min-width: 1280px) {
  .mobile-nav {
    display: none;
  }
  .desktop-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
  }
  .desktop-nav-item {
    position: relative;
    padding: 10px 20px;
    transition: transform 0.3s ease;
  }
  .desktop-nav-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
  }
  .desktop-nav-item:hover:after {
    width: 100%;
  }
  .desktop-nav-item:hover {
    transform: translateY(-3px);
  }
  .desktop-nav-item > a {
    font-family: Playfair Display, serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: gold;
    text-decoration: none;
    letter-spacing: 1px;
  }
}
.header_container {
  padding: 12px 16px;
}
@media screen and (min-width: 1280px) {
  .header_container {
    padding: 16px 96px;
  }
}
.footer {
  background: -webkit-linear-gradient(90deg, #eae6ff, #f4f4f4);
  background: linear-gradient(90deg, #eae6ff, #f4f4f4);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.footer_container {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .footer_container {
    padding: 60px 96px;
    gap: 50px;
  }
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .footer-links-list {
    gap: 32px;
    flex-direction: row;
    justify-content: center;
  }
}
.footer-text {
  line-height: 1.57143;
  color: #161616;
}
@media screen and (min-width: 1280px) {
  .footer-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.footer-links-list-item > a {
  line-height: 1.57143;
  color: #131313;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  .footer-links-list-item > a {
    font-size: 16px;
    line-height: 1.5;
  }
}
.mb20 {
  margin-bottom: 20px;
}
.footer a {
  transition: color 0.35s ease;
}
.footer a:hover {
  color: #070707;
}
.casino-partner-vault {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #1e1236, #2c1a47);
  border-radius: 10px;
  border: 1px solid #b8860b;
  box-shadow: 0 4px 16px #ffd70033;
  animation: vaultFadeIn 1s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .casino-partner-vault {
    gap: 24px;
    padding: 20px;
  }
}
@keyframes vaultFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px #ffd70066;
}
.partner-premium {
  width: 80px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #b8860b);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ffd700;
}
.partner-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.partner-gold-accent {
  background: linear-gradient(45deg, #b8860b, #d4a017);
}
.partner-gold-accent img {
  filter: brightness(1.2);
}
.partner-compact {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  border: 1px solid #b8860b;
}
.partner-compact img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
@media screen and (min-width: 1280px) {
  .partner-premium {
    width: 100px;
    height: 60px;
  }
  .partner-compact {
    width: 50px;
    height: 50px;
  }
}
.page-margin {
  margin-bottom: 32px;
}
.page-margin-2 {
  margin-bottom: 16px;
}
.page-margin-8,
.page-margin-24 {
  margin-bottom: 8px;
}
.h3-uppercase {
  text-transform: uppercase;
}
.page-text-bold {
  font-weight: 600;
}
.page-text {
  line-height: 1.57143;
}
@media screen and (min-width: 1280px) {
  .page-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}
.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
}
@media screen and (min-width: 1280px) {
  .page-simple-link {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
}
@media screen and (min-width: 1280px) {
  .page-title-h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.page-title {
  font-family: Nunito, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 116px auto 40px;
}
@media screen and (min-width: 1280px) {
  .page-title {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}
.page-content {
  padding: 0 16px 60px;
}
@media screen and (min-width: 1280px) {
  .page-content {
    padding: 0 212px 120px;
  }
}
.page-section {
  margin-top: 80px;
}
.casino-faq {
  width: 100%;
  background: linear-gradient(180deg, #0e061f, #25183e);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.casino-faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.12) 0%,
    transparent 70%
  );
  z-index: 0;
  animation: faqGlow 5s ease-in-out infinite;
}
@keyframes faqGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  to {
    opacity: 0.3;
    transform: scale(1);
  }
}
.faq_container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 16px;
}
@media screen and (min-width: 1280px) {
  .faq_container {
    gap: 48px;
    padding: 80px 96px;
  }
}
.faq-heading {
  font-family: Playfair Display, serif;
  font-size: 32px;
  font-weight: 700;
  color: gold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  animation: headingFadeIn 1s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .faq-heading {
    font-size: 40px;
  }
}
@keyframes headingFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .faq-collection {
    gap: 24px;
  }
}
.faq-entry {
  width: 100%;
  max-width: 800px;
  background: linear-gradient(135deg, #1e1236, #3c2f5f);
  border: 1px solid #b8860b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px #ffd70033;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #ffd70066;
}
.faq-question-button-js {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #b8860b;
}
.faq-query {
  width: 100%;
  padding: 16px;
  font-family: Playfair Display, serif;
  font-size: 16px;
  font-weight: 600;
  color: gold;
  text-align: left;
  background: linear-gradient(90deg, #2a1b47, #3c2f5f);
  border-radius: 10px 10px 0 0;
  transition: background 0.3s ease;
}
.faq-question-button-js:hover .faq-query {
  background: linear-gradient(90deg, #3c2f5f, #4a3c6f);
}
@media screen and (min-width: 1280px) {
  .faq-query {
    font-size: 18px;
    padding: 20px;
  }
}
.faq-response {
  max-height: 0;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #e0e0e0;
  padding: 0 16px;
  background: #1e1236;
  border-radius: 0 0 10px 10px;
  transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    padding 0.4s ease;
}
.faq-response.open {
  max-height: 400px;
  padding: 16px;
}
@media screen and (min-width: 1280px) {
  .faq-response {
    font-size: 16px;
  }
  .faq-response.open {
    padding: 20px;
  }
}
.casino-showcase {
  scroll-margin-top: 80px;
  width: 100%;
  background: linear-gradient(180deg, #0f071b, #1e1236);
  padding: 40px 0;
}
.cards_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 3cqi 16px;
}
.casino-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .casino-grid {
    gap: 40px;
  }
}
.casino-card {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #2a1b47, #3c2f5f);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px #ffd70033;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardFadeIn 0.5s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .casino-card {
    flex-direction: row;
    padding: 32px;
    gap: 24px;
  }
}
.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px #ffd70066;
}
@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rank-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffd700, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Playfair Display, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a0b2e;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 8px #0000004d;
}
@media screen and (min-width: 1280px) {
  .rank-badge {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
}
.brand-image {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.brand-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.brand-image:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 1280px) {
  .brand-image {
    max-width: 250px;
  }
}
.rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 300px;
}
.rating-block img {
  max-width: 100px;
  padding: 4px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.rating-block img:hover {
  transform: scale(1.1);
}
.rating-block p {
  font-family: Playfair Display, serif;
  font-size: 16px;
  font-weight: 600;
  color: gold;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .rating-block {
    align-items: flex-start;
  }
  .rating-block p {
    font-size: 18px;
  }
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 300px;
}
.bonus-item {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #e0e0e0;
  padding-left: 20px;
  position: relative;
}
.bonus-item:before {
  content: "★";
  position: absolute;
  left: 0;
  color: gold;
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .bonus-item {
    font-size: 16px;
  }
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  max-width: 250px;
}
.payment-methods img {
  object-fit: contain;
  transition: transform 0.3s ease;
}
.payment-methods img:hover {
  transform: scale(1.15);
}
@media screen and (min-width: 1280px) {
  .payment-methods {
    max-width: 300px;
  }
  .payment-methods img {
    height: 15px;
  }
}
.bonus-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  background: linear-gradient(45deg, #ffd700, #b8860b);
  border-radius: 8px;
  text-decoration: none;
  font-family: Playfair Display, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a0b2e;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.bonus-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.4s ease;
}
.bonus-button:hover:before {
  left: 100%;
}
.bonus-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px #ffd70080;
}
.bonus-button span {
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .bonus-button {
    width: 220px;
    height: 52px;
    font-size: 18px;
  }
}
.hero {
  background-image: linear-gradient(90deg, #000000a3, #0d1521b7, #070e18a5),
    url(/assets/h1-22cc0f01.webp);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  width: 100%;
  padding-top: 125px;
  padding-bottom: 40px;
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.hero_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 14px;
}
@media screen and (min-width: 1440px) {
  .hero_container {
    padding: 0 80px;
  }
}
.hero_container h1 {
  color: #fff;
  font-size: 38px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 600px;
}
@media screen and (max-width: 1280px) {
  .hero_container h1 {
    font-size: 25px;
  }
}
.hero_container p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  max-width: 600px;
}
@media screen and (max-width: 1280px) {
  .hero_container p {
    font-size: 18px;
  }
}
.casino-rating {
  width: 100%;
  background: linear-gradient(135deg, #120726, #2a1b47);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.casino-rating:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 60%
  );
  z-index: 0;
  animation: shimmerGlow 4s ease-in-out infinite;
}
@keyframes shimmerGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
  to {
    opacity: 0.2;
    transform: scale(1);
  }
}
.rating_container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 16px;
}
@media screen and (max-width: 1279px) {
  .rating_container {
    flex-direction: column;
    padding: 32px 16px;
  }
}
@media screen and (min-width: 1280px) {
  .rating_container {
    padding: 60px 96px;
  }
}
.rating-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .rating-content {
    align-items: flex-start;
    text-align: left;
  }
}
.rating-title {
  font-family: Playfair Display, serif;
  font-size: 32px;
  font-weight: 700;
  color: gold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  animation: titleSlideIn 1s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .rating-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .rating-title {
    font-size: 40px;
  }
}
@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translate(-30px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.rating-description {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 500px;
  animation: textSlideIn 1.2s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .rating-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .rating-description {
    font-size: 18px;
    max-width: 600px;
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.rating-image {
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #b8860b;
  box-shadow: 0 6px 20px #ffd7004d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rating-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.rating-image:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px #ffd70080;
}
@media screen and (max-width: 1279px) {
  .rating-image {
    max-width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .rating-image {
    max-width: 600px;
  }
}
.luxury-info {
  scroll-margin-top: 80px;
  width: 100%;
  background: linear-gradient(180deg, #1c0e2f, #2f1b4a);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.luxury-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  to {
    opacity: 0.3;
    transform: scale(1);
  }
}
.info-block_container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 16px;
}
@media screen and (min-width: 1280px) {
  .info-block_container {
    padding: 80px 96px;
    gap: 32px;
  }
}
.casino-title {
  font-family: Playfair Display, serif;
  font-size: 32px;
  font-weight: 700;
  color: gold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: titleFadeIn 1s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .casino-title {
    font-size: 48px;
  }
}
@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.casino-subtitle {
  font-family: Playfair Display, serif;
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  animation: subtitleFadeIn 1.2s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .casino-subtitle {
    font-size: 28px;
  }
}
@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.casino-text {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #d4d4d4;
  text-align: center;
  max-width: 800px;
  line-height: 1.6;
  animation: textFadeIn 1.4s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .casino-text {
    font-size: 18px;
  }
}
@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.casino-image {
  max-width: 100%;
  max-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #ffd700;
  box-shadow: 0 4px 16px #ffd7004d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.casino-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.casino-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px #ffd70080;
}
@media screen and (min-width: 1280px) {
  .casino-image {
    max-height: 450px;
  }
}
.cookies-section {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
  background: -webkit-linear-gradient(90deg, #eae6ff, #f4f4f4);
  background: linear-gradient(90deg, #eae6ff, #f4f4f4);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.cookies-container {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1440px) {
  .cookies-container {
    padding: 40px 108px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookies-text {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.57143;
  text-align: center;
  color: #101010;
}
@media screen and (min-width: 1440px) {
  .cookies-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 705px;
    text-align: left;
  }
}
.cookies-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1440px) {
  .cookies-buttons {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
  }
}
.cookies-accept-js {
  background-color: #a9ffcc;
  transition: background-color 0.3s ease;
  color: #121212 !important;
}
.cookies-accept-js:hover {
  background-color: #49db86;
}
.cookies-decline-js {
  background-color: #ff735d;
  transition: background-color 0.3s ease;
  color: #121212 !important;
}
.cookies-decline-js:hover {
  background-color: #ce1b00;
}
.casino-about {
  width: 100%;
  background: linear-gradient(180deg, #17092b, #2e1b4a);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.casino-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top center,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  animation: aboutGlow 5s ease-in-out infinite;
}
@keyframes aboutGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
  to {
    opacity: 0.2;
    transform: scale(1);
  }
}
.about-info_container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 16px;
}
@media screen and (min-width: 1280px) {
  .about-info_container {
    padding: 80px 96px;
    gap: 32px;
  }
}
.about-paragraph {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 12px #ffd7001a;
  animation: paragraphFadeIn 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-paragraph:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px #ffd7004d;
}
@keyframes paragraphFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1280px) {
  .about-paragraph {
    font-size: 18px;
    padding: 20px;
  }
}
.margin-bottom {
  margin-bottom: 16px;
}
@media screen and (min-width: 1280px) {
  .margin-bottom {
    margin-bottom: 24px;
  }
}
.boxes {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 100% 1%;
  background-position: top;
  animation: bgAnimate 6s infinite alternate-reverse ease-in-out;
  padding-top: 2px;
}
@media screen and (max-width: 1440px) {
  .boxes {
    height: 100vh;
    overflow: hidden;
  }
}
@keyframes bgAnimate {
  0% {
    background-size: 100% 1%;
  }
  to {
    background-size: 100% 150%;
  }
}
.box {
  width: calc((100% - 78px) / 40);
  aspect-ratio: 1;
  background-color: #2a2a2a;
  transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1400px) {
  .box {
    width: calc((100% - 57px) / 20);
  }
}
@media screen and (max-width: 480px) {
  .box {
    width: calc((100% - (10 * 3px)) / 11);
  }
}
.box.active {
  background: -webkit-linear-gradient(90deg, #373054, #33299c, #0f08e6);
  background: linear-gradient(90deg, #373054, #33299c, #0f08e6);
}
.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: -webkit-linear-gradient(90deg, #eae6ff, #f4f4f4);
  background: linear-gradient(90deg, #eae6ff, #f4f4f4);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  padding: 20px;
  box-shadow: 0 0 10px #0000001a;
  min-width: 800px;
}
@media screen and (max-width: 1440px) {
  .form-container {
    min-width: 300px;
  }
}
label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #161616;
}
input,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
textarea {
  height: 100px;
  resize: vertical;
}
input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}
.btn-2 {
  text-align: center;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  margin: 0 20px;
}
.btn-2:before {
  content: "";
  position: absolute;
  height: 11px;
  width: 100%;
  background: #fff;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0.3;
}
.btn-2:hover:before {
  top: 77%;
}
textarea {
  resize: none;
}
:root {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;
  background: -webkit-linear-gradient(90deg, #405758, #5e787b, #405758);
  background: linear-gradient(90deg, #405758, #5e787b, #405758);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.page-section {
  background-color: #fff;
  padding-top: 100px;
}
body {
  overflow-x: hidden !important;
}
