/* style/game-reviews-slot-riches.css */

/* Biến CSS */
:root {
  --page-game-reviews-slot-riches-primary-color: #1A202C;
  --page-game-reviews-slot-riches-secondary-color: #FFD700;
  --page-game-reviews-slot-riches-text-light: #F7FAFC; /* Màu chữ sáng cho nền tối */
  --page-game-reviews-slot-riches-text-dark: #2D3748; /* Màu chữ tối cho nền sáng */
  --page-game-reviews-slot-riches-background-light: #EDF2F7; /* Nền sáng */
  --page-game-reviews-slot-riches-background-dark: #2D3748; /* Nền tối */
  --page-game-reviews-slot-riches-accent-color: #E64A19; /* Màu nhấn phụ */
}

.page-game-reviews-slot-riches {
  font-family: 'Arial', sans-serif;
  color: var(--page-game-reviews-slot-riches-text-dark);
  line-height: 1.6;
  background-color: var(--page-game-reviews-slot-riches-background-light);
}

.page-game-reviews-slot-riches__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-slot-riches__hero {
  background: linear-gradient(135deg, var(--page-game-reviews-slot-riches-primary-color) 0%, #3a475d 100%);
  color: var(--page-game-reviews-slot-riches-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-slot-riches__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-game-reviews-slot-riches-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-reviews-slot-riches__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CBD5E0;
}

.page-game-reviews-slot-riches__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-reviews-slot-riches__button--primary {
  background-color: var(--page-game-reviews-slot-riches-secondary-color);
  color: var(--page-game-reviews-slot-riches-primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-slot-riches__button--primary:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-slot-riches__button--secondary {
  background-color: transparent;
  color: var(--page-game-reviews-slot-riches-secondary-color);
  border: 2px solid var(--page-game-reviews-slot-riches-secondary-color);
  margin-left: 20px;
}

.page-game-reviews-slot-riches__button--secondary:hover {
  background-color: var(--page-game-reviews-slot-riches-secondary-color);
  color: var(--page-game-reviews-slot-riches-primary-color);
  transform: translateY(-3px);
}

.page-game-reviews-slot-riches__section {
  padding: 60px 0;
  background-color: var(--page-game-reviews-slot-riches-background-light);
}

.page-game-reviews-slot-riches__section--dark {
  background-color: var(--page-game-reviews-slot-riches-primary-color);
  color: var(--page-game-reviews-slot-riches-text-light);
}

.page-game-reviews-slot-riches__section-title {
  font-size: 2.5em;
  color: var(--page-game-reviews-slot-riches-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-slot-riches__section--dark .page-game-reviews-slot-riches__section-title {
  color: var(--page-game-reviews-slot-riches-secondary-color);
}

.page-game-reviews-slot-riches__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-game-reviews-slot-riches-secondary-color);
  border-radius: 2px;
}

.page-game-reviews-slot-riches__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  color: #718096;
}

.page-game-reviews-slot-riches__section--dark .page-game-reviews-slot-riches__section-subtitle {
  color: #CBD5E0;
}

.page-game-reviews-slot-riches__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-riches__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-riches__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-slot-riches__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-reviews-slot-riches__feature-heading {
  font-size: 1.5em;
  color: var(--page-game-reviews-slot-riches-primary-color);
  margin-bottom: 15px;
}

.page-game-reviews-slot-riches__feature-text {
  color: var(--page-game-reviews-slot-riches-text-dark);
  font-size: 1em;
}

.page-game-reviews-slot-riches__game-review {
  display: flex;
  flex-direction: column;
  background-color: #2D3748; /* Nền tối hơn cho phần đánh giá game */
  border-radius: 12px;
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--page-game-reviews-slot-riches-text-light);
}

.page-game-reviews-slot-riches__game-review:last-child {
  margin-bottom: 0;
}

.page-game-reviews-slot-riches__game-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 4px solid var(--page-game-reviews-slot-riches-secondary-color);
}

.page-game-reviews-slot-riches__game-details {
  padding: 30px;
}

.page-game-reviews-slot-riches__game-title {
  font-size: 2em;
  color: var(--page-game-reviews-slot-riches-secondary-color);
  margin-bottom: 15px;
}

.page-game-reviews-slot-riches__game-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CBD5E0;
}

.page-game-reviews-slot-riches__game-specs {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-reviews-slot-riches__game-specs li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #A0AEC0;
}

.page-game-reviews-slot-riches__game-specs li strong {
  color: var(--page-game-reviews-slot-riches-text-light);
}

.page-game-reviews-slot-riches__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-reviews-slot-riches__tip-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--page-game-reviews-slot-riches-secondary-color);
}

.page-game-reviews-slot-riches__tip-heading {
  font-size: 1.6em;
  color: var(--page-game-reviews-slot-riches-primary-color);
  margin-bottom: 15px;
}

.page-game-reviews-slot-riches__tip-text {
  color: var(--page-game-reviews-slot-riches-text-dark);
}

.page-game-reviews-slot-riches__cta-section {
  background: linear-gradient(90deg, var(--page-game-reviews-slot-riches-primary-color) 0%, #3a475d 100%);
  color: var(--page-game-reviews-slot-riches-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-slot-riches__cta-section .page-game-reviews-slot-riches__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-reviews-slot-riches__cta-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-riches__cta-content {
  max-width: 800px;
}

.page-game-reviews-slot-riches__cta-title {
  font-size: 2.8em;
  color: var(--page-game-reviews-slot-riches-secondary-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-game-reviews-slot-riches__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #CBD5E0;
}

.page-game-reviews-slot-riches__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-game-reviews-slot-riches-text-dark);
}

.page-game-reviews-slot-riches__section--dark .page-game-reviews-slot-riches__paragraph {
  color: #CBD5E0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-reviews-slot-riches__game-review {
    flex-direction: row;
    text-align: left;
  }

  .page-game-reviews-slot-riches__game-image {
    width: 40%;
    height: auto;
    border-radius: 12px 0 0 12px;
    border-bottom: none;
    border-right: 4px solid var(--page-game-reviews-slot-riches-secondary-color);
  }

  .page-game-reviews-slot-riches__game-details {
    width: 60%;
    padding: 40px;
  }

  .page-game-reviews-slot-riches__cta-section .page-game-reviews-slot-riches__container {
    flex-direction: row;
    text-align: left;
    gap: 50px;
  }

  .page-game-reviews-slot-riches__cta-image {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .page-game-reviews-slot-riches__cta-content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .page-game-reviews-slot-riches__hero-title {
    font-size: 2.2em;
  }

  .page-game-reviews-slot-riches__hero-description,
  .page-game-reviews-slot-riches__cta-description {
    font-size: 1em;
  }

  .page-game-reviews-slot-riches__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-slot-riches__button {
    padding: 12px 20px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 15px;
  }

  .page-game-reviews-slot-riches__button--secondary {
    margin-left: 0;
  }

  .page-game-reviews-slot-riches__game-title {
    font-size: 1.6em;
  }

  .page-game-reviews-slot-riches__tip-heading {
    font-size: 1.3em;
  }

  .page-game-reviews-slot-riches__cta-title {
    font-size: 2em;
  }

  .page-game-reviews-slot-riches__cta-image {
    margin-bottom: 30px;
  }
}