.games-preview {
  padding: 64px 0;
  position: relative;
}

.games-preview-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.games-preview-card {
  background: linear-gradient(135deg, #0a0030 0%, #1a0845 40%, #2d1065 100%);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.games-preview-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  max-width: 660px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.games-preview-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 100px 80px;
  max-width: 563px;
  flex-shrink: 0;
}

.games-preview-content .section-title {
  margin-bottom: 16px;
}

.games-preview-subtitle {
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: white;
  line-height: normal;
  margin: 0 0 32px;
}

.games-preview-image {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 1;
}

.games-preview-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .games-preview-card {
    flex-direction: column;
  }

  .games-preview-content {
    padding: 48px 32px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .games-preview-content .section-title {
    font-size: 36px;
    text-align: center;
  }

  .games-preview-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .games-preview-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 0 32px 32px;
  }
}

@media (max-width: 480px) {
  .games-preview-content {
    padding: 32px 24px;
  }

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

  .games-preview-subtitle {
    font-size: 16px;
  }

  .games-preview-image {
    padding: 0 24px 24px;
  }
}
