/* style/slots.css */
.page-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-slots__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3d6d 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-slots__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-slots__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-slots__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

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

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

.page-slots__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-slots__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 700px;
  opacity: 0.2;
  z-index: 1;
}

.page-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-slots__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-slots__section-description {
  font-size: 1.1em;
  color: #F0F0F0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots__features-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-slots__feature-item {
  background-color: #1a3d6d; /* Slightly lighter blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slots__feature-item:hover {
  transform: translateY(-10px);
}

.page-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-slots__feature-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots__feature-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-slots__game-types-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-slots__type-item {
  background-color: #1a3d6d;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slots__type-item:hover {
  transform: translateY(-10px);
}

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

.page-slots__type-heading {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots__type-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-slots__bonus-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-slots__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-slots__bonus-item {
  background-color: #1a3d6d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slots__bonus-item:hover {
  transform: translateY(-10px);
}

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

.page-slots__bonus-heading {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots__bonus-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-slots__cta-section {
  background: linear-gradient(90deg, #0A2342 0%, #3e6d9e 100%);
  padding: 80px 0;
  text-align: center;
}

.page-slots__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-slots__app-download-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-slots__app-download-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  background-color: #1a3d6d;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slots__app-text-content {
  flex: 1;
  text-align: left;
}

.page-slots__app-image-wrapper {
  flex: 1;
  text-align: right;
}

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

.page-slots__details-list-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-slots__detail-item {
  background-color: #1a3d6d;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slots__detail-item:hover {
  transform: translateY(-5px);
}

.page-slots__detail-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-slots__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slots__detail-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-slots__detail-description {
  font-size: 0.95em;
  color: #C0C0C0;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots__main-title {
    font-size: 2.8em;
  }
  .page-slots__hero-description {
    font-size: 1.1em;
  }
  .page-slots__hero-image-wrapper {
    width: 70%;
  }
  .page-slots__section-title {
    font-size: 2.2em;
  }
  .page-slots__app-download-content {
    flex-direction: column;
    text-align: center;
  }
  .page-slots__app-text-content {
    text-align: center;
  }
  .page-slots__app-image-wrapper {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-slots__hero-section {
    padding: 80px 0 120px;
  }
  .page-slots__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slots__hero-image-wrapper {
    width: 90%;
    opacity: 0.3;
  }
  .page-slots__main-title {
    font-size: 2.2em;
  }
  .page-slots__section-title {
    font-size: 1.8em;
  }
  .page-slots__feature-grid, .page-slots__type-list, .page-slots__bonus-grid, .page-slots__details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-slots__main-title {
    font-size: 1.8em;
  }
  .page-slots__hero-description {
    font-size: 1em;
  }
  .page-slots__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-slots__section-title {
    font-size: 1.6em;
  }
  .page-slots__feature-heading, .page-slots__type-heading, .page-slots__bonus-heading {
    font-size: 1.5em;
  }
  .page-slots__detail-title {
    font-size: 1.4em;
  }
}