/* style/blog-2024-best-betting-app-review.css */
.page-blog-2024-best-betting-app-review {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--background-color, #08160F);
}

.page-blog-2024-best-betting-app-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-2024-best-betting-app-review__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-blog-2024-best-betting-app-review__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-main, #F2FFF6);
}

/* Hero Section */
.page-blog-2024-best-betting-app-review__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0; /* Important: handled by body padding-top */
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--background-color, #08160F);
    overflow: hidden;
}

.page-blog-2024-best-betting-app-review__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-blog-2024-best-betting-app-review__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-2024-best-betting-app-review__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-blog-2024-best-betting-app-review__main-title {
    font-size: clamp(2em, 3.5vw, 3em); /* H1 font size with clamp */
    font-weight: 700;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-2024-best-betting-app-review__description {
    font-size: 1.2em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-2024-best-betting-app-review__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-2024-best-betting-app-review__btn-primary,
.page-blog-2024-best-betting-app-review__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-2024-best-betting-app-review__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-2024-best-betting-app-review__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-2024-best-betting-app-review__btn-secondary {
    background: transparent;
    color: var(--glow-color, #57E38D);
    border: 2px solid var(--glow-color, #57E38D);
}

.page-blog-2024-best-betting-app-review__btn-secondary:hover {
    background: var(--glow-color, #57E38D);
    color: var(--background-color, #08160F);
}

/* Intro Section */
.page-blog-2024-best-betting-app-review__intro-section {
    padding: 60px 0;
    background-color: var(--card-bg-color, #11271B);
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__intro-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__intro-section .page-blog-2024-best-betting-app-review__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Criteria Section */
.page-blog-2024-best-betting-app-review__criteria-section {
    padding: 60px 0;
    background-color: var(--deep-green-color, #0A4B2C);
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__criteria-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-2024-best-betting-app-review__card {
    background-color: var(--card-bg-color, #11271B);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--text-main, #F2FFF6);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.page-blog-2024-best-betting-app-review__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--glow-color, #57E38D);
    margin-bottom: 15px;
}

.page-blog-2024-best-betting-app-review__card-image {
    width: 100%;
    max-width: 200px; /* Ensure images are not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: center;
}

/* Top Apps Section */
.page-blog-2024-best-betting-app-review__top-apps-section {
    padding: 60px 0;
    background-color: var(--background-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__top-apps-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__top-apps-section .page-blog-2024-best-betting-app-review__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-2024-best-betting-app-review__app-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-blog-2024-best-betting-app-review__app-card {
    background-color: var(--card-bg-color, #11271B);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: var(--text-main, #F2FFF6);
    height: 100%;
}

.page-blog-2024-best-betting-app-review__app-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-blog-2024-best-betting-app-review__app-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog-2024-best-betting-app-review__app-name {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--glow-color, #57E38D);
    margin-bottom: 15px;
}

.page-blog-2024-best-betting-app-review__app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: var(--text-secondary, #A7D9B8);
    flex-grow: 1;
}

.page-blog-2024-best-betting-app-review__app-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-blog-2024-best-betting-app-review__app-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 0.9em;
}

/* Guide Section */
.page-blog-2024-best-betting-app-review__guide-section {
    padding: 60px 0;
    background-color: var(--deep-green-color, #0A4B2C);
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__guide-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__guide-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-blog-2024-best-betting-app-review__guide-steps {
    flex: 1;
}

.page-blog-2024-best-betting-app-review__guide-steps h3 {
    font-size: 1.8em;
    color: var(--glow-color, #57E38D);
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-blog-2024-best-betting-app-review__guide-steps p,
.page-blog-2024-best-betting-app-review__guide-steps ol {
    margin-bottom: 15px;
    color: var(--text-secondary, #A7D9B8);
}

.page-blog-2024-best-betting-app-review__guide-steps ol {
    list-style-type: decimal;
    margin-left: 25px;
}

.page-blog-2024-best-betting-app-review__guide-steps ol li {
    margin-bottom: 10px;
}

.page-blog-2024-best-betting-app-review__guide-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-blog-2024-best-betting-app-review__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-2024-best-betting-app-review__btn-block {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    text-align: center;
}

/* Tips Section */
.page-blog-2024-best-betting-app-review__tips-section {
    padding: 60px 0;
    background-color: var(--background-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__tips-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__responsible-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-2024-best-betting-app-review__responsible-cta p {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-2024-best-betting-app-review__faq-section {
    padding: 60px 0;
    background-color: var(--deep-green-color, #0A4B2C);
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__faq-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-blog-2024-best-betting-app-review__faq-item {
    background-color: var(--card-bg-color, #11271B);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-2024-best-betting-app-review__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main, #F2FFF6);
    background-color: var(--card-bg-color, #11271B);
    list-style: none;
}

.page-blog-2024-best-betting-app-review__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-2024-best-betting-app-review__faq-question::marker {
    display: none;
}

.page-blog-2024-best-betting-app-review__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--glow-color, #57E38D);
    transition: transform 0.3s ease;
}

.page-blog-2024-best-betting-app-review__faq-item[open] .page-blog-2024-best-betting-app-review__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-2024-best-betting-app-review__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    line-height: 1.6;
}

.page-blog-2024-best-betting-app-review__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-2024-best-betting-app-review__faq-answer .page-blog-2024-best-betting-app-review__btn-secondary {
    margin-top: 10px;
}

/* Conclusion Section */
.page-blog-2024-best-betting-app-review__conclusion-section {
    padding: 60px 0;
    background-color: var(--card-bg-color, #11271B);
    text-align: center;
    color: var(--text-main, #F2FFF6);
}

.page-blog-2024-best-betting-app-review__conclusion-section .page-blog-2024-best-betting-app-review__section-title {
    color: var(--gold-color, #F2C14E);
}

.page-blog-2024-best-betting-app-review__conclusion-section .page-blog-2024-best-betting-app-review__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-2024-best-betting-app-review__main-title {
        font-size: clamp(2em, 4vw, 2.8em);
    }

    .page-blog-2024-best-betting-app-review__app-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-2024-best-betting-app-review__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-2024-best-betting-app-review__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-blog-2024-best-betting-app-review__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-blog-2024-best-betting-app-review__description {
        font-size: 1em;
    }

    .page-blog-2024-best-betting-app-review__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-2024-best-betting-app-review__btn-primary,
    .page-blog-2024-best-betting-app-review__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-2024-best-betting-app-review__hero-section {
        padding-bottom: 40px;
        padding-top: 0 !important;
    }

    .page-blog-2024-best-betting-app-review__hero-image-wrapper {
        max-height: 300px;
    }

    .page-blog-2024-best-betting-app-review__intro-section,
    .page-blog-2024-best-betting-app-review__criteria-section,
    .page-blog-2024-best-betting-app-review__top-apps-section,
    .page-blog-2024-best-betting-app-review__guide-section,
    .page-blog-2024-best-betting-app-review__tips-section,
    .page-blog-2024-best-betting-app-review__faq-section,
    .page-blog-2024-best-betting-app-review__conclusion-section {
        padding: 40px 0;
    }

    .page-blog-2024-best-betting-app-review__grid {
        grid-template-columns: 1fr;
    }

    .page-blog-2024-best-betting-app-review__app-list {
        grid-template-columns: 1fr;
    }

    .page-blog-2024-best-betting-app-review__app-image {
        height: 200px;
    }

    .page-blog-2024-best-betting-app-review__guide-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-blog-2024-best-betting-app-review__guide-steps h3 {
        font-size: 1.5em;
    }

    .page-blog-2024-best-betting-app-review__btn-block {
        width: 100%;
    }

    .page-blog-2024-best-betting-app-review__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-blog-2024-best-betting-app-review__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 1em;
    }

    /* Universal image and container rules for mobile */
    .page-blog-2024-best-betting-app-review img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Exclude specific images from height:auto to maintain object-fit */
    .page-blog-2024-best-betting-app-review__app-image,
    .page-blog-2024-best-betting-app-review__hero-image {
        height: auto !important; /* Managed by parent max-height or specific height */
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .page-blog-2024-best-betting-app-review__card-image,
    .page-blog-2024-best-betting-app-review__guide-image {
        height: auto !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* Containers for mobile */
    .page-blog-2024-best-betting-app-review__container,
    .page-blog-2024-best-betting-app-review__grid,
    .page-blog-2024-best-betting-app-review__app-list,
    .page-blog-2024-best-betting-app-review__app-card,
    .page-blog-2024-best-betting-app-review__card,
    .page-blog-2024-best-betting-app-review__faq-list,
    .page-blog-2024-best-betting-app-review__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* LOGO carousel specific rules (not present in this page, but as a mandatory placeholder for CSS output) */
    .page-blog-2024-best-betting-app-review__logo-carousel-section {
        padding: 50px 15px 20px;
    }
    .page-blog-2024-best-betting-app-review__logo-item {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        box-sizing: border-box;
    }
}