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

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

body {
  font-family: 'Exo', sans-serif;
  background: linear-gradient(to bottom, #60021d, #1a0108);
  min-height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.header {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(80px, calc((100% - 1200px) / 2 + 80px));
  width: 100%;
}

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

.header-logo-icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.header-logo-icon img {
  width: 100%;
  height: 100%;
}

.header-logo-text {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

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

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

.header-burger {
  display: none;
  width: 35px;
  height: 14px;
  cursor: pointer;
}

.header-burger img {
  width: 100%;
  height: 100%;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

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

.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 808px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 545px;
  position: relative;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 46.881%, #000);
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 80px;
  display: flex;
  gap: 20px;
}

.hero-title {
  flex: 1;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
  color: #fffafa;
  text-transform: uppercase;
  min-width: 0;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}

.hero-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fffafa;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c6053c;
  border-radius: 100px;
  padding: 14.5px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  height: 52px;
}

.casinos-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: rgba(255,255,255,0.05);
  border: 3px solid #ff6d97;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casino-card > .casino-rating {
  display: flex;
}

.casino-card > .btn-primary {
  display: inline-flex;
}

.casino-bottom-row {
  display: none;
}

.casino-logo-wrap {
  background: #370110;
  border-radius: 10px;
  width: 180px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 10px;
  flex-shrink: 0;
}

.casino-logo-wrap img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
}

