/* style/slots.css */
.page-slots {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #001a33; /* Darker blue background for page content */
}

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

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

.page-slots__section:nth-of-type(even) {
  background-color: #002240; /* Slightly lighter dark blue for alternating sections */
}

.page-slots__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slots__section-subtitle {
  font-size: 1.3em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots__text-center {
  text-align: center;
}

/* Hero Section */
.page-slots__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-slots__hero-content {
  max-width: 600px;
  z-index: 1;
}

.page-slots__hero-title {
  font-size: 3.8em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: bold;
}

.page-slots__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 35px;
  line-height: 1.6;
}

.page-slots__hero-image-wrapper {
  position: relative;
  width: 500px;
  height: 350px;
  transform: rotate(5deg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.page-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-slots__hero-image-wrapper:hover .page-slots__hero-image {
  transform: scale(1.05);
}

.page-slots__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-slots__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #003366; /* Dark blue text on gold */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slots__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slots__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary actions */
  border: 2px solid #FFD700;
}

.page-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
}

.page-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-slots__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-slots__btn--app {
  background-color: #0056b3; /* A different shade of blue for app download */
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

.page-slots__btn--app:hover {
  background-color: #004085;
  transform: translateY(-3px);
}

/* General Content Block */
.page-slots__about .page-slots__grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-slots__about .page-slots__content-block {
  flex: 1;
}

.page-slots__about .page-slots__content-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #cccccc;
}

.page-slots__about .page-slots__image-wrapper {
  flex: 1;
  max-width: 50%;
}

.page-slots__about .page-slots__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.page-slots__card {
  background-color: #003366; /* Main brand color for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.page-slots__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots__card-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-slots__section-footer-text {
  margin-top: 50px;
  font-size: 1.2em;
  color: #FFD700;
}

/* Features Section */
.page-slots__grid--features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slots__feature-item {
  background-color: #002240;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-slots__feature-item:hover {
  background-color: #003366;
}

.page-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-slots__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots__feature-item p {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* How to Play Section */
.page-slots__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-slots__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background-color: #003366;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 25px;
  flex-shrink: 0;
  line-height: 1;
}

.page-slots__step-content {
  flex-grow: 1;
}

.page-slots__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots__step-content p {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Promotions Section */
.page-slots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots__promo-card {
  background-color: #002240;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-slots__promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slots__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots__promo-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tips Section */
.page-slots__tips .page-slots__grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.page-slots__tips .page-slots__content-block {
  flex: 1;
}

.page-slots__tips .page-slots__image-wrapper {
  flex: 1;
  max-width: 50%;
}

.page-slots__tips .page-slots__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slots__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.page-slots__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left 8px;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-slots__list li strong {
  color: #FFD700;
}

/* Final CTA */
.page-slots__cta-final {
  background-color: #003366;
  padding: 80px 0;
}

.page-slots__cta-final .page-slots__section-title {
  font-size: 3em;
}

.page-slots__cta-final .page-slots__section-subtitle {
  font-size: 1.3em;
  margin-bottom: 50px;
}

.page-slots__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-slots__app-download-text {
  font-size: 1.2em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-slots__hero-content {
    max-width: 100%;
  }

  .page-slots__hero-image-wrapper {
    width: 80%;
    height: auto;
    margin-top: 40px;
    transform: rotate(0deg);
  }

  .page-slots__hero-title {
    font-size: 3em;
  }

  .page-slots__hero-description {
    font-size: 1.2em;
  }

  .page-slots__hero-actions {
    justify-content: center;
  }

  .page-slots__about .page-slots__grid,
  .page-slots__tips .page-slots__grid {
    flex-direction: column;
    text-align: center;
  }

  .page-slots__about .page-slots__image-wrapper,
  .page-slots__tips .page-slots__image-wrapper {
    max-width: 80%;
    margin-top: 30px;
  }

  .page-slots__section-title {
    font-size: 2.2em;
  }

  .page-slots__section-subtitle {
    font-size: 1.1em;
  }

  .page-slots__card-title,
  .page-slots__feature-title,
  .page-slots__step-title,
  .page-slots__promo-title {
    font-size: 1.6em;
  }

  .page-slots__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-slots__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

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

  .page-slots__hero-description {
    font-size: 1.1em;
  }

  .page-slots__section-title {
    font-size: 1.8em;
  }

  .page-slots__section-subtitle {
    font-size: 1em;
  }

  .page-slots__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-slots__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-slots__grid--3-cols,
  .page-slots__grid--features,
  .page-slots__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-slots__hero-image-wrapper {
    width: 95%;
  }

  .page-slots__hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-slots__btn {
    width: 100%;
  }

  .page-slots__hero-title {
    font-size: 2em;
  }

  .page-slots__section-title {
    font-size: 1.6em;
  }

  .page-slots__section-subtitle {
    font-size: 0.95em;
  }

  .page-slots__card-title,
  .page-slots__feature-title,
  .page-slots__step-title,
  .page-slots__promo-title {
    font-size: 1.4em;
  }

  .page-slots__card-description,
  .page-slots__feature-item p,
  .page-slots__step-content p,
  .page-slots__promo-description,
  .page-slots__list li {
    font-size: 0.95em;
  }

  .page-slots__cta-actions {
    flex-direction: column;
    align-items: center;
  }
}