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

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

.page-slots-games__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:x8bet,slots_games,abstract_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-games__hero-title {
  font-size: 3.5em;
  color: #E0B300;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-slots-games__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

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

.page-slots-games__btn--primary {
  background-color: #E0B300;
  color: #0A2239;
}

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

.page-slots-games__btn--secondary {
  background-color: transparent;
  color: #E0B300;
  border: 2px solid #E0B300;
  padding: 12px 25px;
}

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

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

.page-slots-games__btn--light {
  background-color: #f5ddc6;
  color: #0A2239;
}

.page-slots-games__btn--light:hover {
  background-color: #ffffff;
}

.page-slots-games__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

.page-slots-games__section-title {
  font-size: 2.5em;
  color: #E0B300;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-slots-games__section-subtitle {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 50px;
}

.page-slots-games__intro-section {
  padding: 80px 0;
  background-color: #0A2239;
}

.page-slots-games__grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-slots-games__grid-container {
    grid-template-columns: 1fr 1fr;
  }
  .page-slots-games__intro-content {
    order: 1; /* For alternating image/text */
  }
  .page-slots-games__intro-image {
    order: 2;
  }
}

.page-slots-games__intro-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #cccccc;
}

.page-slots-games__intro-image {
  text-align: center;
}

.page-slots-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games__game-categories {
  padding: 80px 0;
  background-color: #1a3a5a;
}

.page-slots-games__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slots-games__category-card {
  background-color: #0A2239;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-slots-games__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(224, 179, 0, 0.5));
}

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

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

.page-slots-games__features-section {
  padding: 80px 0;
  background-color: #0A2239;
}

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

.page-slots-games__feature-item {
  background-color: #1a3a5a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px rgba(224, 179, 0, 0.5));
}

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

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

.page-slots-games__promo-banner {
  background: linear-gradient(90deg, #E0B300 0%, #ffc928 100%);
  padding: 50px 0;
  margin: 60px 0;
}

.page-slots-games__banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-slots-games__banner-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
  .page-slots-games__banner-text {
    max-width: 60%;
  }
}

.page-slots-games__banner-image {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games__banner-title {
  font-size: 2.2em;
  color: #0A2239;
  margin-bottom: 15px;
}

.page-slots-games__banner-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 25px;
}

.page-slots-games__how-to-play {
  padding: 80px 0;
  background-color: #1a3a5a;
}

.page-slots-games__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slots-games__steps-list li {
  background-color: #0A2239;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  counter-increment: step-counter;
}

.page-slots-games__steps-list li::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3em;
  font-weight: bold;
  color: rgba(224, 179, 0, 0.2);
  z-index: 0;
}

.page-slots-games__step-title {
  font-size: 1.8em;
  color: #E0B300;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-slots-games__step-title .highlight {
  color: #E0B300;
}

.page-slots-games__steps-list p {
  color: #cccccc;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-slots-games__detail-pages {
  padding: 80px 0;
  background-color: #0A2239;
}

.page-slots-games__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games__detail-card {
  background-color: #1a3a5a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slots-games__detail-card:hover {
  transform: translateY(-5px);
}

.page-slots-games__detail-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

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

.page-slots-games__detail-card-description {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-slots-games__cta-bottom {
  background-color: #1a3a5a;
  text-align: center;
  padding: 80px 0;
  margin-top: 60px;
}

.page-slots-games__cta-title {
  font-size: 2.8em;
  color: #E0B300;
  margin-bottom: 20px;
}

.page-slots-games__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-slots-games .highlight {
  color: #E0B300;
}

/* Floating Promo Button */
.page-slots-games__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.page-slots-games__floating-btn {
  background-color: #E0B300;
  color: #0A2239;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slots-games__floating-btn:hover {
  background-color: #ffc928;
  transform: scale(1.05);
}

.page-slots-games__floating-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slots-games__hero-title {
    font-size: 3em;
  }
  .page-slots-games__section-title {
    font-size: 2em;
  }
  .page-slots-games__card-title {
    font-size: 1.5em;
  }
  .page-slots-games__feature-title {
    font-size: 1.4em;
  }
  .page-slots-games__banner-title {
    font-size: 1.8em;
  }
  .page-slots-games__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games__hero-description {
    font-size: 1em;
  }
  .page-slots-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-games__section-subtitle {
    font-size: 0.9em;
  }
  .page-slots-games__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-slots-games__category-card, .page-slots-games__feature-item, .page-slots-games__steps-list li, .page-slots-games__detail-card {
    padding: 20px;
  }
  .page-slots-games__banner-image {
    max-width: 100px;
  }
  .page-slots-games__banner-title {
    font-size: 1.5em;
  }
  .page-slots-games__banner-description {
    font-size: 0.9em;
  }
  .page-slots-games__cta-title {
    font-size: 1.8em;
  }
  .page-slots-games__cta-description {
    font-size: 1em;
  }
  .page-slots-games__floating-promo {
    bottom: 10px;
    right: 10px;
  }
  .page-slots-games__floating-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-slots-games__floating-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero-title {
    font-size: 2em;
  }
  .page-slots-games__section-title {
    font-size: 1.6em;
  }
  .page-slots-games__btn--primary, .page-slots-games__btn--secondary {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .page-slots-games__banner-content {
    flex-direction: column;
  }
  .page-slots-games__banner-image {
    margin-bottom: 15px;
  }
  .page-slots-games__floating-text {
    display: none;
  }
  .page-slots-games__floating-btn {
    padding: 10px;
    border-radius: 50%;
  }
  .page-slots-games__floating-icon {
    margin-right: 0;
  }
}