/* style/slots.css */
.page-slots {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-slots-hero {
  background: linear-gradient(135deg, #0A2463, #1A3E8A);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.page-slots-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-slots-hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-slots-hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show more or less of the image */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px; /* Limit image width */
  z-index: 1;
}

.page-slots-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.page-slots-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-slots-section:nth-of-type(even) {
  background-color: #f0f4f7;
}

.page-slots-section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slots-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.page-slots-grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

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

.page-slots-text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-slots-text-content h3 {
  color: #0A2463;
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-slots-content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-slots-btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

.page-slots-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-slots-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.page-slots-btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
  margin: 5px;
}

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

.page-slots-feature-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-slots-feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-feature-description {
  color: #666;
  font-size: 1em;
}

.page-slots-developer-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-slots-developer-logo {
  max-height: 80px;
  max-width: 100%;
  margin-bottom: 15px;
  filter: grayscale(80%);
  transition: filter 0.3s ease;
}

.page-slots-developer-item:hover .page-slots-developer-logo {
  filter: grayscale(0%);
}

.page-slots-developer-name {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots-developer-description {
  color: #666;
  font-size: 0.95em;
}

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

.page-slots-mt-4 {
  margin-top: 40px;
}

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

.page-slots-detail-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots-detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-detail-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slots-detail-title a:hover {
  color: #FFD700;
}

.page-slots-detail-description {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots-cta {
  background: linear-gradient(90deg, #0A2463, #1A3E8A);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  margin-top: 40px;
  border-radius: 8px;
}

.page-slots-cta-content {
  max-width: 900px;
}

.page-slots-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-hero-title {
    font-size: 2.5em;
  }
  .page-slots-hero-description {
    font-size: 1.1em;
  }
  .page-slots-section-title {
    font-size: 2em;
  }
  .page-slots-grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-slots-reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .page-slots-hero-image-wrapper {
    bottom: 0px;
  }
}

@media (max-width: 768px) {
  .page-slots-hero {
    padding: 60px 0 200px;
  }
  .page-slots-hero-title {
    font-size: 2em;
  }
  .page-slots-hero-description {
    font-size: 1em;
  }
  .page-slots-section {
    padding: 40px 0;
  }
  .page-slots-section-title {
    font-size: 1.8em;
  }
  .page-slots-subtitle {
    font-size: 1em;
  }
  .page-slots-btn {
    padding: 12px 24px;
    font-size: 1em;
  }
  .page-slots-grid-3-cols {
    grid-template-columns: 1fr;
  }
  .page-slots-detail-list {
    grid-template-columns: 1fr;
  }
  .page-slots-hero-image-wrapper {
    max-width: 800px;
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .page-slots-hero-title {
    font-size: 1.8em;
  }
  .page-slots-hero-description {
    font-size: 0.95em;
  }
  .page-slots-btn {
    display: block;
    margin: 10px auto;
  }
  .page-slots-section-title {
    font-size: 1.5em;
  }
  .page-slots-hero-image-wrapper {
    bottom: -50px;
  }
}