/* style/slots-games.css */
.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  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-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-slots-games__text-content {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games__text-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-slots-games__text-content a:hover {
  text-decoration: underline;
}

.page-slots-games__text-content--center {
  text-align: center;
}

.page-slots-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  margin: 10px;
}

.page-slots-games__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

.page-slots-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slots-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-slots-games__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-slots-games__center-button {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-slots-games__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #E0E0E0;
  position: relative;
  overflow: hidden;
}

.page-slots-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_geometric,dark_pattern,gaming_background]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-slots-games__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slots-games__hero-image-container {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  opacity: 0.3;
  z-index: 0;
  transform: rotate(15deg);
  display: none; /* Hidden on small screens */
}

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

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

.page-slots-games__game-type-card {
  background-color: #1a2a40;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-slots-games__card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-slots-games__card-description {
  color: #C0C0C0;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Providers Section */
.page-slots-games__provider-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-slots-games__provider-logo {
  height: 60px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(80%) brightness(150%);
  transition: filter 0.3s ease;
}

.page-slots-games__provider-logo:hover {
  filter: grayscale(0%) brightness(100%);
}

/* How-To-Play Section */
.page-slots-games__numbered-list {
  list-style-type: none;
  counter-reset: item;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-slots-games__numbered-list li {
  counter-increment: item;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-slots-games__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page-slots-games__numbered-list li strong {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slots-games__hero-title {
    font-size: 3em;
  }
  .page-slots-games__hero-image-container {
    width: 300px;
    height: 300px;
    bottom: -30px;
    right: -50px;
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games__hero-description {
    font-size: 1.1em;
  }
  .page-slots-games__section-title {
    font-size: 2em;
  }
  .page-slots-games__hero-image-container {
    display: none;
  }
  .page-slots-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-slots-games__provider-logo {
    height: 50px;
  }
  .page-slots-games__numbered-list li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-slots-games__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
}

@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.8em;
  }
  .page-slots-games__text-content {
    font-size: 0.95em;
  }
  .page-slots-games__game-type-card {
    padding: 20px;
  }
  .page-slots-games__card-title {
    font-size: 1.3em;
  }
  .page-slots-games__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-slots-games__provider-logo {
    height: 40px;
  }
}