.page-resources-how-to-choose-best-betting-game {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: #0d1117; /* Ensure consistency with body background */
}

.page-resources-how-to-choose-best-betting-game__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header offset for main content */
.page-resources-how-to-choose-best-betting-game__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset */
    position: relative;
    overflow: hidden;
    background-color: #0d1117;
    color: #ffffff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-resources-how-to-choose-best-betting-game__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-how-to-choose-best-betting-game__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B505; /* Luxury Gold for emphasis */
    line-height: 1.2;
}

.page-resources-how-to-choose-best-betting-game__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources-how-to-choose-best-betting-game__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-how-to-choose-best-betting-game__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-resources-how-to-choose-best-betting-game__section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for sections */
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-betting-game__section:nth-of-type(odd) {
    background-color: #0d1117; /* Alternating dark backgrounds */
}

.page-resources-how-to-choose-best-betting-game__section-title {
    font-size: 2.5em;
    color: #E3B505;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-how-to-choose-best-betting-game__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0A2463;
    border-radius: 2px;
}

.page-resources-how-to-choose-best-betting-game__description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-how-to-choose-best-betting-game__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-how-to-choose-best-betting-game__grid--3-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-resources-how-to-choose-best-betting-game__card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white for cards on dark background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-choose-best-betting-game__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-best-betting-game__card-title {
    font-size: 1.5em;
    color: #E3B505;
    margin-bottom: 15px;
}

.page-resources-how-to-choose-best-betting-game__card p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-resources-how-to-choose-best-betting-game__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-how-to-choose-best-betting-game__content-block {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-betting-game__content-block-title {
    font-size: 1.8em;
    color: #E3B505;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-resources-how-to-choose-best-betting-game__content-block p {
    margin-bottom: 15px;
}

.page-resources-how-to-choose-best-betting-game__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-best-betting-game__image--right {
    margin-bottom: 30px;
}

/* Buttons */
.page-resources-how-to-choose-best-betting-game__btn-primary,
.page-resources-how-to-choose-best-betting-game__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin-top: auto; /* Push to bottom of card */
}

.page-resources-how-to-choose-best-betting-game__btn-primary {
    background-color: #E3B505; /* Luxury Gold */
    color: #0A2463; /* Midnight Blue text */
    border: 2px solid #E3B505;
}

.page-resources-how-to-choose-best-betting-game__btn-primary:hover {
    background-color: #d1a404;
    border-color: #d1a404;
}

.page-resources-how-to-choose-best-betting-game__btn-secondary {
    background-color: transparent;
    color: #E3B505; /* Luxury Gold text */
    border: 2px solid #E3B505;
    margin-left: 10px; /* For multiple buttons */
}

.page-resources-how-to-choose-best-betting-game__btn-secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
}

.page-resources-how-to-choose-best-betting-game__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-how-to-choose-best-betting-game__cta-wrapper--bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.page-resources-how-to-choose-best-betting-game__faq-section {
    background-color: #0d1117;
}

.page-resources-how-to-choose-best-betting-game__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-how-to-choose-best-betting-game__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-best-betting-game__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: #E3B505;
    font-weight: bold;
    background-color: #0A2463; /* Midnight Blue for question background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-best-betting-game__faq-question:hover {
    background-color: #1b3a7a;
}

.page-resources-how-to-choose-best-betting-game__faq-question h3 {
    margin: 0;
    color: #E3B505;
}

.page-resources-how-to-choose-best-betting-game__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #E3B505;
}

.page-resources-how-to-choose-best-betting-game__faq-item.active .page-resources-how-to-choose-best-betting-game__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-how-to-choose-best-betting-game__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-betting-game__faq-item.active .page-resources-how-to-choose-best-betting-game__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value for content */
    padding: 20px 25px;
}

.page-resources-how-to-choose-best-betting-game__faq-answer p {
    margin: 0;
}

.page-resources-how-to-choose-best-betting-game__faq-answer a {
    color: #E3B505;
    text-decoration: underline;
}

.page-resources-how-to-choose-best-betting-game__faq-answer a:hover {
    color: #ffffff;
}

/* Dark background section specific styles */
.page-resources-how-to-choose-best-betting-game__dark-bg {
    background-color: #0A2463; /* Midnight Blue */
    color: #ffffff;
}

.page-resources-how-to-choose-best-betting-game__dark-bg .page-resources-how-to-choose-best-betting-game__section-title {
    color: #E3B505;
}

.page-resources-how-to-choose-best-betting-game__dark-bg .page-resources-how-to-choose-best-betting-game__card {
    background-color: rgba(255, 255, 255, 0.1); /* Lighter card on dark blue background */
}

.page-resources-how-to-choose-best-betting-game__dark-bg .page-resources-how-to-choose-best-betting-game__card-title {
    color: #E3B505;
}

/* Conclusion Section */
.page-resources-how-to-choose-best-betting-game__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-resources-how-to-choose-best-betting-game__conclusion p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-how-to-choose-best-betting-game__hero-title {
        font-size: 2.8em;
    }
    .page-resources-how-to-choose-best-betting-game__hero-description {
        font-size: 1.1em;
    }
    .page-resources-how-to-choose-best-betting-game__section-title {
        font-size: 2em;
    }
    .page-resources-how-to-choose-best-betting-game__card-title {
        font-size: 1.3em;
    }
    .page-resources-how-to-choose-best-betting-game__content-block-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-choose-best-betting-game__hero-title {
        font-size: 2.2em;
    }
    .page-resources-how-to-choose-best-betting-game__hero-description {
        font-size: 1em;
    }
}