* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-bg:#08100D;
  --color-accent:#FFCA27;
  --color-divider:#3A3A3A;
  --color-bg-section:rgba(36, 38, 72, 0.9);
  --color-section-odd:rgba(36, 38, 72, 0.0);
  --color-section-even:rgba(36, 38, 72, 0.0);
  --color-bg-island:rgb(15,15,15, 0.7);
  --color-bg-island-light:rgba(27, 27, 27, 0.8);
  --color-bg-marquee:rgba(36, 38, 72, 0);
}

html {
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #f8f8f8;
  background-color: var(--color-bg);
  min-height: 100%;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../png/page-background.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.2;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

a {
  text-decoration: none;
  color: #f8f8f8;
}

img {
  max-width: 100%;
  height: auto;
}

ol, ul {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

header {
  background-color: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.site-header-wrapper {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-divider);
}

.header-bottom {
  padding: 8px 0;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-bottom .header-main {
  padding: 0 10px;
}

.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-logo img {
  height: 40px;
}

.user-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.signin-btn, .signup-btn {
  padding: 8px 15px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  overflow: hidden;
}

.signin-btn::before, .signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: lightning 2.5s linear infinite;
  animation: lightning 2.5s linear infinite;
}

@-webkit-keyframes lightning {
  0% {
    left: -100%;
  }
  100%, 20% {
    left: 100%;
  }
}
@keyframes lightning {
  0% {
    left: -100%;
  }
  100%, 20% {
    left: 100%;
  }
}
.signin-btn {
  background-color: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.signin-btn:hover {
  background-color: rgba(255, 202, 39, 0.1);
}

.signup-btn {
  background-color: var(--color-accent);
  color: #242648;
}

.signup-btn:hover {
  background-color: #efbe20;
}

.primary-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.primary-nav li {
  margin: 0 8px;
}

.primary-nav a {
  display: block;
  padding: 5px 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.primary-nav a:hover {
  color: var(--color-accent);
}

.hamburger-icon {
  display: none;
  cursor: pointer;
  margin-left: 10px;
  z-index: 101;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--color-accent);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  display: none;
}

.menu-backdrop.active {
  display: block;
}

.hamburger-icon.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

main {
  width: 100%;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(221, 221, 231, 0.95);
  z-index: -1;
}

.hero-section::before {
  display: none;
}

section:nth-child(odd)::before {
  background-color: var(--color-section-odd);
}

section:nth-child(even)::before {
  background-color: var(--color-section-even);
}

.title-block {
  color: var(--color-accent);
  font-size: 1.8rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.subtitle-block {
  color: #f8f8f8;
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.inner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.hero-section {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 40px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.hero-section::before {
  background-color: transparent;
}

.poster-img-wrapper {
  width: 100%;
  height: 70vh;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.poster-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.poster-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--color-accent);
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.ui-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: 700;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.ui-button:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main-action-btn {
  background-color: var(--color-accent);
  color: #242648;
}

.main-action-btn:hover {
  background-color: #efbe20;
}

.secondary-action {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.secondary-action:hover {
  background-color: rgba(255, 202, 39, 0.1);
}

.lead-text {
  background-color: transparent;
  padding: 40px 0;
  margin-bottom: 40px;
}

.lead-text::before {
  background-color: var(--color-bg-section);
}

.grid-row.middle-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.text-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.media-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.media-col img {
  max-width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.media-col img:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.lead-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.intro-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.help-boxes {
  margin-top: 20px;
}

.help-card {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.help-card .help-title {
  padding: 15px 35px 15px 15px;
  background-color: var(--color-bg-island);
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.help-card .help-title:hover {
  background-color: rgba(15, 15, 15, 0.9);
}

.help-card .help-title::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.help-card.active .help-title::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.help-text {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.15s ease-out, padding 0.15s ease-out;
  transition: max-height 0.15s ease-out, padding 0.15s ease-out;
  background-color: var(--color-bg-island-light);
}

.help-card.active .help-text {
  padding: 15px;
  border-top: 1px solid var(--color-divider);
}

.betting-tips {
  text-align: center;
  background-color: rgba(52, 56, 112, 0.8);
  padding: 30px 0;
}

.betting-tips .inner-wrapper {
  padding: 20px;
  border-radius: 5px;
}

.betting-tips img {
  max-width: 200px;
  margin-bottom: 20px;
}

footer {
  background-color: #202020;
  padding: 40px 0 0;
  color: var(--color-text-light);
  font-family: Arial, sans-serif;
  border-top: 1px solid var(--color-divider);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-branding {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}

.footer-links-list {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}

.contact-footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

.logo-footer {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-footer img {
  max-width: 150px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--color-text-muted);
}

.website-footer {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.website-footer a {
  color: var(--color-accent);
  text-decoration: none;
}

.website-footer a:hover {
  text-decoration: underline;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.footer-social a {
  padding: 8px;
  border-radius: 99px;
  background-color: var(--color-bg);
}

.footer-social a svg {
  fill: var(--color-accent);
}

.footer-social a:hover {
  background-color: var(--color-bg-island);
}

.size-24 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  display: block;
}

.footer-cats h3, .contact-footer h3, .footer-recos h3 {
  color: var(--color-accent);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-cats {
  margin-bottom: 25px;
}

.footer-cats p {
  font-size: 0.9rem;
}

.footer-cats a {
  color: var(--color-text-light);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-cats a:hover {
  color: var(--color-accent);
}

.casino-footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.casino-footer-links p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.casino-footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.casino-footer-links a:hover {
  color: var(--color-accent);
}

.contact-footer p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-footer strong {
  color: var(--color-accent);
  font-weight: 600;
}

.legal-footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-island);
}

.legal-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.legal-footer a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.legal-footer a:hover {
  text-decoration: underline;
}

.back-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.casino-footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.casino-footer-links p {
  margin-bottom: 5px;
}

.casino-footer-links a {
  color: #f8f8f8;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.casino-footer-links a:hover {
  color: var(--color-accent);
}

.legal-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-divider);
}

.back-to-top {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  color: var(--color-accent);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.back-to-top:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.account-avatar, .app-screenshot, .app-screenshot-2, .brand-logo-img {
  margin: 30px 0;
  text-align: center;
}

.account-avatar img, .app-screenshot img, .app-screenshot-2 img, .brand-logo-img img {
  max-width: 100%;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.account-avatar p, .app-screenshot p, .app-screenshot-2 p, .brand-logo-img p {
  margin-top: 10px;
  font-style: italic;
  color: #aaa;
}

.user-benefits, .casino-list, .fund-in, .features-section, .offer-grid, .sports-bets, .trust-list, .fund-out {
  background-color: var(--color-bg-island);
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-visual {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.floating-anchor {
  display: block;
  position: relative;
}

.shake-img {
  max-width: 180px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  -webkit-animation: shake 4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  animation: shake 4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
  10%, 2%, 6% {
    -webkit-transform: rotate(-3deg) translateY(-2px);
    transform: rotate(-3deg) translateY(-2px);
  }
  12%, 4%, 8% {
    -webkit-transform: rotate(3deg) translateY(-2px);
    transform: rotate(3deg) translateY(-2px);
  }
  14%, 18% {
    -webkit-transform: rotate(-2deg) translateY(-1px);
    transform: rotate(-2deg) translateY(-1px);
  }
  16%, 20% {
    -webkit-transform: rotate(2deg) translateY(-1px);
    transform: rotate(2deg) translateY(-1px);
  }
  22%, 90% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
  10%, 2%, 6% {
    -webkit-transform: rotate(-3deg) translateY(-2px);
    transform: rotate(-3deg) translateY(-2px);
  }
  12%, 4%, 8% {
    -webkit-transform: rotate(3deg) translateY(-2px);
    transform: rotate(3deg) translateY(-2px);
  }
  14%, 18% {
    -webkit-transform: rotate(-2deg) translateY(-1px);
    transform: rotate(-2deg) translateY(-1px);
  }
  16%, 20% {
    -webkit-transform: rotate(2deg) translateY(-1px);
    transform: rotate(2deg) translateY(-1px);
  }
  22%, 90% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
}
.floating-anchor .floating-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.floating-anchor:hover .floating-icon {
  opacity: 1;
}

.floating-anchor:hover .shake-img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

@-webkit-keyframes flying {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0) scale(0.5);
    transform: translateY(0) scale(0.5);
  }
  15% {
    opacity: 1;
    -webkit-transform: translateY(-25px) scale(0.8);
    transform: translateY(-25px) scale(0.8);
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(-50px) scale(1);
    transform: translateY(-50px) scale(1);
  }
  65% {
    opacity: 0.8;
    -webkit-transform: translateY(-75px) scale(1.1);
    transform: translateY(-75px) scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100px) scale(1.2);
    transform: translateY(-100px) scale(1.2);
  }
}
@keyframes flying {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0) scale(0.5);
    transform: translateY(0) scale(0.5);
  }
  15% {
    opacity: 1;
    -webkit-transform: translateY(-25px) scale(0.8);
    transform: translateY(-25px) scale(0.8);
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(-50px) scale(1);
    transform: translateY(-50px) scale(1);
  }
  65% {
    opacity: 0.8;
    -webkit-transform: translateY(-75px) scale(1.1);
    transform: translateY(-75px) scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100px) scale(1.2);
    transform: translateY(-100px) scale(1.2);
  }
}
@-webkit-keyframes shaking {
  0%, 100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
@keyframes shaking {
  0%, 100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
.shaking {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.scrolling-section {
  border-top: 1px solid var(--color-accent);
  background-color: var(--color-bg-marquee);
  padding: 10px 0;
  margin-bottom: 40px;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
  color: #fff;
  font-weight: 700;
}

.scrolling-text span {
  display: inline-block;
  margin-right: 20px;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(var(--marquee-start));
    transform: translateX(var(--marquee-start));
  }
  100% {
    -webkit-transform: translateX(var(--marquee-end));
    transform: translateX(var(--marquee-end));
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(var(--marquee-start));
    transform: translateX(var(--marquee-start));
  }
  100% {
    -webkit-transform: translateX(var(--marquee-end));
    transform: translateX(var(--marquee-end));
  }
}
@media (min-width: 767.98px) {
  .primary-nav li:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .footer-branding {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .footer-links-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }
  .contact-footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
  }
}
@media screen and (max-width: 768px) {
  .contact-footer, .footer-links-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .logo-footer {
    text-align: center;
  }
  .footer-about, .website-footer {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .header-bottom .header-main, .header-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
  }
  .site-header-wrapper {
    padding: 0;
    position: relative;
    z-index: 102;
    background: var(--color-bg);
  }
  .site-logo {
    margin-bottom: 10px;
  }
  .primary-nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .primary-nav li {
    margin: 5px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .poster-img-wrapper {
    height: 50vh;
  }
  section {
    padding: 15px 0;
  }
  .inner-wrapper {
    padding: 0 15px;
  }
  .lead-text {
    padding: 30px 0;
  }
  .grid-row.middle-align {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .media-col, .text-area {
    min-width: 100%;
  }
  .lead-description {
    font-size: 1rem;
  }
  .intro-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .intro-actions .ui-button {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .floating-visual {
    bottom: 10px;
    right: 10px;
  }
  .shake-img {
    max-width: 120px;
  }
  .wrapper {
    width: 200px;
    margin-left: -100px;
    bottom: 80px;
  }
  .wrapper .bonus {
    width: 90px;
    height: 92px;
    margin-left: -45px;
  }
  .surprises .fly {
    font-size: 16px;
  }
  .user-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hamburger-icon {
    display: block;
  }
  .site-logo {
    margin-bottom: 0;
  }
  .site-header-wrapper .header-main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
    gap: 6px;
  }
}
@media (max-width: 767.98px) {
  .header-bottom {
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 99;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    -webkit-box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    padding: 84px 20px 20px;
  }
  .header-bottom.open {
    left: 0;
  }
  .primary-nav {
    width: 100%;
  }
  .primary-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .primary-nav ul li {
    border-bottom: 1px solid var(--color-divider);
  }
  .primary-nav li a {
    padding-bottom: 8px;
  }
  .hero-cta {
    width: 100%;
  }
}
@media (max-width: 767.98px) and (max-width: 479.98px) {
  .header-bottom {
    padding: 84px 10px 10px;
  }
}
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .ui-button {
    width: 100%;
    text-align: center;
  }
  .footer-recos .casino-footer-links p {
    font-size: 14px;
  }
  .floating-visual {
    bottom: 5px;
    right: 5px;
  }
  .shake-img {
    max-width: 100px;
  }
  .wrapper {
    width: 150px;
    margin-left: -75px;
    bottom: 60px;
    height: 150px;
  }
  .wrapper .bonus {
    width: 80px;
    height: 82px;
    margin-left: -40px;
  }
  .surprises .fly {
    font-size: 14px;
  }
}
@media (max-width: 479.98px) {
  .md4-container {
    width: 100%;
  }
  .user-buttons {
    gap: 8px;
  }
  .user-buttons .ui-button {
    padding: 8px 12px;
  }
  .user-buttons .signup-btn {
    padding-right: 24px;
  }
}