/* style/slot-games.css */

/* --- Variables & Base Styles --- */
:root {
  --primary-color: #CC0000; /* Red - Passion, luck */
  --secondary-color: #FFD700; /* Gold - Luxury, victory */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8; /* Slightly off-white for sections */
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: #ffffff; /* Explicitly set for content area if body is default white */
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

/* --- Buttons --- */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-play,
.page-slot-games__btn-promo {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.page-slot-games__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.page-slot-games__btn-primary:hover {
  background: #B30000; /* Darken primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.page-slot-games__btn-secondary {
  background: var(--bg-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.page-slot-games__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.page-slot-games__btn-play,
.page-slot-games__btn-promo {
  font-size: 16px;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-dark); /* Ensure contrast on gold */
  box-shadow: 0 2px 8px var(--shadow-light);
}

.page-slot-games__btn-play:hover,
.page-slot-games__btn-promo:hover {
  background: #E6C200; /* Darken secondary color */
  transform: translateY(-1px);
  box-shadow: 0 4px 10px var(--shadow-medium);
}

/* --- Hero Section --- */
.page-slot-games__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #a00000 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-slot-games__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no color filters are applied */
}

/* --- About Section --- */
.page-slot-games__about-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-slot-games__about-section p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 17px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-slot-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none; /* Ensure no color filters are applied */
}

.page-slot-games__feature-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games__feature-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #555555;
  text-align: center;
}

/* --- Popular Games Section --- */
.page-slot-games__popular-games {
  padding: 80px 0;
  background-color: var(--primary-color); /* Dark background */
  color: var(--text-light); /* Light text */
}

.page-slot-games__popular-games .page-slot-games__section-title {
  color: var(--text-light);
}

.page-slot-games__popular-games .page-slot-games__section-title::after {
  background-color: var(--secondary-color);
}

.page-slot-games__popular-games p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  filter: none; /* Ensure no color filters are applied */
}

.page-slot-games__game-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  padding: 20px 20px 10px 20px;
}

.page-slot-games__game-description {
  font-size: 15px;
  color: #555555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
  text-align: left;
}

.page-slot-games__btn-play {
  margin: 0 20px 20px 20px;
}

.page-slot-games__view-all-cta {
  text-align: center;
  margin-top: 50px;
}

/* --- Guide Section --- */
.page-slot-games__guide-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-slot-games__guide-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-slot-games__guide-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.page-slot-games__guide-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none; /* Ensure no color filters are applied */
}

.page-slot-games__guide-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games__guide-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #555555;
  text-align: center;
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* --- Tips Section --- */
.page-slot-games__tips-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-slot-games__tips-section .page-slot-games__section-title {
  color: var(--text-light);
}

.page-slot-games__tips-section .page-slot-games__section-title::after {
  background-color: var(--secondary-color);
}

.page-slot-games__tips-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__tips-list li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  border-left: 5px solid var(--secondary-color);
}

.page-slot-games__tips-list li strong {
  color: var(--secondary-color);
  font-size: 18px;
}

/* --- Promotions Section --- */
.page-slot-games__promotions-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-slot-games__promotions-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 17px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__promo-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: none; /* Ensure no color filters are applied */
}
}