/* style/blog-most-popular-online-casino-games-2024.css */
.page-blog-most-popular-online-casino-games-2024 {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-most-popular-online-casino-games-2024__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(17, 40, 27, 0.8) 0%, rgba(8, 22, 15, 0.8) 100%);
}

.page-blog-most-popular-online-casino-games-2024__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  border-radius: 10px;
}

.page-blog-most-popular-online-casino-games-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-most-popular-online-casino-games-2024__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-most-popular-online-casino-games-2024__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2C14E; /* Gold for main title */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-most-popular-online-casino-games-2024__intro-text {
  font-size: 1.2em;
  color: #F2FFF6;
  margin-bottom: 30px;
}

.page-blog-most-popular-online-casino-games-2024__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-most-popular-online-casino-games-2024__btn-primary,
.page-blog-most-popular-online-casino-games-2024__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-most-popular-online-casino-games-2024__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-most-popular-online-casino-games-2024__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-most-popular-online-casino-games-2024__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-most-popular-online-casino-games-2024__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-most-popular-online-casino-games-2024__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-blog-most-popular-online-casino-games-2024__section:nth-of-type(even) {
  background-color: #111e16;
}

.page-blog-most-popular-online-casino-games-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-most-popular-online-casino-games-2024__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-most-popular-online-casino-games-2024__subsection-title {
  font-size: 1.8em;
  color: #22C768;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-most-popular-online-casino-games-2024__list {
  list-style: disc;
  margin-left: 20px;
  color: #F2FFF6;
}

.page-blog-most-popular-online-casino-games-2024__list li {
  margin-bottom: 10px;
}

.page-blog-most-popular-online-casino-games-2024__game-card {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-most-popular-online-casino-games-2024__game-title {
  font-size: 2em;
  color: #F2C14E;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-most-popular-online-casino-games-2024__game-subtitle {
  font-size: 1.5em;
  color: #A7D9B8;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-blog-most-popular-online-casino-games-2024__game-image,
.page-blog-most-popular-online-casino-games-2024__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px auto;
  object-fit: cover;
}

.page-blog-most-popular-online-casino-games-2024__faq-list {
  margin-top: 30px;
}

.page-blog-most-popular-online-casino-games-2024__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-most-popular-online-casino-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green for FAQ question background */
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-most-popular-online-casino-games-2024__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-most-popular-online-casino-games-2024__faq-question::marker {
  display: none;
}

.page-blog-most-popular-online-casino-games-2024__faq-qtext {
  flex-grow: 1;
}

.page-blog-most-popular-online-casino-games-2024__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow color for toggle */
}

.page-blog-most-popular-online-casino-games-2024__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  line-height: 1.5;
  background-color: #11271B;
}

.page-blog-most-popular-online-casino-games-2024__faq-item[open] .page-blog-most-popular-online-casino-games-2024__faq-question {
  border-bottom: none;
}

.page-blog-most-popular-online-casino-games-2024 .highlight {
  color: #57E38D;
  font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-most-popular-online-casino-games-2024 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-most-popular-online-casino-games-2024__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-blog-most-popular-online-casino-games-2024__main-title {
    font-size: 2em;
  }

  .page-blog-most-popular-online-casino-games-2024__intro-text {
    font-size: 1em;
  }

  .page-blog-most-popular-online-casino-games-2024__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-most-popular-online-casino-games-2024__btn-primary,
  .page-blog-most-popular-online-casino-games-2024__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

  .page-blog-most-popular-online-casino-games-2024__section {
    padding: 40px 0;
  }

  .page-blog-most-popular-online-casino-games-2024__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-most-popular-online-casino-games-2024__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-most-popular-online-casino-games-2024__subsection-title {
    font-size: 1.5em;
  }

  .page-blog-most-popular-online-casino-games-2024__game-card {
    padding: 20px;
  }

  .page-blog-most-popular-online-casino-games-2024__game-title {
    font-size: 1.8em;
  }

  .page-blog-most-popular-online-casino-games-2024__game-subtitle {
    font-size: 1.2em;
  }

  .page-blog-most-popular-online-casino-games-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-most-popular-online-casino-games-2024__hero-image-wrapper,
  .page-blog-most-popular-online-casino-games-2024__game-card,
  .page-blog-most-popular-online-casino-games-2024__faq-item,
  .page-blog-most-popular-online-casino-games-2024__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-most-popular-online-casino-games-2024__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-most-popular-online-casino-games-2024__faq-answer {
    font-size: 0.95em;
    padding: 15px;
  }
}