/* style/slot-games-theme-showcase.css */

/* Biến CSS */
:root {
  --page-slot-games-theme-showcase-primary-color: #E44D26;
  --page-slot-games-theme-showcase-secondary-color: #333333;
  --page-slot-games-theme-showcase-light-text-color: #ffffff;
  --page-slot-games-theme-showcase-dark-text-color: #333333;
  --page-slot-games-theme-showcase-light-bg-color: #f8f8f8;
  --page-slot-games-theme-showcase-dark-bg-color: #1a1a1a; /* Assuming dark-bg-1 from shared.css is dark */
  --page-slot-games-theme-showcase-card-bg-light: #ffffff;
  --page-slot-games-theme-showcase-card-border-color: #e0e0e0;
}

.page-slot-games-theme-showcase {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-slot-games-theme-showcase-light-text-color); /* Default text color for dark body bg */
  background-color: var(--page-slot-games-theme-showcase-dark-bg-color); /* Ensure content has a background */
}

/* Global sections styling */
.page-slot-games-theme-showcase__content-section {
  padding: 60px 20px;
  text-align: center;
}

.page-slot-games-theme-showcase__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-games-theme-showcase__section-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--page-slot-games-theme-showcase-light-text-color);
  font-weight: 700;
}

.page-slot-games-theme-showcase__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Color contrast specific styles */
.page-slot-games-theme-showcase__dark-section {
  background-color: var(--page-slot-games-theme-showcase-dark-bg-color);
  color: var(--page-slot-games-theme-showcase-light-text-color);
}

.page-slot-games-theme-showcase__dark-section .page-slot-games-theme-showcase__section-title {
  color: var(--page-slot-games-theme-showcase-light-text-color);
}

.page-slot-games-theme-showcase__light-bg {
  background-color: var(--page-slot-games-theme-showcase-light-bg-color);
  color: var(--page-slot-games-theme-showcase-dark-text-color);
}

.page-slot-games-theme-showcase__light-bg .page-slot-games-theme-showcase__section-title {
  color: var(--page-slot-games-theme-showcase-secondary-color);
}

.page-slot-games-theme-showcase__light-bg .page-slot-games-theme-showcase__section-description {
  color: var(--page-slot-games-theme-showcase-dark-text-color);
}

/* Card specific contrast fix */
.page-slot-games-theme-showcase__card {
  background-color: var(--page-slot-games-theme-showcase-card-bg-light);
  color: var(--page-slot-games-theme-showcase-dark-text-color);
  border: 1px solid var(--page-slot-games-theme-showcase-card-border-color);
}

/* Hero Section */
.page-slot-games-theme-showcase__hero-section {
  position: relative;
  padding: 120px 20px 60px; /* Adjusted padding-top for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-color: var(--page-slot-games-theme-showcase-dark-bg-color);
  color: var(--page-slot-games-theme-showcase-light-text-color);
}

.page-slot-games-theme-showcase__hero-container {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-slot-games-theme-showcase__main-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-slot-games-theme-showcase-light-text-color);
}

.page-slot-games-theme-showcase__hero-description {
  font-size: 1.25em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-slot-games-theme-showcase__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-theme-showcase__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-theme-showcase__btn-primary {
  background-color: var(--page-slot-games-theme-showcase-primary-color);
  color: var(--page-slot-games-theme-showcase-light-text-color);
  border: 2px solid var(--page-slot-games-theme-showcase-primary-color);
}

.page-slot-games-theme-showcase__btn-primary:hover {
  background-color: darken(var(--page-slot-games-theme-showcase-primary-color), 10%);
  transform: translateY(-2px);
}

.page-slot-games-theme-showcase__btn-secondary {
  background-color: transparent;
  color: var(--page-slot-games-theme-showcase-primary-color);
  border: 2px solid var(--page-slot-games-theme-showcase-primary-color);
}

.page-slot-games-theme-showcase__btn-secondary:hover {
  background-color: var(--page-slot-games-theme-showcase-primary-color);
  color: var(--page-slot-games-theme-showcase-light-text-color);
  transform: translateY(-2px);
}

.page-slot-games-theme-showcase__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-slot-games-theme-showcase__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  filter: grayscale(50%); /* Use grayscale for background image, not for color change */
}

/* Features Grid */
.page-slot-games-theme-showcase__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-theme-showcase__feature-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-slot-games-theme-showcase__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games-theme-showcase__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-theme-showcase__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--page-slot-games-theme-showcase-secondary-color);
  font-weight: 600;
}

.page-slot-games-theme-showcase__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--page-slot-games-theme-showcase-dark-text-color);
}

