.hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  animation: fadeInUp 1s ease forwards;
}

.hero__description {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero__image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: fadeInRight 1.3s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.button--centered {
  display: block;
  margin: 40px auto 0;
  text-align: center;
  max-width: 300px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6a6a, #ff9966);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: fadeInUp 1.5s ease forwards, glow 2s ease-in-out infinite alternate;
  animation-delay: 0.5s;
  opacity: 0;
}

.button--centered:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px rgba(255, 200, 200, 0.9),
    0 0 60px rgba(255, 120, 90, 0.7), 0 0 80px rgba(255, 90, 70, 0.6);
}

.button--secondary {
  background-color: transparent;
  border: 2px solid white;
}

.button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 60px 0;
  background-color: var(--surface);
}

.section--alt {
  background-color: var(--background);
}

.section__title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.section__subtitle {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: var(--primary-color);
}

.link {
  text-decoration: none;
  color: var(--primary-color);
}

.link:hover {
  color: var(--accent-dark);
}

.game-intro__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.game-intro__text {
  flex: 1;
  min-width: 300px;
}

.game-intro__image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.game-intro__image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.spec {
  background: var(--background);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.spec__title {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.casinos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.casino {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
  cursor: pointer;
}

.casino:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.casino__image img {
  width: 150px;
}

.casino__name {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.casino a {
  color: var(--text-color);
  text-decoration: none;
}

.steps {
  counter-reset: step-counter;
}

.step {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.pros-cons__list {
  flex: 1;
  min-width: 300px;
}

.pros-cons__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-cons__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.pros-cons__item {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pros-cons__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.faq__item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.faq__question {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--dark-background);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__answer {
  color: var(--text-light);
}

@media (max-width: 1200px) {
  .hero__description {
    font-size: 1.5rem;
  }
  .hero__title {
    font-size: 2.5rem;
  }

  .button--centered {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
}

@media (max-width: 930px) {
  .hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero__image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .game-intro__content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 430px) {
  .hero__title {
    font-size: 1.8rem;
  }
  .hero__description {
    font-size: 1.2rem;
  }
}
