/* style/resources-slots-high-payout-analysis.css */
.page-resources-slots-high-payout-analysis {
  font-family: 'Arial', sans-serif;
  color: #E5DFD3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-resources-slots-high-payout-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-slots-high-payout-analysis__hero {
  background: linear-gradient(135deg, #1A202C, #3A404C);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-slots-high-payout-analysis__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-slots-high-payout-analysis__hero-subtitle {
  font-size: 1.4em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-slots-high-payout-analysis__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-resources-slots-high-payout-analysis__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-slots-high-payout-analysis__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-slots-high-payout-analysis__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-slots-high-payout-analysis__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-resources-slots-high-payout-analysis__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-slots-high-payout-analysis__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-slots-high-payout-analysis__section {
  padding: 80px 0;
}

.page-resources-slots-high-payout-analysis__section--alt-bg {
  background-color: #2A303C;
}

.page-resources-slots-high-payout-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-slots-high-payout-analysis__section-description {
  font-size: 1.1em;
  color: #e5dfd3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-resources-slots-high-payout-analysis__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-resources-slots-high-payout-analysis__text-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #e5dfd3;
}

.page-resources-slots-high-payout-analysis__image-wrapper {
  text-align: center;
}

.page-resources-slots-high-payout-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-slots-high-payout-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-slots-high-payout-analysis__list li {
  background-color: #1A202C;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e5dfd3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-slots-high-payout-analysis__list li strong {
  color: #FFD700;
}

.page-resources-slots-high-payout-analysis__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-slots-high-payout-analysis__game-card {
  background-color: #2A303C;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-slots-high-payout-analysis__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-slots-high-payout-analysis__game-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-slots-high-payout-analysis__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-slots-high-payout-analysis__game-info {
  font-size: 1.1em;
  color: #e5dfd3;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-slots-high-payout-analysis__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-slots-high-payout-analysis__note {
  text-align: center;
  font-style: italic;
  color: #AAAAAA;
  margin-top: 40px;
  font-size: 0.9em;
}

.page-resources-slots-high-payout-analysis__bullet-list {
  list-style: disc inside;
  padding-left: 20px;
  color: #e5dfd3;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.05em;
}

.page-resources-slots-high-payout-analysis__bullet-list li {
  margin-bottom: 10px;
}

.page-resources-slots-high-payout-analysis__bullet-list li strong {
  color: #FFD700;
}

.page-resources-slots-high-payout-analysis__cta-box {
  background-color: #1A202C;
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-slots-high-payout-analysis__cta-box p {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 30px;
}

.page-resources-slots-high-payout-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-slots-high-payout-analysis__feature-item {
  background-color: #2A303C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-slots-high-payout-analysis__feature-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-slots-high-payout-analysis__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-slots-high-payout-analysis__feature-text {
  font-size: 1em;
  color: #CCCCCC;
}

.page-resources-slots-high-payout-analysis__section--final-cta {
  background-color: #1A202C;
  padding: 100px 0;
  text-align: center;
}

.page-resources-slots-high-payout-analysis__center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-slots-high-payout-analysis__center-content .page-resources-slots-high-payout-analysis__section-title {
  margin-bottom: 30px;
}

.page-resources-slots-high-payout-analysis__center-content .page-resources-slots-high-payout-analysis__section-description {
  margin-bottom: 50px;
}

.highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-slots-high-payout-analysis__hero-title {
    font-size: 2.8em;
  }
  .page-resources-slots-high-payout-analysis__hero-subtitle {
    font-size: 1.2em;
  }
  .page-resources-slots-high-payout-analysis__section-title {
    font-size: 2em;
  }
  .page-resources-slots-high-payout-analysis__content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-resources-slots-high-payout-analysis__text-content, .page-resources-slots-high-payout-analysis__image-wrapper {
    text-align: center;
  }
  .page-resources-slots-high-payout-analysis__game-cards,
  .page-resources-slots-high-payout-analysis__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-slots-high-payout-analysis__hero {
    padding: 80px 0;
  }
  .page-resources-slots-high-payout-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-resources-slots-high-payout-analysis__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-slots-high-payout-analysis__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-resources-slots-high-payout-analysis__section {
    padding: 60px 0;
  }
  .page-resources-slots-high-payout-analysis__section-title {
    font-size: 1.8em;
  }
  .page-resources-slots-high-payout-analysis__list li {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-resources-slots-high-payout-analysis__cta-box {
    padding: 30px;
  }
  .page-resources-slots-high-payout-analysis__cta-box p {
    font-size: 1.1em;
  }
  .page-resources-slots-high-payout-analysis__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-slots-high-payout-analysis__hero {
    padding: 60px 0;
  }
  .page-resources-slots-high-payout-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-resources-slots-high-payout-analysis__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-slots-high-payout-analysis__button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-resources-slots-high-payout-analysis__section {
    padding: 40px 0;
  }
  .page-resources-slots-high-payout-analysis__section-title {
    font-size: 1.5em;
  }
  .page-resources-slots-high-payout-analysis__game-cards,
  .page-resources-slots-high-payout-analysis__features-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-slots-high-payout-analysis__game-image {
    height: 150px;
  }
  .page-resources-slots-high-payout-analysis__game-title {
    font-size: 1.5em;
  }
  .page-resources-slots-high-payout-analysis__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-resources-slots-high-payout-analysis__feature-title {
    font-size: 1.4em;
  }
  .page-resources-slots-high-payout-analysis__cta-box {
    padding: 25px;
  }
  .page-resources-slots-high-payout-analysis__cta-box p {
    font-size: 1em;
  }
}