.page-resources-slot-games-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default background */
}

.page-resources-slot-games-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-slot-games-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #26A9E0, #87CEEB); /* Light blue gradient */
  color: #FFFFFF;
  overflow: hidden;
}

.page-resources-slot-games-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-resources-slot-games-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-slot-games-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-slot-games-tips__hero-content {
  text-align: center;
  width: 100%;
}

.page-resources-slot-games-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-slot-games-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F8FF; /* Slightly off-white for contrast */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-slot-games-tips__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #EA7C07; /* Login color for CTA */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-slot-games-tips__cta-button:hover {
  background: #FF8C00; /* Slightly lighter orange */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-slot-games-tips__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-resources-slot-games-tips__section-title--light {
  color: #FFFFFF;
}

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

.page-resources-slot-games-tips__paragraph--light {
  color: #E0FFFF; /* Light cyan for better contrast on dark background */
}

.page-resources-slot-games-tips__highlight {
  font-weight: bold;
  color: #26A9E0;
}

.page-resources-slot-games-tips__dark-bg .page-resources-slot-games-tips__highlight {
  color: #FFFFFF;
}

.page-resources-slot-games-tips__link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-slot-games-tips__link:hover {
  text-decoration: underline;
  color: #1A7FB1;
}

.page-resources-slot-games-tips__link--cta {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-resources-slot-games-tips__link--cta:hover {
  color: #FFD700;
}

.page-resources-slot-games-tips__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
}

.page-resources-slot-games-tips__list li {
  margin-bottom: 8px;
}

.page-resources-slot-games-tips__list-strong {
  color: #26A9E0;
}

.page-resources-slot-games-tips__list--light {
  color: #E0FFFF;
}

.page-resources-slot-games-tips__list--light .page-resources-slot-games-tips__list-strong {
  color: #FFFFFF;
}

/* Introduction Section */
.page-resources-slot-games-tips__introduction-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-resources-slot-games-tips__card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  color: #333333;
}

.page-resources-slot-games-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-slot-games-tips__card-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 20px;
}