/* style/slot-games.css */

/* Base styles for the page */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Assuming body background is light */
}

/* Section spacing and container */
.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.page-slot-games__hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games__main-title {
  /* font-size handled by browser default, use font-weight/line-height for prominence */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF; /* White text for dark background */
  margin-bottom: 20px;
}

.page-slot-games__intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for contrast */
}

/* General Titles */
.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  color: inherit; /* Inherits from section background */
}

.page-slot-games__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

/* Paragraphs */
.page-slot-games__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: inherit;
  text-align: left;
}

.page-slot-games__text-center {
  text-align: center;
}

.page-slot-games__highlight {
  font-weight: bold;
  color: #017439; /* Primary brand color for highlights */
}

/* Buttons */
.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-slot-games__cta-buttons--center {
  justify-content: center;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-slot-games__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-slot-games__btn-primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #017439; /* Primary brand color for text */
  border: 2px solid #017439;
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(1, 116, 57, 0.1);
  color: #017439;
  transform: translateY(-2px);
}

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