/* style/13win1-slot-games.css */
.page-13win1-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
}

.page-13win1-slot-games__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-13win1-slot-games__hero-section {
  background: linear-gradient(135deg, #26A9E0, #a0dceb); /* Light blue gradient */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #FFFFFF; /* White text on blue background */
  text-align: center;
}

.page-13win1-slot-games__hero-content {
  max-width: 600px;
}

.page-13win1-slot-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-13win1-slot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-13win1-slot-games__hero-image-wrapper {
  max-width: 500px;
  width: 100%;
}

.page-13win1-slot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-13win1-slot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
}

.page-13win1-slot-games__button--primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: none;
}

.page-13win1-slot-games__button--primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

.page-13win1-slot-games__button--secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-13win1-slot-games__button--secondary:hover {
  background-color: #e0f7ff;
  transform: translateY(-2px);
}

.page-13win1-slot-games__button--inline {
  padding: 10px 20px;
  font-size: 1em;
}

.page-13win1-slot-games__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

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

.page-13win1-slot-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-13win1-slot-games__about-section,
.page-13win1-slot-games__game-categories,
.page-13win1-slot-games__how-to-play,
.page-13win1-slot-games__promotions,
.page-13win1-slot-games__mobile-app,
.page-13win1-slot-games__responsible-gaming,
.page-13win1-slot-games__faq,
.page-13win1-slot-games__cta-section {
  padding: 60px 0;
}

.page-13win1-slot-games__about-section {
  background-color: #f9f9f9;
}

.page-13win1-slot-games__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-13win1-slot-games__feature-item {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 45px;
  font-size: 1.05em;
}

.page-13win1-slot-games__feature-item::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 20px;
}

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

.page-13win1-slot-games__game-card,
.page-13win1-slot-games__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-13win1-slot-games__game-image,
.page-13win1-slot-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-13win1-slot-games__game-title,
.page-13win1-slot-games__promo-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-13win1-slot-games__game-description,
.page-13win1-slot-games__promo-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-13win1-slot-games__how-to-play {
  background-color: #f0f8ff;
}

.page-13win1-slot-games__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-13win1-slot-games__step-item {
  background-color: #FFFFFF;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 70px;
}

.page-13win1-slot-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-13win1-slot-games__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-13win1-slot-games__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-13win1-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-13win1-slot-games__mobile-app {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-13win1-slot-games__mobile-app .page-13win1-slot-games__section-title {
  color: #FFFFFF;
}

.page-13win1-slot-games__mobile-app .page-13win1-slot-games__section-title::after {
  background-color: #FFFFFF;
}

.page-13win1-slot-games__mobile-app-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-13win1-slot-games__mobile-app-text {
  flex: 1;
  min-width: 300px;
}

.page-13win1-slot-games__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-13win1-slot-games__mobile-app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-13win1-slot-games__responsible-gaming {
  background-color: #f9f9f9;
}

.page-13win1-slot-games__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-13win1-slot-games__responsible-item {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-13win1-slot-games__faq {
  background-color: #e0f7ff;
}

.page-13win1-slot-games__accordion {
  margin-top: 40px;
}

.page-13win1-slot-games__accordion-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-13win1-slot-games__accordion-header {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-13win1-slot-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-13win1-slot-games__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-13win1-slot-games__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-13win1-slot-games__accordion-content p {
  padding-bottom: 20px;
  font-size: 1em;
  color: #555555;
}

.page-13win1-slot-games__cta-section {
  background: linear-gradient(135deg, #26A9E0, #1b769d);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-13win1-slot-games__cta-section .page-13win1-slot-games__section-title {
  color: #FFFFFF;
}

.page-13win1-slot-games__cta-section .page-13win1-slot-games__section-title::after {
  background-color: #FFFFFF;
}

.page-13win1-slot-games__cta-section .page-13win1-slot-games__text-content {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-13win1-slot-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-13win1-slot-games__hero-section {
    flex-direction: column;
    text-align: center;
  }

  .page-13win1-slot-games__hero-content,
  .page-13win1-slot-games__hero-image-wrapper {
    max-width: 100%;
  }

  .page-13win1-slot-games__mobile-app-flex {
    flex-direction: column;
  }

  .page-13win1-slot-games__mobile-app-text,
  .page-13win1-slot-games__mobile-app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-13win1-slot-games__hero-title {
    font-size: 2.5em;
  }

  .page-13win1-slot-games__section-title {
    font-size: 2em;
  }

  .page-13win1-slot-games__hero-actions,
  .page-13win1-slot-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-13win1-slot-games__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-13win1-slot-games__game-grid,
  .page-13win1-slot-games__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-13win1-slot-games__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-13win1-slot-games__hero-title {
    font-size: 2em;
  }

  .page-13win1-slot-games__hero-description {
    font-size: 1em;
  }

  .page-13win1-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-13win1-slot-games__button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }

  .page-13win1-slot-games__feature-item,
  .page-13win1-slot-games__step-item {
    padding-left: 55px;
  }

  .page-13win1-slot-games__step-item::before {
    left: 15px;
  }
}