/* style/slots-games.css */
.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5; /* Light text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-slots-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-slots-games__section:nth-of-type(even) {
  background-color: #1a3a5e; /* Slightly lighter dark blue for contrast */
}

.page-slots-games__section-title {
  font-size: 2.8em;
  color: #E0B400; /* Gold accent for titles */
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

/* Hero Section */
.page-slots-games__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a5e 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-slots-games__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-slots-games__hero-title {
  font-size: 3.5em;
  color: #E0B400;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-slots-games__hero-description {
  font-size: 1.4em;
  color: #f5f5f5;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.page-slots-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-slots-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.page-slots-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: none;
}

.page-slots-games__btn--primary {
  background-color: #E0B400; /* Gold accent */
  color: #0A2342;
}

.page-slots-games__btn--primary:hover {
  background-color: #ffc800;
  transform: translateY(-3px);
}

.page-slots-games__btn--secondary {
  background-color: #0A2342;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-slots-games__btn--secondary:hover {
  background-color: #1a3a5e;
  color: #ffc800;
  border-color: #ffc800;
  transform: translateY(-3px);
}

.page-slots-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
  background-color: #E0B400;
  color: #0A2342;
}

.page-slots-games__btn--small:hover {
  background-color: #ffc800;
}

.page-slots-games__btn--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #E0B400;
  color: #0A2342;
  margin-left: 10px;
}

.page-slots-games__btn--inline:hover {
  background-color: #ffc800;
}

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

.page-slots-games__game-card {
  background-color: #1a3a5e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-slots-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #E0B400;
}

.page-slots-games__game-card-title {
  font-size: 1.8em;
  color: #E0B400;
  margin: 25px 15px 15px;
}

.page-slots-games__game-card-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px;
  margin-bottom: 20px;
}

/* Why Choose Section */
.page-slots-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-slots-games__feature-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(224, 180, 0, 0.3);
}

.page-slots-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 180, 0, 0.7));
}

.page-slots-games__feature-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-slots-games__feature-item p {
  font-size: 1em;
  color: #d0d0d0;
}

.page-slots-games__cta-bottom {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* How To Start Section */
.page-slots-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-slots-games__steps-list li {
  background-color: #1a3a5e;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-slots-games__steps-list li:last-child {
  margin-bottom: 0;
}

.page-slots-games__step-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-slots-games__steps-list li p {
  color: #c0c0c0;
  margin-bottom: 15px;
}

/* Detail Pages List */
.page-slots-games__detail-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-slots-games__detail-list li {
  background-color: #0A2342;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-slots-games__detail-item-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slots-games__detail-item-title a {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slots-games__detail-item-title a:hover {
  color: #ffc800;
  text-decoration: underline;
}

.page-slots-games__detail-list li p {
  color: #c0c0c0;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-slots-games__conclusion-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games__hero-title {
    font-size: 3em;
  }
  .page-slots-games__hero-description {
    font-size: 1.2em;
  }
  .page-slots-games__section-title {
    font-size: 2.2em;
  }
  .page-slots-games__game-grid,
  .page-slots-games__features-grid,
  .page-slots-games__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero {
    padding: 60px 0;
  }
  .page-slots-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games__hero-description {
    font-size: 1.1em;
  }
  .page-slots-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-slots-games__section {
    padding: 40px 0;
  }
  .page-slots-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-games__steps-list li {
    padding: 20px;
  }
  .page-slots-games__cta-bottom,
  .page-slots-games__conclusion-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn--inline {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero-title {
    font-size: 2em;
  }
  .page-slots-games__hero-description {
    font-size: 1em;
  }
  .page-slots-games__section-title {
    font-size: 1.5em;
  }
  .page-slots-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots-games__game-grid,
  .page-slots-games__features-grid,
  .page-slots-games__detail-list {
    grid-template-columns: 1fr;
  }
}