/* style/game-guides-slot-high-payout-tips.css */

/* Custom Colors */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient-start: #2AD16F;
  --color-button-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-game-guides-slot-high-payout-tips {
  font-family: Arial, sans-serif;
  color: var(--color-text-main); /* Default text color for the page */
  background-color: var(--color-background); /* Main background color */
}

.page-game-guides-slot-high-payout-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--color-deep-green);
  overflow: hidden;
}

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

.page-game-guides-slot-high-payout-tips__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-game-guides-slot-high-payout-tips__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  padding: 40px 20px 0;
  box-sizing: border-box;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow, but not *on* the image */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0) 0%, var(--color-background) 50%);
}

.page-game-guides-slot-high-payout-tips__main-title {
  color: var(--color-gold);
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-game-guides-slot-high-payout-tips__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.page-game-guides-slot-high-payout-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-game-guides-slot-high-payout-tips__btn-primary,
.page-game-guides-slot-high-payout-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-game-guides-slot-high-payout-tips__btn-primary {
  background: var(--color-button-gradient-start);
  background-image: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: var(--color-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slot-high-payout-tips__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-game-guides-slot-high-payout-tips__btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.page-game-guides-slot-high-payout-tips__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.page-game-guides-slot-high-payout-tips__btn-full-width {
  width: 100%;
  max-width: 400px; /* Limit max width for aesthetic reasons */
  margin: 0 auto;
}

.page-game-guides-slot-high-payout-tips__section {
  padding: 60px 0;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-divider);
}

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

.page-game-guides-slot-high-payout-tips__section-title {
  font-size: 2.5em;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-game-guides-slot-high-payout-tips__sub-title {
  font-size: 1.8em;
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  padding-left: 15px;
}

.page-game-guides-slot-high-payout-tips p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.page-game-guides-slot-high-payout-tips strong {
  color: var(--color-gold);
}

.page-game-guides-slot-high-payout-tips ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-game-guides-slot-high-payout-tips li {
  background-color: var(--color-card-bg);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-game-guides-slot-high-payout-tips li::before {
  content: '✔️';
  margin-right: 10px;
  color: var(--color-glow);
}

.page-game-guides-slot-high-payout-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover; /* Ensure images fill their space */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

/* FAQ Section */
.page-game-guides-slot-high-payout-tips__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-game-guides-slot-high-payout-tips__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: var(--color-text-main);
}

.page-game-guides-slot-high-payout-tips__faq-item summary {
  list-style: none;
}

.page-game-guides-slot-high-payout-tips__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-game-guides-slot-high-payout-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--color-gold);
  background-color: var(--color-deep-green);
  transition: background-color 0.3s ease;
}

.page-game-guides-slot-high-payout-tips__faq-question:hover {
  background-color: var(--color-primary);
}

.page-game-guides-slot-high-payout-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-game-guides-slot-high-payout-tips__faq-answer {
  padding: 20px 25px;
  background-color: var(--color-card-bg);
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-divider);
}

.page-game-guides-slot-high-payout-tips__faq-answer p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides-slot-high-payout-tips__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-game-guides-slot-high-payout-tips__section-title {
    font-size: 2em;
  }
  .page-game-guides-slot-high-payout-tips__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slot-high-payout-tips__hero-section {
    padding-bottom: 40px;
  }
  .page-game-guides-slot-high-payout-tips__hero-content {
    margin-top: -80px;
    padding-top: 20px;
  }
  .page-game-guides-slot-high-payout-tips__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em) !important;
  }
  .page-game-guides-slot-high-payout-tips__description {
    font-size: 0.95em;
  }
  .page-game-guides-slot-high-payout-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides-slot-high-payout-tips__btn-primary,
  .page-game-guides-slot-high-payout-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-game-guides-slot-high-payout-tips__section {
    padding: 40px 0;
  }
  .page-game-guides-slot-high-payout-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-guides-slot-high-payout-tips__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
  }
  .page-game-guides-slot-high-payout-tips p,
  .page-game-guides-slot-high-payout-tips li {
    font-size: 0.95em;
    line-height: 1.6;
  }
  .page-game-guides-slot-high-payout-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-game-guides-slot-high-payout-tips__container,
  .page-game-guides-slot-high-payout-tips__hero-image-wrapper,
  .page-game-guides-slot-high-payout-tips__hero-content,
  .page-game-guides-slot-high-payout-tips__cta-buttons,
  .page-game-guides-slot-high-payout-tips__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-game-guides-slot-high-payout-tips__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-game-guides-slot-high-payout-tips__faq-answer {
    padding: 15px 20px;
  }
}

/* Image color filter restriction */
.page-game-guides-slot-high-payout-tips img {
  filter: none; /* Absolutely no CSS filters to change image colors */
}

/* Ensure images are at least 200x200px for content areas */
.page-game-guides-slot-high-payout-tips__content-area img,
.page-game-guides-slot-high-payout-tips__section img {
  min-width: 200px;
  min-height: 200px;
  width: auto; /* Allow auto width for larger images in content, max-width 100% will handle responsiveness */
  height: auto;
}