/* style/slots.css */

/* General page styling */
.page-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #000000; /* Main background color */
  line-height: 1.6;
}

.page-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-slots__section-title .highlight {
  color: #FFFFFF;
}

.page-slots__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #B0B0B0; /* Slightly darker grey for body text */
}

/* Hero Section */
.page-slots__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-slots__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-slots__hero-title {
  font-size: 4em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.page-slots__hero-title .highlight {
  color: #FFFFFF;
}

.page-slots__hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-slots__hero-btn,
.page-slots__cta-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slots__hero-btn:hover,
.page-slots__cta-btn:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-slots__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(50%);
}

/* Introduction Section */
.page-slots__introduction {
  padding: 60px 0;
  background-color: #111111;
}

/* Game Categories Section */
.page-slots__game-categories {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-slots__category-item {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-slots__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.page-slots__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-slots__category-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slots__category-description {
  font-size: 1em;
  color: #B0B0B0;
}

/* Why Choose Section */
.page-slots__why-choose {
  padding: 60px 0;
  background-color: #111111;
}

.page-slots__feature-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-slots__feature-list li {
  background-color: #1A1A1A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-slots__list-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

.page-slots__feature-list li .highlight {
  color: #FFD700;
}

/* How To Play Section */
.page-slots__how-to-play {
  padding: 60px 0;
  background-color: #000000;
  text-align: center;
}

.page-slots__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-slots__step-list li {
  background-color: #1A1A1A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-slots__step-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: -5px;
  top: -15px;
  background-color: #FFD700;
  color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-slots__step-list li .highlight {
  color: #FFD700;
}

.page-slots__cta-btn {
  margin-top: 30px;
}

/* Responsible Gaming Section */
.page-slots__responsible-gaming {
  padding: 60px 0;
  background-color: #111111;
}

/* Detail Pages Section */
.page-slots__detail-pages {
  padding: 60px 0;
  background-color: #000000;
}

.page-slots__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots__detail-item {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots__detail-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slots__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slots__detail-title a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-slots__detail-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots__detail-btn {
  display: inline-block;
  background-color: #333333;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FFD700;
  text-align: center;
}

.page-slots__detail-btn:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Final CTA Section */
.page-slots__cta-final {
  padding: 80px 0;
  background: linear-gradient(45deg, #000000 0%, #333333 100%);
  text-align: center;
}

.page-slots__cta-final .page-slots__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-slots__cta-final .page-slots__text {
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-slots__cta-btn--large {
  padding: 18px 40px;
  font-size: 1.4em;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slots__hero-title {
    font-size: 3.5em;
  }
  .page-slots__hero-description {
    font-size: 1.2em;
  }
  .page-slots__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-slots__hero {
    padding: 60px 20px;
  }
  .page-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots__hero-description {
    font-size: 1.1em;
  }
  .page-slots__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slots__category-grid,
  .page-slots__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-slots__feature-list li,
  .page-slots__step-list li {
    font-size: 1em;
    padding: 15px;
  }
  .page-slots__list-icon {
    font-size: 1.2em;
  }
  .page-slots__step-list li::before {
    top: -10px;
    padding: 3px 8px;
  }
  .page-slots__cta-btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots__hero-description {
    font-size: 1em;
  }
  .page-slots__hero-btn,
  .page-slots__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots__section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .page-slots__category-item,
  .page-slots__detail-item {
    padding: 20px;
  }
  .page-slots__category-title {
    font-size: 1.5em;
  }
  .page-slots__detail-title {
    font-size: 1.3em;
  }
}