/* style/slot-games-high-payout-tips.css */

:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

.page-slot-games-high-payout-tips {
  font-family: Arial, sans-serif;
  color: var(--page-text-main);
  background-color: var(--page-background); /* Body background is handled by shared.css */
}

.page-slot-games-high-payout-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: var(--page-background);
  overflow: hidden;
}

.page-slot-games-high-payout-tips__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games-high-payout-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast, not changing color */
}

.page-slot-games-high-payout-tips__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image slightly for visual flow */
  padding: 0 20px;
}

.page-slot-games-high-payout-tips__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--page-gold-color);
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
  margin-bottom: 15px;
}

.page-slot-games-high-payout-tips__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--page-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-slot-games-high-payout-tips__btn-primary {
  display: inline-block;
  background: var(--page-button-gradient);
  color: var(--page-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-high-payout-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-slot-games-high-payout-tips__deep-green-bg {
  background-color: var(--page-deep-green);
}

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

.page-slot-games-high-payout-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-slot-games-high-payout-tips__section-title--light {
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-slot-games-high-payout-tips__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-slot-games-high-payout-tips__text-block {
  flex: 1;
  min-width: 300px;
  line-height: 1.7;
  font-size: 1.1rem;
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__text-block p {
  margin-bottom: 15px;
}

.page-slot-games-high-payout-tips__text-block--light {
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.page-slot-games-high-payout-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

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

.page-slot-games-high-payout-tips__card {
  background-color: var(--page-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--page-border-color);
  transition: transform 0.3s ease;
  color: var(--page-text-main);
  min-height: 200px;
}

.page-slot-games-high-payout-tips__card:hover {
  transform: translateY(-5px);
}

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

.page-slot-games-high-payout-tips__card-text {
  font-size: 1rem;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

.page-slot-games-high-payout-tips__cta-center {
  text-align: center;
  margin-top: 20px;
}

.page-slot-games-high-payout-tips__ordered-list,
.page-slot-games-high-payout-tips__unordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__unordered-list {
  list-style-type: disc;
}

.page-slot-games-high-payout-tips__ordered-list li,
.page-slot-games-high-payout-tips__unordered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-slot-games-high-payout-tips__unordered-list--light li {
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__sub-title {
  font-size: 1.8rem;
  color: var(--page-gold-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-slot-games-high-payout-tips__sub-title--light {
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-high-payout-tips__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main);
}

.page-slot-games-high-payout-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--page-gold-color);
  list-style: none; /* For details/summary */
}

.page-slot-games-high-payout-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-high-payout-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  color: var(--page-glow-color);
}

.page-slot-games-high-payout-tips__faq-item[open] .page-slot-games-high-payout-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-high-payout-tips__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--page-text-secondary);
}

.page-slot-games-high-payout-tips__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-deep-green);
}

.page-slot-games-high-payout-tips__description {
  font-size: 1.2rem;
  color: var(--page-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games-high-payout-tips__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games-high-payout-tips__content-grid--reverse {
    flex-direction: column;
  }

  .page-slot-games-high-payout-tips__hero-content {
    margin-top: -100px;
  }

  .page-slot-games-high-payout-tips__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-slot-games-high-payout-tips__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }

  .page-slot-games-high-payout-tips__card {
    padding: 25px;
  }

  .page-slot-games-high-payout-tips__card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-slot-games-high-payout-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-high-payout-tips__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-high-payout-tips__hero-content {
    margin-top: -80px;
    padding: 0 15px;
  }

  .page-slot-games-high-payout-tips__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-slot-games-high-payout-tips__hero-description {
    font-size: 1rem;
  }

  .page-slot-games-high-payout-tips__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }

  .page-slot-games-high-payout-tips__section {
    padding: 40px 0;
  }

  .page-slot-games-high-payout-tips__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-high-payout-tips__section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-slot-games-high-payout-tips__text-block {
    font-size: 1rem;
  }

  .page-slot-games-high-payout-tips__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-slot-games-high-payout-tips__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games-high-payout-tips__card {
    padding: 20px;
    min-height: unset;
  }

  .page-slot-games-high-payout-tips__card-title {
    font-size: 1.2rem;
  }

  .page-slot-games-high-payout-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-slot-games-high-payout-tips__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px 20px;
  }

  .page-slot-games-high-payout-tips__cta-section {
    padding: 60px 0;
  }

  .page-slot-games-high-payout-tips__description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-slot-games-high-payout-tips__ordered-list,
  .page-slot-games-high-payout-tips__unordered-list {
    padding-left: 20px;
  }

  .page-slot-games-high-payout-tips__sub-title {
    font-size: 1.6rem;
  }
}

/* Ensure all images and their containers are responsive on mobile */
.page-slot-games-high-payout-tips img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-slot-games-high-payout-tips__section,
.page-slot-games-high-payout-tips__card,
.page-slot-games-high-payout-tips__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-slot-games-high-payout-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games-high-payout-tips__section,
  .page-slot-games-high-payout-tips__card,
  .page-slot-games-high-payout-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games-high-payout-tips__hero-section {
    padding-top: 10px !important;
  }

  .page-slot-games-high-payout-tips__cta-button,
  .page-slot-games-high-payout-tips__btn-primary,
  .page-slot-games-high-payout-tips__btn-secondary,
  .page-slot-games-high-payout-tips a[class*="button"],
  .page-slot-games-high-payout-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games-high-payout-tips__cta-buttons,
  .page-slot-games-high-payout-tips__button-group,
  .page-slot-games-high-payout-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-slot-games-high-payout-tips__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}