@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&display=swap');

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

body {
  font-family: 'Sora', sans-serif;
  background-color: #100e11;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

.mobile-nav {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 90px;
  overflow: hidden;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  width: 40px;
  height: 40px;
}

.header-logo-text {
  font-size: 32px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

.header-logo-text span {
  color: #238dfa;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 14px 40px;
  border-radius: 100px;
}

.header-nav a {
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  color: #fff;
}

.burger-menu {
  display: none;
  width: 32px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.burger-menu img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
  position: relative;
}

.hero-glow-right {
  position: absolute;
  top: 0;
  right: -40px;
  width: 371px;
  height: 322px;
  pointer-events: none;
}

.hero-glow-right img {
  position: absolute;
  inset: -41.41% -35.94%;
  width: 171.88%;
  height: 182.82%;
  max-width: none;
}

.hero-glow-left {
  position: absolute;
  top: 110px;
  left: -161px;
  width: 371px;
  height: 322px;
  pointer-events: none;
}

.hero-glow-left img {
  position: absolute;
  inset: -41.41% -35.94%;
  width: 171.88%;
  height: 182.82%;
  max-width: none;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
}

.hero-text {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.48px;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9px;
  background-color: #28d3fa;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  width: 155px;
  position: relative;
  z-index: 1;
}

.marquee-bar {
  background-color: #135077;
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-anim {
  display: flex;
  flex-shrink: 0;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-bar:hover .marquee-anim {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-bar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.marquee-bar p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
}

.casinos {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.casinos-wrapper {
  background-color: rgba(40, 212, 250, 0.1);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casinos-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.casinos-info p {
  flex: 1;
  min-width: 0;
}

.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-card {
  background-color: #000;
  border: 2px solid #28d3fa;
  border-radius: 10px;
  padding: 20px 19px;
  filter: drop-shadow(0px 0px 5px rgba(250, 40, 137, 0.4));
}

.casino-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.casino-logo-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid #3928ff;
  border-radius: 10px;
  width: 171px;
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.casino-logo-box img {
  max-width: 139px;
  max-height: 76px;
  object-fit: contain;
}

.casino-bonus {
  font-size: 18px;
  font-weight: 700;
  width: 220px;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 160px;
}

.casino-rating-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-rating-score {
  font-size: 42px;
  font-weight: 700;
  color: #28d3fa;
  letter-spacing: -3.36px;
  line-height: 1;
}

.casino-rating-stars {
  width: 119px;
  height: 23px;
}

.casino-rating-reviews {
  font-size: 14px;
  font-weight: 700;
  color: #e8e8e8;
}

.about {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 60px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.about-image {
  width: 400px;
  flex-shrink: 0;
  align-self: stretch;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-label {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.section-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.section-text p + p {
  margin-top: 10px;
}

.advantages {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.advantages-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.advantages-header-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantages-header-image {
  width: 400px;
  height: 200px;
  flex-shrink: 0;
}

.advantages-header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.advantage-divider {
  width: 100%;
  height: 1px;
  overflow: visible;
}

.advantage-divider img {
  display: block;
  width: 100%;
  height: 1px;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.advantage-item-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.advantage-item-text {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.32px;
  line-height: 1.5;
}

.promotion {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 60px 100px;
  position: relative;
  overflow: hidden;
}

.promotion-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promotion-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.promotion-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promotion-text {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.promotion-text p + p {
  margin-top: 10px;
}

.faq {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 100px;
  overflow: hidden;
}

.faq-row {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

.faq-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 14px 20px;
  border-radius: 12px;
  text-transform: capitalize;
}

.faq-card--dark {
  background-color: rgba(40, 212, 250, 0.1);
  color: #fff;
}

.faq-card--light {
  background-color: #28d3fa;
  color: #000;
}

.faq-card-title {
  font-size: 20px;
  font-weight: 600;
}

.faq-card-text {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.32px;
  line-height: 1.5;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.footer {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
  position: relative;
}

.footer-glow {
  position: absolute;
  top: -80px;
  left: 130px;
  width: 936px;
  height: 161px;
  pointer-events: none;
}

.footer-glow img {
  position: absolute;
  inset: -82.9% -14.25%;
  width: 128.5%;
  height: 265.8%;
  max-width: none;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-badge {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
}

.footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-partners {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 40px;
}

.footer-partner {
  flex-shrink: 0;
}

.footer-partner img {
  height: 40px;
  width: 140px;
  object-fit: contain;
}

.footer-partner--tall img {
  height: 45px;
}

.footer-partner--short img {
  height: 38px;
}

.footer-partner--small img {
  height: 40px;
  width: 60px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.footer-nav a {
  white-space: nowrap;
}

.footer-disclaimer {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.footer-line {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
}

.footer-line img {
  display: block;
  width: 100%;
  height: 1px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
  position: relative;
}

.about-hero-title {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
}

.about-hero-text {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.48px;
  position: relative;
  z-index: 1;
}

.about-info {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.about-info-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.about-info-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-info-image {
  width: 400px;
  height: 339px;
  flex-shrink: 0;
}

.about-info-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefits {
  background-color: rgba(40, 212, 250, 0.1);
  border: 2px solid #3928ff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.benefits-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.benefits-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.benefit-card {
  flex: 1;
  min-width: 0;
  backdrop-filter: blur(5.833px);
  background-color: rgba(3, 0, 0, 0.12);
  border: 0.833px solid #3928ff;
  border-radius: 35px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-number {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  background: radial-gradient(circle at center, rgba(3,0,0,0.05) 0%, #041416 34.6%, #082c33 42.8%, #0d444f 51%, #115c6c 59.1%, #167488 67.3%, #1fa4c1 83.7%, #28d4fa 100%);
}

.benefit-card-title {
  font-size: 16px;
  font-weight: 600;
}

.benefit-card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-arrow {
  display: flex;
  justify-content: flex-end;
}

.benefit-arrow img {
  width: 15px;
  height: 15px;
}

.about-advantages {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.about-advantages-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.about-advantages-image {
  width: 400px;
  height: 200px;
  flex-shrink: 0;
}

.about-advantages-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-advantages-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-transform: capitalize;
}

.testimonials {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 60px 100px;
  overflow: hidden;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.testimonials-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.testimonial-card {
  flex: 1;
  min-width: 0;
  background-color: rgba(40, 212, 250, 0.1);
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.54px;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.48px;
}

.policy-section {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.policy-card {
  background-color: rgba(40, 212, 250, 0.1);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-card h1 {
  font-size: 36px;
  font-weight: 700;
}

.policy-card-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.policy-card-body p {
  margin-bottom: 10px;
}

.policy-card-body p:last-child {
  margin-bottom: 0;
}

.policy-card-body ul {
  list-style: disc;
  margin-bottom: 10px;
  padding-left: 24px;
}

.policy-card-body li {
  margin-bottom: 0;
}

.catalog-section {
  background-color: #000;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  overflow: hidden;
}

.catalog-section .section-label,
.catalog-section .section-title,
.catalog-section .section-text {
  width: 100%;
}

.catalog-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.catalog-card {
  flex: 1;
  min-width: 0;
  background-color: #000;
  border: 2px solid #28d3fa;
  border-radius: 10px;
  padding: 20px 19px;
  filter: drop-shadow(0px 0px 5px rgba(250, 40, 137, 0.4));
}

.catalog-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.catalog-card-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.catalog-card .btn {
  width: 100%;
}

.header,
.hero,
.casinos,
.about,
.advantages,
.faq,
.footer,
.about-hero,
.about-info,
.about-advantages,
.testimonials,
.policy-section,
.catalog-section,
.promotion,
.marquee-bar {
  max-width: none;
}

.header,
.hero,
.casinos,
.about,
.advantages,
.faq,
.footer,
.about-hero,
.about-info,
.about-advantages,
.testimonials,
.policy-section,
.catalog-section,
.promotion {
  padding-left: max(20px, calc((100vw - 1020px) / 2));
  padding-right: max(20px, calc((100vw - 1020px) / 2));
}

.promotion-bg {
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }

  .header-logo-text {
    font-size: 26px;
  }

  .header-nav {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #000;
    width: 100%;
    max-width: 1200px;
    border-bottom: 1px solid rgba(232, 232, 237, 0.08);
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
  }

  .hero {
    padding: 40px 20px;
    gap: 20px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .hero-glow-right {
    right: -100px;
    top: -44px;
  }

  .marquee-bar {
    gap: 20px;
  }

  .casinos {
    padding: 40px 20px;
  }

  .casinos-wrapper {
    max-width: 390px;
  }

  .casinos-info {
    flex-direction: column;
  }

  .casino-card-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .casino-bonus {
    width: 100%;
    text-align: center;
  }

  .casino-rating {
    width: 160px;
    align-items: center;
  }

  .casino-rating-inner {
    align-items: center;
  }

  .casino-rating-score {
    text-align: center;
  }

  .casino-rating-reviews {
    text-align: center;
  }

  .casino-card .btn {
    width: 100%;
  }

  .casino-card-inner .casino-bonus {
    text-align: center;
  }

  .about {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .about-image {
    width: 276px;
    height: 334px;
    align-self: center;
  }

  .about-content {
    width: 100%;
    max-width: 390px;
  }

  .section-title {
    font-size: 28px;
  }

  .advantages {
    padding: 40px 20px;
  }

  .advantages-header {
    flex-direction: column;
  }

  .advantages-header-image {
    width: 100%;
    max-width: 400px;
  }

  .promotion {
    padding: 40px 20px;
    gap: 20px;
  }

  .promotion-title {
    font-size: 28px;
  }

  .faq {
    padding: 40px 20px;
    gap: 20px;
  }

  .faq-row {
    flex-direction: column;
  }

  .footer {
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-glow {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-badge {
    width: 79px;
    height: 79px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    width: 100%;
    max-width: 390px;
  }

  .about-hero {
    padding: 40px 20px;
    gap: 20px;
  }

  .about-hero-title {
    font-size: 30px;
    letter-spacing: -0.9px;
  }

  .about-info {
    padding: 40px 20px;
    gap: 20px;
  }

  .about-info-row {
    flex-direction: column;
  }

  .about-info-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
  }

  .benefits {
    padding: 10px;
  }

  .benefits-grid {
    flex-direction: column;
  }

  .about-advantages {
    padding: 40px 20px;
  }

  .about-advantages-header {
    flex-direction: column;
  }

  .about-advantages-image {
    width: 100%;
    max-width: 400px;
  }

  .testimonials {
    padding: 40px 20px;
    gap: 20px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-row {
    flex-direction: column;
  }

  .testimonial-card {
    width: 100%;
    max-width: 390px;
  }

  .policy-section {
    padding: 40px 20px;
  }

  .policy-card {
    padding: 20px;
  }

  .policy-card h1 {
    font-size: 28px;
  }

  .catalog-section {
    padding: 40px 20px;
  }

  .catalog-grid {
    flex-direction: column;
  }

  .catalog-card-info {
    flex-direction: column;
    align-items: center;
  }

  .catalog-card-info .casino-bonus {
    width: 100%;
    text-align: center;
  }

  .catalog-card-info .casino-rating {
    align-items: center;
  }

  .catalog-card-info .casino-rating-inner {
    align-items: center;
  }

  .catalog-card-info .casino-rating-score {
    text-align: center;
  }

  .catalog-card-info .casino-rating-reviews {
    text-align: center;
  }
}

.age-popup,
.cookies-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-popup.active,
.cookies-popup.active {
  display: flex;
}

.age-popup-card {
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 0 1px rgba(40, 212, 250, 0.6);
}

.age-popup-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.age-popup-badge {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.age-popup-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.age-popup-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.age-popup-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.age-popup-body ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.age-popup-body li {
  padding-left: 4px;
}

.age-popup-buttons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.age-popup-btn {
  border: none;
  border-radius: 9px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
}

.age-popup-btn--accept {
  background-color: #28d3fa;
}

.age-popup-btn--decline {
  background-color: #b3ecf7;
}

.cookies-popup-card {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 0 1px rgba(232, 232, 237, 0.08);
}

.cookies-popup-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cookies-popup-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.cookies-popup-buttons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.cookies-popup-btn {
  border: none;
  border-radius: 9px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
}

.cookies-popup-btn--accept {
  background-color: #28d3fa;
}

.cookies-popup-btn--decline {
  background-color: #135077;
  color: #fff;
}

@media (max-width: 768px) {
  .age-popup-card,
  .cookies-popup-card {
    padding: 22px;
    border-radius: 10px;
  }

  .age-popup-badge {
    width: 56px;
    height: 56px;
  }

  .age-popup-title {
    font-size: 22px;
  }

  .cookies-popup-title {
    font-size: 26px;
  }

  .age-popup-body,
  .cookies-popup-text {
    font-size: 15px;
  }

  .age-popup-btn,
  .cookies-popup-btn {
    padding: 12px 22px;
  }
}

/* Hover effects */
.btn,
.age-popup-btn,
.cookies-popup-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.age-popup-btn:hover,
.cookies-popup-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 18px rgba(40, 212, 250, 0.35);
}

.btn:active,
.age-popup-btn:active,
.cookies-popup-btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.header-nav a,
.mobile-nav a,
.footer-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.header-nav a::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #28d3fa;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.header-nav a:hover,
.mobile-nav a:hover,
.footer-nav a:hover {
  color: #28d3fa;
}

.header-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
}

.header-logo {
  transition: opacity 0.2s ease;
}

.header-logo:hover {
  opacity: 0.85;
}

.casino-card,
.catalog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.casino-card:hover,
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(40, 212, 250, 0.25);
}

.casino-logo-box img,
.benefit-card,
.testimonial-card,
.faq-card,
.policy-card,
.advantage-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(40, 212, 250, 0.18);
}

.faq-card:hover {
  transform: translateY(-3px);
}

.advantage-item:hover .advantage-item-title {
  color: #28d3fa;
}

.advantage-item-title {
  transition: color 0.2s ease;
}

.footer-partner {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-partner:hover {
  transform: scale(1.06);
  opacity: 0.85;
}

.burger-menu {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.burger-menu:hover {
  opacity: 0.8;
}

.burger-menu:active {
  transform: scale(0.95);
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-anim {
    animation: none;
  }

  .btn:hover,
  .age-popup-btn:hover,
  .cookies-popup-btn:hover,
  .casino-card:hover,
  .catalog-card:hover,
  .benefit-card:hover,
  .testimonial-card:hover,
  .faq-card:hover,
  .footer-partner:hover {
    transform: none;
  }
}
