/* style/casino-games-slot-machines.css */

.page-casino-games-slot-machines {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1a1a1a;
  line-height: 1.6;
}

.page-casino-games-slot-machines .page-casino-games-slot-machines__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino-games-slot-machines .highlight {
  color: #FF0055;
}

/* Hero Section */
.page-casino-games-slot-machines__hero-section {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.9), rgba(0, 255, 238, 0.9)), url('[GALLERY:bg:abstract_hiphop_pattern,dark_gradient]') no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-casino-games-slot-machines__hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-casino-games-slot-machines__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-games-slot-machines__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-games-slot-machines__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-games-slot-machines__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent;
}

.page-casino-games-slot-machines__btn--primary {
  background-color: #FF0055;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.7);
}

.page-casino-games-slot-machines__btn--primary:hover {
  background-color: #E6004C;
  box-shadow: 0 0 20px rgba(255, 0, 85, 1);
  transform: translateY(-3px);
}

.page-casino-games-slot-machines__btn--secondary {
  background-color: transparent;
  color: #00FFEE;
  border-color: #00FFEE;
  box-shadow: 0 0 15px rgba(0, 255, 238, 0.7);
}

.page-casino-games-slot-machines__btn--secondary:hover {
  background-color: #00FFEE;
  color: #1a1a1a;
  box-shadow: 0 0 20px rgba(0, 255, 238, 1);
  transform: translateY(-3px);
}

.page-casino-games-slot-machines__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-casino-games-slot-machines__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
}

/* General Section Styling */
.page-casino-games-slot-machines__section {
  padding: 80px 0;
  text-align: center;
}

.page-casino-games-slot-machines__section:nth-of-type(even) {
  background-color: #222222;
}

.page-casino-games-slot-machines__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-casino-games-slot-machines__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 50px;
}

/* Features Section */
.page-casino-games-slot-machines__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-games-slot-machines__feature-item {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games-slot-machines__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-games-slot-machines__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #00FFEE);
}

.page-casino-games-slot-machines__feature-title {
  font-size: 1.5em;
  color: #FF0055;
  margin-bottom: 15px;
}

.page-casino-games-slot-machines__feature-text {
  font-size: 1em;
  color: #C0C0C0;
}

/* Game Categories Section */
.page-casino-games-slot-machines__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-games-slot-machines__category-item {
  background-color: #2e2e2e;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-casino-games-slot-machines__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-games-slot-machines__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #00FFEE;
}

.page-casino-games-slot-machines__category-title {
  font-size: 1.6em;
  color: #FF0055;
  padding: 20px 20px 10px;
}

.page-casino-games-slot-machines__category-description {
  font-size: 0.95em;
  color: #C0C0C0;
  padding: 0 20px 20px;
}

/* How to Play Section */
.page-casino-games-slot-machines__how-to-play {
  background-color: #222222;
}

.page-casino-games-slot-machines__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-casino-games-slot-machines__step-list li {
  background-color: #2e2e2e;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 15px;
  text-align: left;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-games-slot-machines__step-list li::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FF0055;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.7);
}

.page-casino-games-slot-machines__step-title {
  font-size: 1.4em;
  color: #00FFEE;
  margin-bottom: 10px;
  padding-left: 40px; /* Offset for the counter */
}

.page-casino-games-slot-machines__step-text {
  font-size: 1em;
  color: #C0C0C0;
  padding-left: 40px;
}

.page-casino-games-slot-machines__step-text a {
  color: #FF0055;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-games-slot-machines__step-text a:hover {
  text-decoration: underline;
}

.page-casino-games-slot-machines__responsible-gambling {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-games-slot-machines__responsible-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FF0055);
}

.page-casino-games-slot-machines__responsible-title {
  font-size: 1.8em;
  color: #FF0055;
  margin-bottom: 15px;
}

.page-casino-games-slot-machines__responsible-text {
  font-size: 1.1em;
  color: #C0C0C0;
  max-width: 700px;
  margin: 0 auto;
}

/* Promotions Section */
.page-casino-games-slot-machines__promotions {
  background-color: #1a1a1a;
}

.page-casino-games-slot-machines__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-games-slot-machines__promo-item {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games-slot-machines__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino-games-slot-machines__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #00FFEE;
}

.page-casino-games-slot-machines__promo-title {
  font-size: 1.6em;
  color: #00FFEE;
  margin-bottom: 10px;
}

.page-casino-games-slot-machines__promo-text {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-casino-games-slot-machines__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* App Download Section */
.page-casino-games-slot-machines__app-download {
  background: linear-gradient(135deg, rgba(0, 255, 238, 0.1), rgba(255, 0, 85, 0.1));
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.page-casino-games-slot-machines__app-download .page-casino-games-slot-machines__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.page-casino-games-slot-machines__app-content {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.page-casino-games-slot-machines__app-content .page-casino-games-slot-machines__section-title {
  text-align: left;
}

.page-casino-games-slot-machines__app-content .page-casino-games-slot-machines__section-subtitle {
  text-align: left;
  margin-bottom: 30px;
}

.page-casino-games-slot-machines__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-casino-games-slot-machines__app-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-casino-games-slot-machines__benefit-icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  filter: drop-shadow(0 0 5px #FF0055);
}

.page-casino-games-slot-machines__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-casino-games-slot-machines__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 238, 0.7);
}

.page-casino-games-slot-machines__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-casino-games-slot-machines__faq {
  background-color: #222222;
}

.page-casino-games-slot-machines__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  margin-top: 40px;
}

