/* style/blog-latest-igaming-trends.css */

/* Base styles for the page content, ensuring light text on dark background as per color scheme */
.page-blog-latest-igaming-trends {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Main text color */
  background-color: #0A0A0A; /* Page background */
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-latest-igaming-trends h1,
.page-blog-latest-igaming-trends h2,
.page-blog-latest-igaming-trends h3 {
  color: #FFD36B; /* Glow color for headings */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-latest-igaming-trends h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
  font-weight: 700;
  text-align: center;
}

.page-blog-latest-igaming-trends h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-blog-latest-igaming-trends h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog-latest-igaming-trends p {
  margin-bottom: 15px;
}

.page-blog-latest-igaming-trends a {
  color: #F2C14E; /* Primary color for links */
  text-decoration: none;
}

.page-blog-latest-igaming-trends a:hover {
  text-decoration: underline;
  color: #FFD36B; /* Auxiliary color on hover */
}

/* Image styles for content area - ensuring min-size and no filters */
.page-blog-latest-igaming-trends img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  filter: none; /* Absolutely no filter to change image color */
  -webkit-filter: none;
}

/* Container for content sections */
.page-blog-latest-igaming-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-latest-igaming-trends__hero-section {
  position: relative;
  background: #0A0A0A; /* Background color for hero if image isn't full width */
  padding-bottom: 50px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-blog-latest-igaming-trends__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height of the hero image wrapper */
  overflow: hidden;
}

.page-blog-latest-igaming-trends__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0; /* Hero image should not have rounded corners */
}

.page-blog-latest-igaming-trends__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-latest-igaming-trends__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-latest-igaming-trends__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* General Section Styles */
.page-blog-latest-igaming-trends__section {
  padding: 60px 0;
}

.page-blog-latest-igaming-trends__section--dark-bg {
  background-color: #111111; /* Card BG color */
}

.page-blog-latest-igaming-trends__section-title {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-blog-latest-igaming-trends__section-description {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-size: 1.05em;
}

/* Buttons */
.page-blog-latest-igaming-trends__btn-primary,
.page-blog-latest-igaming-trends__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-blog-latest-igaming-trends__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-blog-latest-igaming-trends__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-latest-igaming-trends__btn-secondary {
  background: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-blog-latest-igaming-trends__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* Image with Text Block Layout */
.page-blog-latest-igaming-trends__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-latest-igaming-trends__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-latest-igaming-trends__image-text-block .page-blog-latest-igaming-trends__content-image {
  flex: 1;
  min-width: 200px; /* Enforce minimum image size */
}

.page-blog-latest-igaming-trends__image-text-block .page-blog-latest-igaming-trends__text-content {
  flex: 1;
}

.page-blog-latest-igaming-trends__content-image--center {
  margin: 0 auto 30px auto;
  display: block;
}

.page-blog-latest-igaming-trends__content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-latest-igaming-trends__bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-blog-latest-igaming-trends__bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-blog-latest-igaming-trends__bullet-list li::before {
  content: '⚡'; /* Use an emoji as a custom bullet */
  position: absolute;
  left: 0;
  color: #FFD36B;
}

.page-blog-latest-igaming-trends__text-link {
  color: #FFD36B;
  font-weight: bold;
}

/* FAQ Section */
.page-blog-latest-igaming-trends__faq-section {
  padding-bottom: 80px;
}

.page-blog-latest-igaming-trends__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-blog-latest-igaming-trends__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-latest-igaming-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-latest-igaming-trends__faq-question:hover {
  background-color: #2a2a2a;
}

.page-blog-latest-igaming-trends__faq-question h3 {
  margin: 0;
  color: inherit; /* Inherit color from parent */
  font-size: 1em; /* Keep h3 within question size */
}

.page-blog-latest-igaming-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

.page-blog-latest-igaming-trends__faq-item.active .page-blog-latest-igaming-trends__faq-toggle {
  transform: rotate(45deg); /* Change to minus sign visually */
}

.page-blog-latest-igaming-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Ensure answer text is light */
}

.page-blog-latest-igaming-trends__faq-item.active .page-blog-latest-igaming-trends__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to reveal content */
  padding: 15px 25px;
}

/* Conclusion Section */
.page-blog-latest-igaming-trends__conclusion-section {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.page-blog-latest-igaming-trends__cta-buttons--center {
  margin-top: 40px;
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .page-blog-latest-igaming-trends {
    font-size: 15px;
  }

  .page-blog-latest-igaming-trends h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-latest-igaming-trends h2 {
    font-size: clamp(1.8rem, 7vw, 2rem);
  }

  .page-blog-latest-igaming-trends h3 {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }

  /* Fixed header spacing for mobile */
  .page-blog-latest-igaming-trends__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Adjust for mobile header height */
  }

  .page-blog-latest-igaming-trends__section {
    padding: 40px 0;
  }
}