/* style/slot-games.css */

/* Base styles for the Nổ Hũ page content */
.page-slot-games {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0d0d0d; /* Inherited from shared.css, set explicitly for clarity */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Space for fixed header on desktop */
}

/* Responsive padding-top for mobile */
@media (max-width: 768px) {
  .page-slot-games {
    padding-top: 100px;
  }
}

/* Section styling */
.page-slot-games__section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-slot-games__section--intro {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

.page-slot-games__dark-section {
  background-color: #003366; /* Main brand color for dark sections */
  color: #ffffff; /* White text for brand color background */
}

.page-slot-games__dark-bg {
  background-color: #1a1a1a; /* Dark background for sections, ensuring contrast */
  color: #ffffff; /* White text for dark background */
}

/* Container for content within sections */
.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.page-slot-games__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slot-games__section-title a {
  color: inherit;
  text-decoration: none;
}

.page-slot-games__section-title a:hover {
  text-decoration: underline;
}

.page-slot-games h3 {
  font-size: 1.8em;
  color: #ffffff; /* White for sub-titles */
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text blocks */
.page-slot-games__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-slot-games__highlight {
  color: #FFCC00; /* Gold for highlights */
  font-weight: bold;
}

/* Links within text */
.page-slot-games p a,
.page-slot-games li a {
  color: #FFCC00; /* Gold for links in text */
  text-decoration: underline;
}

.page-slot-games p a:hover,
.page-slot-games li a:hover {
  color: #ffd700;
}

/* Hero Banner Section */
.page-slot-games__hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.page-slot-games__hero-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin: 20px;
}

.page-slot-games__hero-title {
  font-size: 3.5em;
  color: #FFCC00;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

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

/* Buttons */
.page-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-slot-games__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-slot-games__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-slot-games__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-slot-games__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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