.page-casino-games-slot-machines__faq-item {
  background-color: #2e2e2e;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-games-slot-machines__faq-question {
  font-size: 1.3em;
  color: #FF0055;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino-games-slot-machines__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #00FFEE;
  transition: transform 0.3s ease;
}

.page-casino-games-slot-machines__faq-item.active .page-casino-games-slot-machines__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-casino-games-slot-machines__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-casino-games-slot-machines__faq-item.active .page-casino-games-slot-machines__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-casino-games-slot-machines__faq-answer a {
  color: #FF0055;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-games-slot-machines__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Bottom Section */
.page-casino-games-slot-machines__cta-bottom {
  background: linear-gradient(45deg, #FF0055, #00FFEE);
  padding: 80px 0;
  color: #FFFFFF;
}

.page-casino-games-slot-machines__cta-bottom .page-casino-games-slot-machines__section-title {
  color: #FFFFFF;
}

.page-casino-games-slot-machines__cta-bottom .page-casino-games-slot-machines__section-subtitle {
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-casino-games-slot-machines__cta-bottom .page-casino-games-slot-machines__btn--primary {
  background-color: #1a1a1a;
  color: #00FFEE;
  border-color: #00FFEE;
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.8);
}

.page-casino-games-slot-machines__cta-bottom .page-casino-games-slot-machines__btn--primary:hover {
  background-color: #00FFEE;
  color: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 0 25px rgba(0, 255, 238, 1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino-games-slot-machines__hero-title {
    font-size: 2.8em;
  }

  .page-casino-games-slot-machines__hero-description {
    font-size: 1.1em;
  }

  .page-casino-games-slot-machines__section-title {
    font-size: 2.2em;
  }

  .page-casino-games-slot-machines__app-download .page-casino-games-slot-machines__container {
    flex-direction: column;
  }

  .page-casino-games-slot-machines__app-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .page-casino-games-slot-machines__app-content .page-casino-games-slot-machines__section-title,
  .page-casino-games-slot-machines__app-content .page-casino-games-slot-machines__section-subtitle {
    text-align: center;
  }

  .page-casino-games-slot-machines__app-benefits {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .page-casino-games-slot-machines__hero-title {
    font-size: 2.2em;
  }

  .page-casino-games-slot-machines__hero-description {
    font-size: 1em;
  }

  .page-casino-games-slot-machines__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino-games-slot-machines__btn {
    width: 80%;
  }

  .page-casino-games-slot-machines__section {
    padding: 60px 0;
  }

  .page-casino-games-slot-machines__section-title {
    font-size: 1.8em;
  }

  .page-casino-games-slot-machines__section-subtitle {
    font-size: 1em;
  }

  .page-casino-games-slot-machines__feature-grid,
  .page-casino-games-slot-machines__category-grid,
  .page-casino-games-slot-machines__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-casino-games-slot-machines__step-list li::before {
    left: 10px;
    top: 20px;
    transform: none;
  }

  .page-casino-games-slot-machines__step-title,
  .page-casino-games-slot-machines__step-text {
    padding-left: 70px;
  }

  .page-casino-games-slot-machines__responsible-gambling {
    padding: 30px;
  }

  .page-casino-games-slot-machines__responsible-image {
    width: 80px;
    height: 80px;
  }

  .page-casino-games-slot-machines__faq-item {
    padding: 20px;
  }

  .page-casino-games-slot-machines__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-casino-games-slot-machines__hero-title {
    font-size: 1.8em;
  }

  .page-casino-games-slot-machines__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-casino-games-slot-machines__section-title {
    font-size: 1.5em;
  }

  .page-casino-games-slot-machines__section-subtitle {
    font-size: 0.9em;
  }

  .page-casino-games-slot-machines__feature-item,
  .page-casino-games-slot-machines__category-item,
  .page-casino-games-slot-machines__promo-item,
  .page-casino-games-slot-machines__faq-item {
    padding: 20px;
  }

  .page-casino-games-slot-machines__step-list li {
    padding: 15px 20px;
  }

  .page-casino-games-slot-machines__step-list li::before {
    left: 5px;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }

  .page-casino-games-slot-machines__step-title,
  .page-casino-games-slot-machines__step-text {
    padding-left: 55px;
  }

  .page-casino-games-slot-machines__responsible-gambling {
    padding: 20px;
  }

  .page-casino-games-slot-machines__responsible-title {
    font-size: 1.5em;
  }
}