/* style/blog-explore-100win-top-betting-games.css */

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

.page-blog-explore-100win-top-betting-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background body */
  background-color: var(--background-dark); /* Assuming body background is dark from shared.css */
}

.page-blog-explore-100win-top-betting-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-explore-100win-top-betting-games__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-explore-100win-top-betting-games__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-explore-100win-top-betting-games__btn-primary,
.page-blog-explore-100win-top-betting-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-explore-100win-top-betting-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Button text always white for brand color */
  border: none;
}

.page-blog-explore-100win-top-betting-games__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-explore-100win-top-betting-games__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-explore-100win-top-betting-games__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(17, 168, 78, 0.5);
}

/* Hero Section */
.page-blog-explore-100win-top-betting-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-explore-100win-top-betting-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-blog-explore-100win-top-betting-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for text contrast, no color change */
}

.page-blog-explore-100win-top-betting-games__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  position: relative; /* Ensure content is above any background elements */
  z-index: 1;
}

.page-blog-explore-100win-top-betting-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-explore-100win-top-betting-games__hero-description {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-explore-100win-top-betting-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styles */
.page-blog-explore-100win-top-betting-games__introduction-section,
.page-blog-explore-100win-top-betting-games__games-section,
.page-blog-explore-100win-top-betting-games__promotions-section,
.page-blog-explore-100win-top-betting-games__security-section,
.page-blog-explore-100win-top-betting-games__faq-section,
.page-blog-explore-100win-top-betting-games__cta-section {
  padding: 80px 0;
}

.page-blog-explore-100win-top-betting-games__light-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-explore-100win-top-betting-games__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-blog-explore-100win-top-betting-games__introduction-section .page-blog-explore-100win-top-betting-games__btn-secondary {
  margin-top: 20px;
}

.page-blog-explore-100win-top-betting-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Game Grid */
.page-blog-explore-100win-top-betting-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-explore-100win-top-betting-games__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-explore-100win-top-betting-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

.page-blog-explore-100win-top-betting-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-blog-explore-100win-top-betting-games__game-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-explore-100win-top-betting-games__game-title a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-blog-explore-100win-top-betting-games__game-title a:hover {
  text-decoration: underline;
}

.page-blog-explore-100win-top-betting-games__game-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-blog-explore-100win-top-betting-games__game-card .page-blog-explore-100win-top-betting-games__btn-primary {
  margin-top: 10px;
}

/* Promotions Section */
.page-blog-explore-100win-top-betting-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-explore-100win-top-betting-games__promo-card {
  background-color: var(--background-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-explore-100win-top-betting-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
}

.page-blog-explore-100win-top-betting-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-blog-explore-100win-top-betting-games__promo-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  padding: 20px 15px 10px;
}

.page-blog-explore-100win-top-betting-games__promo-description {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0 15px 20px;
}

/* Security Section */
.page-blog-explore-100win-top-betting-games__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-blog-explore-100win-top-betting-games__feature-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-explore-100win-top-betting-games__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--glow-color)); /* Glow effect, no color change */
}

.page-blog-explore-100win-top-betting-games__feature-title {
  font-size: 1.3rem;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-explore-100win-top-betting-games__feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-blog-explore-100win-top-betting-games__faq-list {
  margin-top: 50px;
}

.page-blog-explore-100win-top-betting-games__faq-item {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-explore-100win-top-betting-games__faq-item[open] {
  background-color: var(--card-bg);
  border-color: var(--primary-color);
}

.page-blog-explore-100win-top-betting-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: bold;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  list-style: none;
}

.page-blog-explore-100win-top-betting-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-explore-100win-top-betting-games__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-blog-explore-100win-top-betting-games__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-explore-100win-top-betting-games__faq-item[open] .page-blog-explore-100win-top-betting-games__faq-toggle {
  color: var(--primary-color);
}

.page-blog-explore-100win-top-betting-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-explore-100win-top-betting-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-explore-100win-top-betting-games__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-explore-100win-top-betting-games__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-explore-100win-top-betting-games__hero-content {
    margin-top: -50px;
    padding: 20px 15px;
  }

  .page-blog-explore-100win-top-betting-games__main-title {
    font-size: 2rem;
  }

  .page-blog-explore-100win-top-betting-games__hero-description {
    font-size: 1rem;
  }

  .page-blog-explore-100win-top-betting-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-explore-100win-top-betting-games__btn-primary,
  .page-blog-explore-100win-top-betting-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-explore-100win-top-betting-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-explore-100win-top-betting-games__introduction-section,
  .page-blog-explore-100win-top-betting-games__games-section,
  .page-blog-explore-100win-top-betting-games__promotions-section,
  .page-blog-explore-100win-top-betting-games__security-section,
  .page-blog-explore-100win-top-betting-games__faq-section,
  .page-blog-explore-100win-top-betting-games__cta-section {
    padding: 50px 0;
  }

  .page-blog-explore-100win-top-betting-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-explore-100win-top-betting-games__game-grid,
  .page-blog-explore-100win-top-betting-games__promo-grid,
  .page-blog-explore-100win-top-betting-games__security-features {
    grid-template-columns: 1fr;
  }

  .page-blog-explore-100win-top-betting-games__faq-question {
    font-size: 1rem;
  }

  .page-blog-explore-100win-top-betting-games__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-explore-100win-top-betting-games__video-section,
  .page-blog-explore-100win-top-betting-games__video-container,
  .page-blog-explore-100win-top-betting-games__video-wrapper,
  .page-blog-explore-100win-top-betting-games__section,
  .page-blog-explore-100win-top-betting-games__card,
  .page-blog-explore-100win-top-betting-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-explore-100win-top-betting-games__video-section {
    padding-top: 10px !important;
  }

  .page-blog-explore-100win-top-betting-games video,
  .page-blog-explore-100win-top-betting-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* Ensure images within content sections are at least 200px */
.page-blog-explore-100win-top-betting-games__game-image,
.page-blog-explore-100win-top-betting-games__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Icons can be smaller, but not below 200px if they are content images */
.page-blog-explore-100win-top-betting-games__feature-icon {
  width: 80px; /* This is an icon, not a content image. If it were a content image, it would need to be >=200px */
  height: 80px;
  min-width: 80px;
  min-height: 80px;
}

/* The prompt stated: "Any width or height less than 200 pixels" is forbidden for ALL images. This means feature-icon must also be 200x200. Adjusting. */
.page-blog-explore-100win-top-betting-games__feature-icon {
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
}