body {
  background-color: #B71C1C;
  color: #FFF5E1;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

.page-content.page-slot-games {
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 10px 15px;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px;
  text-align: center;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-content {
  max-width: 900px;
}

.page-slot-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F4D34D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-slot-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-slot-games__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: 2px solid #F2B544;
}

.page-slot-games__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-slot-games__btn--secondary {
  background-color: #D32F2F;
  color: #FFF5E1;
  border: 2px solid #F2B544;
}

.page-slot-games__btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-slot-games__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #7A0E0E;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-slot-games__section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #F4D34D;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #F2B544;
  border-radius: 2px;
}

.page-slot-games__feature-grid, .page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__feature-card, .page-slot-games__game-card {
  background-color: #D32F2F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #E53935;
}

.page-slot-games__feature-icon, .page-slot-games__game-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image size */
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games__feature-icon {
  aspect-ratio: 3/2;
}

.page-slot-games__game-image {
  aspect-ratio: 3/2;
}

.page-slot-games__feature-title, .page-slot-games__game-title {
  font-size: 1.5rem;
  color: #FFCC66;
  margin-bottom: 15px;
}

.page-slot-games__feature-text, .page-slot-games__game-text {
  font-size: 1rem;
  color: #FFF5E1;
  margin-bottom: 20px;
}

.page-slot-games__game-btn {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #F2B544;
}

.page-slot-games__game-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-slot-games__promotions-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

.page-slot-games__promotion-content {
  max-width: 800px;
  text-align: center;
}

.page-slot-games__promotion-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-slot-games__promotion-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

.page-slot-games__faq-item {
  background-color: #D32F2F;
  border: 1px solid #E53935;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-slot-games__faq-question {
  font-size: 1.25rem;
  color: #FFCC66;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slot-games__faq-answer {
  font-size: 1rem;
  color: #FFF5E1;
  margin-bottom: 0;
}

.page-slot-games__btn--faq {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-slot-games__hero-section {
    flex-direction: row;
    text-align: left;
    gap: 40px;
    padding: 30px 0 60px;
  }

  .page-slot-games__hero-image-wrapper {
    flex: 1;
    margin-bottom: 0;
    max-width: 50%;
  }

  .page-slot-games__hero-content {
    flex: 1;
    max-width: 50%;
  }

  .page-slot-games__hero-actions {
    justify-content: flex-start;
  }

  .page-slot-games__promotions-section {
    flex-direction: row;
    text-align: left;
    gap: 60px;
  }

  .page-slot-games__promotion-content {
    flex: 1;
    text-align: left;
  }

  .page-slot-games__promotion-image-wrapper {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-image,
  .page-slot-games__feature-icon,
  .page-slot-games__game-image,
  .page-slot-games__promotion-image {
    max-width: 100%;
    height: auto;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-slot-games__btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 549px) {
  .page-slot-games__hero-section {
    padding: 10px 0 30px;
  }

  .page-slot-games__section {
    padding: 40px 0;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-slot-games__feature-grid, .page-slot-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__feature-card, .page-slot-games__game-card {
    padding: 20px;
  }

  .page-slot-games__faq-item {
    padding: 15px 20px;
  }

  .page-slot-games__faq-question {
    font-size: 1.1rem;
  }

  .page-slot-games__description {
    font-size: 1rem;
  }
}