.casino-info {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.casino-features {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -0.3px;
}

.casino-payments {
  display: flex;
  gap: 6.4px;
}

.casino-payment-icon {
  width: 54.87px;
  height: 23.37px;
  border-radius: 4.28px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.casino-payment-icon img {
  position: absolute;
  max-width: none;
}

.casino-payment-icon img.pay-1 {
  width: 81.77%;
  height: 50.5%;
  left: 7.58%;
  top: 24.75%;
}

.casino-payment-icon img.pay-2 {
  width: 55.56%;
  height: 77.27%;
  left: 22.22%;
  top: 11.66%;
}

.casino-payment-icon img.pay-3 {
  width: 86.84%;
  height: 65.26%;
  left: 5.7%;
  top: 17.37%;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.casino-rating-number {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  letter-spacing: -0.6px;
}

.casino-rating-label {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  letter-spacing: -0.48px;
}

.casino-stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.section-header-arrow {
  width: 19px;
  flex-shrink: 0;
}

.section-header-arrow img {
  width: 100%;
  height: auto;
  display: block;
}

.section-header-arrow.right img {
  transform: rotate(180deg) scaleY(-1);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.section-label-line {
  width: 20px;
  flex-shrink: 0;
}

.section-label-line img {
  width: 100%;
  height: auto;
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  width: 100%;
}

.about-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(180deg) scaleY(-1);
}

.about-text {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}

.about-text p {
  margin-bottom: 5px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.about-stat {
  width: 252px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-stat-number {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -2.4px;
}

.about-stat-content {
  display: flex;
  gap: 7px;
}

.about-stat-dot {
  width: 6.67px;
  height: 6.67px;
  flex-shrink: 0;
}

.about-stat-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.14px;
}

.about-stat-line {
  width: 100%;
  height: 2px;
  background: #ff6d97;
}

.benefits-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16.67px;
  align-items: center;
  width: 100%;
}

.benefits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.benefit-card {
  background: #ff6d97;
  border-radius: 10px;
  padding: 20px;
  width: 458.33px;
  flex-shrink: 0;
}

.benefit-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.benefit-card-text {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.benefits-divider {
  width: 1.67px;
  height: 140px;
  flex-shrink: 0;
}

.benefits-divider img {
  width: 100%;
  height: 100%;
}

.benefits-middle-row {
  display: flex;
  align-items: center;
  gap: 46.67px;
}

.benefits-info-img {
  width: 285px;
  height: 145px;
}

.benefits-info-img img {
  width: 100%;
  height: 100%;
}

.benefits-sphere {
  width: 83.33px;
  height: 83.33px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.benefits-sphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.feature-card {
  flex: 1;
  border: 1px solid #ff6d97;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.6px;
}

.feature-text {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.48px;
}

.faq-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.faq-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.faq-item-question {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  min-width: 0;
}

.faq-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-item-icon img {
  width: 100%;
  height: 100%;
}

.faq-item-answer {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.2px;
  display: none;
}

.faq-item.active .faq-item-answer {
  display: block;
}

.footer {
  background: #000;
  width: 100%;
  padding: 30px max(80px, calc((100% - 1200px) / 2 + 80px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-logo-item {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-item img {
  max-width: 100%;
  max-height: 73px;
  object-fit: contain;
}

.footer-logo-item.small {
  width: 68px;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

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

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.policy-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  overflow: hidden;
}

.policy-title {
  font-size: 40px;
  font-weight: 600;
  width: 100%;
}

.policy-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
}

.policy-content p {
  margin-bottom: 5px;
}

.policy-content ul {
  list-style: disc;
  margin-bottom: 5px;
  padding-left: 27px;
}

.policy-content ul li {
  line-height: 1.5;
}

.catalog-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.catalog-section .section-title {
  text-align: left;
}

.catalog-text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.catalog-text p {
  margin-bottom: 5px;
}

.catalog-text p:last-child {
  margin-bottom: 0;
}

.catalog-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

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

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

.step-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ff6d97;
  border-left: 4px solid #ff6d97;
  border-radius: 10px;
  padding: 20px;
  min-width: 0;
}

.step-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.step-card-text {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-overlay.hidden {
  display: none;
}

.popup-age {
  background: #000;
  border: 2px solid #ff6d97;
  border-radius: 16px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup-age-icon {
  width: 60px;
  height: 60px;
}

.popup-age-icon img {
  width: 100%;
  height: 100%;
}

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

.popup-age-text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.popup-age-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

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

.popup-btn {
  border: none;
  cursor: pointer;
  padding: 14.5px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Exo', sans-serif;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popup-btn-primary {
  background: #c6053c;
  color: #fff;
}

.popup-btn-secondary {
  background: #fff;
  color: #1a0108;
}

.popup-cookie {
  background: #fff;
  border: 2px solid #ff6d97;
  border-radius: 16px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.popup-cookie-icon {
  width: 90px;
  height: 90px;
}

.popup-cookie-icon img {
  width: 100%;
  height: 100%;
}

.popup-cookie-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a0108;
  line-height: 1.2;
}

.popup-cookie-text {
  font-size: 14px;
  font-weight: 400;
  color: #1a0108;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  body {
    align-items: stretch;
  }

  .header {
    padding: 16px 20px;
    max-width: 100%;
  }

  .header-nav {
    display: none;
  }

  .header-burger {
    display: block;
  }

  .hero {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-bg {
    height: 317px;
  }

  .hero-content {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 40px;
  }

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

  .casinos-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 10px;
  }

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

  .casino-card > .casino-rating {
    display: none;
  }

  .casino-card > .btn-primary {
    display: none;
  }

  .casino-bottom-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .casino-bottom-row .btn-primary {
    flex: 1;
    min-width: 0;
  }

  .casino-info {
    width: 100%;
    max-width: 350px;
    align-items: center;
  }

  .casino-features {
    text-align: center;
  }

  .casino-payments {
    justify-content: center;
  }

  .about-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 20px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1;
  }

  .about-stats {
    flex-direction: column;
    gap: 10px;
  }

  .benefits-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 20px;
  }

  .benefits-row {
    flex-direction: column;
    gap: 16.67px;
  }

  .benefit-card {
    width: 100%;
  }

  .benefits-divider {
    display: none;
  }

  .benefits-middle-row {
    flex-direction: column;
    gap: 16.67px;
  }

  .benefits-info-img {
    display: none;
  }

  .benefits-list {
    width: 100%;
    max-width: 390px;
  }

  .features-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 20px;
  }

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

  .faq-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 20px;
  }

  .footer {
    max-width: 100%;
    padding: 30px 20px;
    gap: 20px;
  }

  .footer-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    max-width: 390px;
  }

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

  .footer-disclaimer {
    max-width: 390px;
  }

  .footer-bottom {
    max-width: 390px;
  }
}

.contact-section {
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.contact-image {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.contact-form-wrap {
  width: 580px;
  background: rgba(255, 109, 151, 0.3);
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-field {
  background: #410013;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.9px;
  line-height: 1.3;
  border: none;
  outline: none;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.7), inset 0 0 1px rgba(0, 0, 0, 0.16);
  font-family: 'Exo', sans-serif;
  width: 100%;
}

.contact-field::placeholder {
  color: #fff;
}

.contact-field.textarea {
  height: 90px;
  resize: none;
}

.contact-form .btn-primary {
  width: 100%;
}

.legal-notice {
  background: rgba(255, 109, 151, 0.3);
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 10px;
  padding: 24px;
  color: #fff;
  width: 1020px;
  max-width: 100%;
}

.legal-notice-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.96px;
  margin-bottom: 40px;
}

.legal-notice-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.48px;
  white-space: pre-wrap;
}

.legal-notice-text p {
  margin-bottom: 10px;
}

.legal-notice-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 30px;
  }

  .contact-section .section-title {
    font-size: 30px;
    line-height: 1;
  }

  .contact-row {
    flex-direction: column;
    align-items: center;
    max-width: 390px;
  }

  .contact-image {
    width: 100%;
    height: 200px;
    flex: none;
  }

  .contact-form-wrap {
    width: 100%;
    padding: 20px;
  }

  .legal-notice {
    width: 390px;
    max-width: 100%;
    padding: 10px;
    gap: 20px;
  }

  .legal-notice-title {
    font-size: 26px;
    letter-spacing: -0.78px;
    margin-bottom: 20px;
  }

  .policy-section {
    max-width: 100%;
    padding: 40px 20px;
  }

  .policy-title {
    font-size: 30px;
  }

  .catalog-section {
    max-width: 100%;
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog-section .section-title {
    font-size: 30px;
    line-height: 1;
  }

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

.btn-primary,
.popup-btn {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary:hover {
  background: #a40431;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(198, 5, 60, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(198, 5, 60, 0.35);
}

.popup-btn-primary:hover {
  background: #a40431;
  transform: translateY(-2px);
}

.popup-btn-secondary:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.popup-btn-decline:hover {
  background: #e896ab;
  transform: translateY(-2px);
}

.header-logo,
.header-nav a,
.footer-nav a,
.mobile-menu a,
.footer-logo-item {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-logo:hover,
.header-nav a:hover,
.footer-nav a:hover,
.mobile-menu a:hover {
  opacity: 0.7;
}

.footer-logo-item:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

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

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(255, 109, 151, 0.25);
  border-color: #ff8aac;
}

.casino-card:hover .casino-stars img {
  animation: starPulse 0.7s ease;
}

@keyframes starPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.feature-card,
.step-card,
.benefit-card,
.about-stat {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.step-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.about-stat:hover {
  transform: translateY(-4px);
}

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

.header-burger:hover {
  opacity: 0.7;
}

.faq-item {
  transition: opacity 0.2s ease;
}

.faq-item:hover .faq-item-question {
  opacity: 0.85;
}

.faq-item-question {
  transition: opacity 0.2s ease;
}

.faq-item-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-item-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item-icon img {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item-icon img {
  transform: rotate(180deg);
}

.contact-field {
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field:focus {
  background: #5a0019;
  box-shadow: 0 0 0 2px rgba(255, 109, 151, 0.5);
}

.popup-overlay {
  animation: popupFadeIn 0.25s ease;
}

.popup-age,
.popup-cookie {
  animation: popupScaleIn 0.3s ease;
}

@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popupScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
