/* style/slots.css */
.page-slots {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

/* Hero Section */
.page-slots__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px 0; /* body handles top padding, this is for section spacing */
  background-color: #08160F;
}

.page-slots__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-slots__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  max-width: 100%;
  /* No fixed font-size, rely on responsive scaling and weight */
}

.page-slots__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* General Section Styles */
.page-slots__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-slots__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-slots__text-block {
  font-size: 1em;
  line-height: 1.7;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-slots__text-block:last-child {
  margin-bottom: 0;
}

.page-slots__text-link {
  color: #2AD16F; /* A lighter green for links */
  text-decoration: underline;
}

.page-slots__text-link:hover {
  color: #57E38D;
}

/* Image styles */
.page-slots__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-slots__image-center {
  display: block;
  margin: 0 auto 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

/* Feature Grid */
.page-slots__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slots__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-slots__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-slots__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8;
}

/* Steps List */
.page-slots__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}