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

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

.page-slot-games-high-payout-guide {
  color: var(--vbet-color-text-main); /* Assuming dark body background from shared.css */
  background-color: var(--vbet-color-background);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-high-payout-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--vbet-color-deep-green);
  overflow: hidden;
}

.page-slot-games-high-payout-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-slot-games-high-payout-guide__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
  border-radius: 8px;
  margin-top: -100px; /* Adjust as needed for visual overlap without DOM overlay */
  z-index: 1;
  box-sizing: border-box;
  transform: translateY(-50px); /* Move up slightly to overlap image visually, not via absolute positioning */
}

.page-slot-games-high-payout-guide__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--vbet-color-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-slot-games-high-payout-guide__description {
  font-size: 1.15rem;
  color: var(--vbet-color-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-high-payout-guide__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--vbet-color-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games-high-payout-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--vbet-color-glow);
  border-radius: 2px;
}

.page-slot-games-high-payout-guide__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--vbet-color-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-high-payout-guide__text-block {
  font-size: 1.05rem;
  color: var(--vbet-color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-slot-games-high-payout-guide__text-block a {
  color: var(--vbet-color-gold);
  text-decoration: underline;
}

.page-slot-games-high-payout-guide__text-block a:hover {
  color: var(--vbet-color-glow);
}

.page-slot-games-high-payout-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-slot-games-high-payout-guide__btn-primary {
  background: linear-gradient(180deg, var(--vbet-color-button-gradient-start) 0%, var(--vbet-color-button-gradient-end) 100%);
  color: var(--vbet-color-text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games-high-payout-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-slot-games-high-payout-guide__btn-secondary {
  background: var(--vbet-color-card-bg);
  color: var(--vbet-color-primary);
  border: 2px solid var(--vbet-color-primary);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.2);
}

.page-slot-games-high-payout-guide__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--vbet-color-primary);
  color: var(--vbet-color-text-main);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.4);
}

.page-slot-games-high-payout-guide__intro-section,
.page-slot-games-high-payout-guide__login-section,
.page-slot-games-high-payout-guide__rtp-section,
.page-slot-games-high-payout-guide__selection-section,
.page-slot-games-high-payout-guide__strategy-section,
.page-slot-games-high-payout-guide__cta-section {
  padding: 60px 0;
  background-color: var(--vbet-color-background);
}

.page-slot-games-high-payout-guide__login-section,
.page-slot-games-high-payout-guide__rtp-section,
.page-slot-games-high-payout-guide__selection-section,
.page-slot-games-high-payout-guide__strategy-section {
  border-top: 1px solid var(--vbet-color-divider);
}

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

.page-slot-games-high-payout-guide__ordered-list,
.page-slot-games-high-payout-guide__unordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-slot-games-high-payout-guide__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--vbet-color-text-main);
}

.page-slot-games-high-payout-guide__ordered-list .page-slot-games-high-payout-guide__list-item::before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  color: var(--vbet-color-gold);
  font-weight: bold;
}

.page-slot-games-high-payout-guide__unordered-list .page-slot-games-high-payout-guide__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--vbet-color-primary);
  font-size: 1.2em;
  line-height: 1;
}

.page-slot-games-high-payout-guide__featured-games {
  padding: 60px 0;
  background-color: var(--vbet-color-deep-green);
  border-top: 1px solid var(--vbet-color-divider);
}

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

