/* style/slot-games-high-payout-tips.css */
:root {
  --primary-color: #26A9E0;
  --secondary-button-color: #EA7C07; /* Used for login/secondary actions if needed, though primary is used for contrast here */
  --background-color-light: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-slot-games-high-payout-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color-light);
}

.page-slot-games-high-payout-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 header offset */
  background: linear-gradient(135deg, var(--primary-color), #87CEEB); /* Lighter blue for gradient */
  color: var(--text-color-light);
  overflow: hidden;
}

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

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

.page-slot-games-high-payout-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-slot-games-high-payout-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-games-high-payout-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games-high-payout-tips__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-high-payout-tips__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-high-payout-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-high-payout-tips__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-slot-games-high-payout-tips__btn-primary:hover {
  background: #2098d0; /* A darker shade of primary color */
  border-color: #2098d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-high-payout-tips__btn-secondary {
  background: var(--background-color-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-slot-games-high-payout-tips__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-high-payout-tips__section {
  padding: 60px 20px;
  background-color: var(--background-color-light);
}

.page-slot-games-high-payout-tips__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-slot-games-high-payout-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.page-slot-games-high-payout-tips__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-high-payout-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-color-dark);
}

.page-slot-games-high-payout-tips__image-content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-slot-games-high-payout-tips__image-content-block img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-high-payout-tips__image-description {
  font-style: italic;
  color: #666;
  text-align: center;
  max-width: 800px;
}

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

.page-slot-games-high-payout-tips__card {
  background-color: var(--background-color-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-color-dark);
}

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

.page-slot-games-high-payout-tips__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-high-payout-tips__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-color-dark);
}

.page-slot-games-high-payout-tips__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}