/* Categories Grid */
.page-slot-games-theme-showcase__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-theme-showcase__category-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-slot-games-theme-showcase__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games-theme-showcase__category-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-theme-showcase__category-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--page-slot-games-theme-showcase-secondary-color);
  font-weight: 600;
}

.page-slot-games-theme-showcase__category-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--page-slot-games-theme-showcase-dark-text-color);
}

/* Guide List */
.page-slot-games-theme-showcase__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left;
}

.page-slot-games-theme-showcase__guide-item {
  background-color: var(--page-slot-games-theme-showcase-card-bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-slot-games-theme-showcase__guide-item:hover {
  transform: translateY(-5px);
}

.page-slot-games-theme-showcase__guide-title {
  font-size: 1.5em;
  color: var(--page-slot-games-theme-showcase-primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games-theme-showcase__guide-item p {
  color: var(--page-slot-games-theme-showcase-dark-text-color);
  font-size: 1em;
}

.page-slot-games-theme-showcase__cta-buttons--center {
  margin-top: 40px;
}

/* Tips List */
.page-slot-games-theme-showcase__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-slot-games-theme-showcase__tips-item {
  background-color: var(--page-slot-games-theme-showcase-dark-bg-color);
  color: var(--page-slot-games-theme-showcase-light-text-color);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--page-slot-games-theme-showcase-primary-color);
  transition: transform 0.2s ease;
}

.page-slot-games-theme-showcase__tips-item:hover {
  transform: translateX(5px);
}

.page-slot-games-theme-showcase__tips-item strong {
  color: var(--page-slot-games-theme-showcase-primary-color);
}

/* Other Games Grid */
.page-slot-games-theme-showcase__other-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-theme-showcase__other-game-card {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-slot-games-theme-showcase__other-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games-theme-showcase__other-game-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-theme-showcase__other-game-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--page-slot-games-theme-showcase-secondary-color);
  font-weight: 600;
}

.page-slot-games-theme-showcase__other-game-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--page-slot-games-theme-showcase-dark-text-color);
  margin-bottom: 20px;
}

.page-slot-games-theme-showcase__btn-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--page-slot-games-theme-showcase-primary-color);
  color: var(--page-slot-games-theme-showcase-light-text-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-slot-games-theme-showcase__btn-link:hover {
  background-color: darken(var(--page-slot-games-theme-showcase-primary-color), 10%);
}

/* Responsibility List */
.page-slot-games-theme-showcase__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-theme-showcase__responsibility-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--page-slot-games-theme-showcase-light-text-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 4px solid var(--page-slot-games-theme-showcase-primary-color);
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-theme-showcase__main-title {
    font-size: 3em;
  }
  .page-slot-games-theme-showcase__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-theme-showcase__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 40px;
  }
  .page-slot-games-theme-showcase__main-title {
    font-size: 2.5em;
  }
  .page-slot-games-theme-showcase__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games-theme-showcase__section-title {
    font-size: 2em;
  }
  .page-slot-games-theme-showcase__section-description {
    font-size: 1em;
  }
  .page-slot-games-theme-showcase__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-theme-showcase__cta-button {
    width: 100%;
  }
  .page-slot-games-theme-showcase__content-section {
    padding: 40px 15px;
  }
  .page-slot-games-theme-showcase__features-grid,
  .page-slot-games-theme-showcase__categories-grid,
  .page-slot-games-theme-showcase__other-games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-theme-showcase__feature-card,
  .page-slot-games-theme-showcase__category-card,
  .page-slot-games-theme-showcase__guide-item,
  .page-slot-games-theme-showcase__other-game-card {
    padding: 20px;
    text-align: center;
  }
  .page-slot-games-theme-showcase__feature-title,
  .page-slot-games-theme-showcase__category-title,
  .page-slot-games-theme-showcase__guide-title,
  .page-slot-games-theme-showcase__other-game-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  .page-slot-games-theme-showcase__feature-icon,
  .page-slot-games-theme-showcase__category-image,
  .page-slot-games-theme-showcase__other-game-image {
    max-width: 200px;
  }
  .page-slot-games-theme-showcase p,
  .page-slot-games-theme-showcase li,
  .page-slot-games-theme-showcase__feature-text,
  .page-slot-games-theme-showcase__category-text,
  .page-slot-games-theme-showcase__other-game-text {
    font-size: 0.95em;
  }
  .page-slot-games-theme-showcase img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games-theme-showcase__section,
  .page-slot-games-theme-showcase__card,
  .page-slot-games-theme-showcase__container,
  .page-slot-games-theme-showcase__hero-container,
  .page-slot-games-theme-showcase__content-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-theme-showcase__main-title {
    font-size: 2em;
  }
  .page-slot-games-theme-showcase__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-theme-showcase__hero-description {
    font-size: 1em;
  }
  .page-slot-games-theme-showcase__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}