/* style/slot-games-how-to-play.css */

/* Base Styles for the page content */
.page-slot-games-how-to-play {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #121212 (dark), so use light text */
  background-color: transparent; /* inherited from body, shared handles it */
}

/* Hero Section */
.page-slot-games-how-to-play__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-slot-games-how-to-play__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.page-slot-games-how-to-play__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-how-to-play__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: 40px; /* Space between image and text */
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Slightly transparent dark background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-how-to-play__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFFF00; /* Use specific color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-how-to-play__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* General Section Styling */
.page-slot-games-how-to-play__section {
  padding: 40px 20px;
  background-color: #1a1a1a; /* Dark background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-how-to-play__section:nth-of-type(even) {
  background-color: #222222; /* Slightly different dark shade for alternating sections */
}

.page-slot-games-how-to-play__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Inner padding for mobile responsiveness */
  box-sizing: border-box;
}

.page-slot-games-how-to-play__heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #017439; /* Primary brand color for headings */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-slot-games-how-to-play__sub-heading {
  font-size: clamp(1.3em, 2vw, 1.8em);
  color: #FFFF00; /* Highlight color for sub-headings */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-slot-games-how-to-play__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-how-to-play__keyword {
  color: #FFFF00; /* Highlight keywords */
  font-weight: bold;
}

/* Images within content */
.page-slot-games-how-to-play__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Lists */
.page-slot-games-how-to-play__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-slot-games-how-to-play__list-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for list items */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #017439; /* Primary brand color accent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-slot-games-how-to-play__list-item p {
  margin-bottom: 0;
  font-size: 1em;
  color: #e0e0e0;
}

/* Cards Grid */
.page-slot-games-how-to-play__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slot-games-how-to-play__card {
  background-color: #2a2a2a; /* Darker background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-slot-games-how-to-play__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency, object-fit will handle aspect ratio */
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-slot-games-how-to-play__card-title {
  font-size: 1.4em;
  color: #017439; /* Primary brand color */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games-how-to-play__card-text {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 15px;
  text-align: justify;
  flex-grow: 1;
}

/* CTA Buttons */
.page-slot-games-how-to-play__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}