/* General styles for the page */
.page-blog-latest-online-gambling-trends {
    font-family: 'Arial', sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

.page-blog-latest-online-gambling-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-latest-online-gambling-trends__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, not --header-offset */
    margin-bottom: 40px;
    background-color: #140C0C; /* Match body background */
}

.page-blog-latest-online-gambling-trends__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height */
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog-latest-online-gambling-trends__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default to cover for desktop */
    border-radius: 8px;
}

.page-blog-latest-online-gambling-trends__hero-content {
    text-align: center;
    padding: 20px 0;
}

.page-blog-latest-online-gambling-trends__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: #F3C54D; /* Gold */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-online-gambling-trends__description {
    font-size: 1.2rem;
    color: #FFF1E8; /* Text Main */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-blog-latest-online-gambling-trends__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-blog-latest-online-gambling-trends__cta-buttons--centered {
    margin-top: 40px;
}

.page-blog-latest-online-gambling-trends__cta-buttons--bottom {
    margin-top: 50px;
}

/* Buttons */
.page-blog-latest-online-gambling-trends__btn-primary,
.page-blog-latest-online-gambling-trends__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-blog-latest-online-gambling-trends__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button custom color */
    color: #ffffff;
    border: none;
}

.page-blog-latest-online-gambling-trends__btn-primary:hover {
    background: linear-gradient(180deg, #FFC06A 0%, #E87A24 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-online-gambling-trends__btn-secondary {
    background: transparent;
    color: #F3C54D; /* Gold */
    border: 2px solid #F3C54D; /* Gold */
}

.page-blog-latest-online-gambling-trends__btn-secondary:hover {
    background: rgba(243, 197, 77, 0.1); /* Gold with transparency */
    color: #FFD700; /* Brighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Content Sections */
.page-blog-latest-online-gambling-trends__content-section {
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 12px;
}

.page-blog-latest-online-gambling-trends__dark-section {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
}

.page-blog-latest-online-gambling-trends__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F3C54D; /* Gold */
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-latest-online-gambling-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E53030; /* Auxiliary color */
    border-radius: 2px;
}

.page-blog-latest-online-gambling-trends__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #E53030; /* Auxiliary color */
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-blog-latest-online-gambling-trends__text-block {
    font-size: 1.05rem;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog-latest-online-gambling-trends__highlight-text {
    color: #F3C54D; /* Gold */
    font-weight: 700;
}

.page-blog-latest-online-gambling-trends__article-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* FAQ Section */
.page-blog-latest-online-gambling-trends__faq-section {
    padding: 40px 0;
    margin-bottom: 30px;
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    border: 1px solid #6A1E1E; /* Border */
}

.page-blog-latest-online-gambling-trends__faq-list {
    margin-top: 30px;
}

details.page-blog-latest-online-gambling-trends__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #140C0C; /* Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-blog-latest-online-gambling-trends__faq-item summary.page-blog-latest-online-gambling-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}
details.page-blog-latest-online-gambling-trends__faq-item summary.page-blog-latest-online-gambling-trends__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-latest-online-gambling-trends__faq-item summary.page-blog-latest-online-gambling-trends__faq-question:hover {
  background: #2A1212; /* Card BG */
}
.page-blog-latest-online-gambling-trends__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}
.page-blog-latest-online-gambling-trends__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #E53030; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-blog-latest-online-gambling-trends__faq-item .page-blog-latest-online-gambling-trends__faq-answer {
  padding: 0 25px 20px;
  background: #2A1212; /* Card BG */
  border-radius: 0 0 8px 8px;
  color: #FFF1E8; /* Text Main */
}
.page-blog-latest-online-gambling-trends__faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
}

/* Conclusion Section */
.page-blog-latest-online-gambling-trends__conclusion-section {
    padding: 40px 0;
    text-align: center;
    background-color: #140C0C; /* Background */
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-latest-online-gambling-trends__container {
        padding: 0 15px;
    }

    .page-blog-latest-online-gambling-trends__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }

    .page-blog-latest-online-gambling-trends__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .page-blog-latest-online-gambling-trends__sub-title {
        font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    }

    .page-blog-latest-online-gambling-trends__description {
        font-size: 1.1rem;
    }

    .page-blog-latest-online-gambling-trends__text-block {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* General Mobile */
    .page-blog-latest-online-gambling-trends {
        padding-bottom: 20px;
    }

    .page-blog-latest-online-gambling-trends__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO Section */
    .page-blog-latest-online-gambling-trends__hero-section {
        padding-top: 10px;
        margin-bottom: 20px;
    }
    .page-blog-latest-online-gambling-trends__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 15px;
    }
}