/* style/slot-games-machine-tips.css */
.page-slot-games-machine-tips {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-slot-games-machine-tips__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366; /* Main brand color for hero background */
  color: #ffffff;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-slot-games-machine-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-slot-games-machine-tips__hero-container {
  position: relative;
}

.page-slot-games-machine-tips__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 51, 102, 0.6); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-slot-games-machine-tips__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-slot-games-machine-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-slot-games-machine-tips__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA button */
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-machine-tips__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slot-games-machine-tips__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games-machine-tips__introduction-section,
.page-slot-games-machine-tips__main-content {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-slot-games-machine-tips__introduction-section {
  background-color: #ffffff;
}

.page-slot-games-machine-tips__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-slot-games-machine-tips__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-machine-tips__paragraph a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-slot-games-machine-tips__paragraph a:hover {
  color: #FFD700;
}

.page-slot-games-machine-tips__article-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
}

.page-slot-games-machine-tips__article-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-machine-tips__article-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
  object-fit: cover;
}

.page-slot-games-machine-tips__cta-section {
  background-color: #003366;
  color: #ffffff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-machine-tips__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-slot-games-machine-tips__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-machine-tips__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-machine-tips__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slot-games-machine-tips__cta-button--secondary {
  background-color: #ffffff;
  color: #003366;
}

.page-slot-games-machine-tips__cta-button--secondary:hover {
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-machine-tips__hero-title {
    font-size: 3em;
  }
  .page-slot-games-machine-tips__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games-machine-tips__section-title {
    font-size: 2em;
  }
  .page-slot-games-machine-tips__article-title {
    font-size: 1.6em;
  }
  .page-slot-games-machine-tips__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-machine-tips__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-machine-tips__hero-description {
    font-size: 0.9em;
  }
  .page-slot-games-machine-tips__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slot-games-machine-tips__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-machine-tips__article-title {
    font-size: 1.4em;
  }
  .page-slot-games-machine-tips__cta-title {
    font-size: 1.8em;
  }
  .page-slot-games-machine-tips__cta-description {
    font-size: 1em;
  }
  .page-slot-games-machine-tips__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-slot-games-machine-tips__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-slot-games-machine-tips__article-card {
    padding: 20px;
  }
  /* Mobile content image constraint */
  .page-slot-games-machine-tips img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-slot-games-machine-tips__hero-title {
    font-size: 1.8em;
  }
  .page-slot-games-machine-tips__hero-description {
    font-size: 0.85em;
  }
  .page-slot-games-machine-tips__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-slot-games-machine-tips__section-title {
    font-size: 1.6em;
  }
  .page-slot-games-machine-tips__article-title {
    font-size: 1.2em;
  }
  .page-slot-games-machine-tips__cta-title {
    font-size: 1.6em;
  }
  .page-slot-games-machine-tips__cta-button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}