.page-slot-games-high-payout-guide__game-card {
  background-color: var(--vbet-color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-high-payout-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-high-payout-guide__card-title {
  font-size: 1.4rem;
  color: var(--vbet-color-gold);
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-slot-games-high-payout-guide__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-slot-games-high-payout-guide__card-title a:hover {
  color: var(--vbet-color-glow);
}

.page-slot-games-high-payout-guide__card-description {
  font-size: 0.95rem;
  color: var(--vbet-color-text-secondary);
  margin: 0 15px 20px;
  flex-grow: 1;
}

.page-slot-games-high-payout-guide__card-button {
  margin: 0 15px;
  width: calc(100% - 30px);
}

.page-slot-games-high-payout-guide__faq-section {
  padding: 60px 0;
  background-color: var(--vbet-color-background);
  border-top: 1px solid var(--vbet-color-divider);
}

.page-slot-games-high-payout-guide__faq-list {
  margin-top: 40px;
}

.page-slot-games-high-payout-guide__faq-item {
  background-color: var(--vbet-color-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-slot-games-high-payout-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--vbet-color-text-main);
  cursor: pointer;
  background-color: var(--vbet-color-deep-green);
  border-bottom: 1px solid var(--vbet-color-divider);
  list-style: none; /* For details/summary */
}

.page-slot-games-high-payout-guide__faq-item[open] .page-slot-games-high-payout-guide__faq-question {
  border-bottom: 1px solid var(--vbet-color-border);
}

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

.page-slot-games-high-payout-guide__faq-qtext {
  flex-grow: 1;
  color: var(--vbet-color-text-main);
}

.page-slot-games-high-payout-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: lighter;
  color: var(--vbet-color-gold);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-slot-games-high-payout-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--vbet-color-text-secondary);
  line-height: 1.6;
}

.page-slot-games-high-payout-guide__faq-answer p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-high-payout-guide__hero-content {
    padding: 30px 20px;
    margin-top: -80px;
  }

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

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

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

  .page-slot-games-high-payout-guide__sub-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
  }

  .page-slot-games-high-payout-guide__game-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games-high-payout-guide__hero-content {
    padding: 20px 15px;
    margin-top: -60px;
    transform: translateY(-30px);
  }

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

  .page-slot-games-high-payout-guide__description {
    font-size: 0.95rem;
  }

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

  .page-slot-games-high-payout-guide__sub-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }

  .page-slot-games-high-payout-guide__cta-button {
    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;
  }

  .page-slot-games-high-payout-guide__game-cards {
    grid-template-columns: 1fr;
  }

  .page-slot-games-high-payout-guide__container {
    padding: 0 15px;
  }

  .page-slot-games-high-payout-guide__intro-section,
  .page-slot-games-high-payout-guide__login-section,
  .page-slot-games-high-payout-guide__rtp-section,
  .page-slot-games-high-payout-guide__selection-section,
  .page-slot-games-high-payout-guide__strategy-section,
  .page-slot-games-high-payout-guide__featured-games,
  .page-slot-games-high-payout-guide__cta-section,
  .page-slot-games-high-payout-guide__faq-section {
    padding: 40px 0;
  }

  /* Mobile image responsive */
  .page-slot-games-high-payout-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-high-payout-guide__section,
  .page-slot-games-high-payout-guide__card,
  .page-slot-games-high-payout-guide__container,
  .page-slot-games-high-payout-guide__hero-section,
  .page-slot-games-high-payout-guide__intro-section,
  .page-slot-games-high-payout-guide__login-section,
  .page-slot-games-high-payout-guide__rtp-section,
  .page-slot-games-high-payout-guide__selection-section,
  .page-slot-games-high-payout-guide__strategy-section,
  .page-slot-games-high-payout-guide__featured-games,
  .page-slot-games-high-payout-guide__cta-section,
  .page-slot-games-high-payout-guide__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games-high-payout-guide__hero-section {
    padding-top: 10px !important;
  }

  /* Mobile button responsive */
  .page-slot-games-high-payout-guide__cta-button,
  .page-slot-games-high-payout-guide__btn-primary,
  .page-slot-games-high-payout-guide__btn-secondary,
  .page-slot-games-high-payout-guide a[class*="button"],
  .page-slot-games-high-payout-guide 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-guide__cta-buttons,
  .page-slot-games-high-payout-guide__button-group,
  .page-slot-games-high-payout-guide__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;
    display: flex;
    flex-direction: column;
  }
}