.page-blog-how-to-bet-effectively {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--bg-color, #08160F); /* Overall page background */
}

/* Hero Section */
.page-blog-how-to-bet-effectively__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-blog-how-to-bet-effectively__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-blog-how-to-bet-effectively__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-how-to-bet-effectively__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-bet-effectively__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main, #F2FFF6);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-blog-how-to-bet-effectively__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

/* General Section Styles */
.page-blog-how-to-bet-effectively__section {
    padding: 80px 20px;
    text-align: center;
}

.page-blog-how-to-bet-effectively__dark-bg {
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-bet-effectively__light-bg {
    background-color: #ffffff; /* Using white for contrast, as per contrast rules */
    color: #333333; /* Dark text for light background */
}

.page-blog-how-to-bet-effectively__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-how-to-bet-effectively__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: inherit; /* Inherits from section, either text-main or #333333 */
}

.page-blog-how-bet-effectively__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

/* Buttons */
a.page-blog-how-to-bet-effectively__btn-primary,
button.page-blog-how-to-bet-effectively__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

a.page-blog-how-to-bet-effectively__btn-primary:hover,
button.page-blog-how-to-bet-effectively__btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

a.page-blog-how-to-bet-effectively__btn-secondary,
button.page-blog-how-to-bet-effectively__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-main, #F2FFF6); /* Default for dark background */
    border: 2px solid var(--border-color, #2E7A4E);
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}
.page-blog-how-to-bet-effectively__light-bg a.page-blog-how-to-bet-effectively__btn-secondary,
.page-blog-how-to-bet-effectively__light-bg button.page-blog-how-to-bet-effectively__btn-secondary {
    color: #11A84E; /* Brand color for light background */
    border-color: #11A84E;
}

a.page-blog-how-to-bet-effectively__btn-secondary:hover,
button.page-blog-how-to-bet-effectively__btn-secondary:hover {
    background-color: var(--border-color, #2E7A4E);
    color: #ffffff;
}
.page-blog-how-to-bet-effectively__light-bg a.page-blog-how-to-bet-effectively__btn-secondary:hover,
.page-blog-how-to-bet-effectively__light-bg button.page-blog-how-to-bet-effectively__btn-secondary:hover {
    background-color: #11A84E;
    color: #ffffff;
}

/* Features Grid */
.page-blog-how-to-bet-effectively__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-bet-effectively__feature-item {
    background-color: var(--card-bg, #11271B); /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-main, #F2FFF6);
}
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__feature-item {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-blog-how-to-bet-effectively__feature-icon {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-bet-effectively__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-how-to-bet-effectively__feature-text {
    font-size: 1em;
    color: var(--text-secondary, #A7D9B8);
}
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__feature-text {
    color: #666666;
}

/* Steps Grid */
.page-blog-how-to-bet-effectively__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-bet-effectively__step-item {
    background-color: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-main, #F2FFF6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__step-item {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-blog-how-to-bet-effectively__step-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gold-color, #F2C14E); /* Using gold for step titles */
}

.page-blog-how-to-bet-effectively__step-text {
    font-size: 1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
    flex-grow: 1;
}
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__step-text {
    color: #666666;
}

/* Strategy Items */
.page-blog-how-to-bet-effectively__smart-strategies {
    padding-bottom: 0; /* Remove bottom padding as strategy items have their own spacing */
}

.page-blog-how-to-bet-effectively__strategy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-bet-effectively__strategy-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-bet-effectively__strategy-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-how-to-bet-effectively__strategy-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

/* Product Grid */
.page-blog-how-to-bet-effectively__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-bet-effectively__product-card {
    background-color: var(--card-bg, #11271B);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-main, #F2FFF6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-how-to-bet-effectively__product-image {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px auto;
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-how-to-bet-effectively__product-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-main, #F2FFF6);
}
.page-blog-how-to-bet-effectively__product-title a {
    color: var(--text-main, #F2FFF6);
    text-decoration: none;
}
.page-blog-how-to-bet-effectively__product-title a:hover {
    color: var(--glow-color, #57E38D);
}


.page-blog-how-to-bet-effectively__product-text {
    font-size: 0.95em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Safety Section */
.page-blog-how-to-bet-effectively__safety-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-blog-how-to-bet-effectively__safety-item {
    background-color: #ffffff; /* Use white for light-bg section for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333; /* Dark text for white background */
    border: 1px solid #e0e0e0;
}

.page-blog-how-to-bet-effectively__safety-subtitle {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #11A84E; /* Brand color for subtitles */
}

.page-blog-how-to-bet-effectively__safety-text {
    font-size: 1em;
    color: #666666;
}

/* FAQ Section */
.page-blog-how-to-bet-effectively__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-blog-how-to-bet-effectively__faq-item {
    background-color: var(--card-bg, #11271B);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-main, #F2FFF6);
}

.page-blog-how-to-bet-effectively__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--text-main, #F2FFF6);
    background-color: var(--deep-green, #0A4B2C); /* Deeper green for summary background */
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
}
.page-blog-how-to-bet-effectively__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-bet-effectively__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-bet-effectively__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color, #57E38D);
    transition: transform 0.3s ease;
}

.page-blog-how-to-bet-effectively__faq-item[open] .page-blog-how-to-bet-effectively__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-blog-how-to-bet-effectively__faq-answer {
    padding: 20px 25px;
    background-color: var(--card-bg, #11271B);
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
    border-top: none;
}
.page-blog-how-to-bet-effectively__faq-answer p {
    margin-bottom: 15px;
    color: var(--text-secondary, #A7D9B8);
}
.page-blog-how-to-bet-effectively__faq-answer .page-blog-how-to-bet-effectively__btn-secondary {
    margin-top: 10px;
    align-self: flex-start; /* Align button to left */
}

/* CTA Section */
.page-blog-how-to-bet-effectively__cta {
    padding: 60px 20px;
    background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Green Gold gradient */
}

.page-blog-how-to-bet-effectively__cta-content {
    max-width: 800px;
}

.page-blog-how-to-bet-effectively__cta .page-blog-how-to-bet-effectively__section-title {
    color: #ffffff;
}

.page-blog-how-to-bet-effectively__cta .page-blog-how-to-bet-effectively__section-description {
    color: #f0f0f0;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-how-to-bet-effectively {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-bet-effectively__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-blog-how-to-bet-effectively__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-how-to-bet-effectively__intro-text {
        font-size: 1em;
    }

    .page-blog-how-to-bet-effectively__section {
        padding: 50px 15px;
    }

    .page-blog-how-to-bet-effectively__section-title {
        font-size: 2em;
    }

    .page-blog-how-to-bet-effectively__section-description {
        font-size: 1em;
    }

    .page-blog-how-to-bet-effectively__features-grid,
    .page-blog-how-to-bet-effectively__steps-grid,
    .page-blog-how-to-bet-effectively__product-grid,
    .page-blog-how-to-bet-effectively__safety-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-bet-effectively__feature-item,
    .page-blog-how-to-bet-effectively__step-item,
    .page-blog-how-to-bet-effectively__product-card,
    .page-blog-how-to-bet-effectively__safety-item,
    .page-blog-how-to-bet-effectively__faq-item {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-bet-effectively__strategy-item {
        flex-direction: column !important; /* Ensure consistent column layout on mobile */
        margin-bottom: 40px;
    }

    .page-blog-how-to-bet-effectively__strategy-image {
        margin-bottom: 20px;
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Image responsive rules */
    .page-blog-how-to-bet-effectively img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Ensure min size */
        min-height: 200px !important; /* Ensure min size */
    }

    /* Container for images to prevent overflow */
    .page-blog-how-to-bet-effectively__container,
    .page-blog-how-to-bet-effectively__hero-image-wrapper,
    .page-blog-how-to-bet-effectively__features-grid,
    .page-blog-how-to-bet-effectively__steps-grid,
    .page-blog-how-to-bet-effectively__product-grid,
    .page-blog-how-to-bet-effectively__safety-list,
    .page-blog-how-to-bet-effectively__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Button responsive rules */
    .page-blog-how-to-bet-effectively__btn-primary,
    .page-blog-how-to-bet-effectively__btn-secondary,
    .page-blog-how-to-bet-effectively a[class*="button"],
    .page-blog-how-to-bet-effectively a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0;
        margin-right: 0;
    }

    .page-blog-how-to-bet-effectively__faq-answer .page-blog-how-to-bet-effectively__btn-secondary {
        align-self: center; /* Center button in FAQ answer on mobile */
    }

    /* Video responsive rules (if any video was added) */
    .page-blog-how-to-bet-effectively video,
    .page-blog-how-to-bet-effectively__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-blog-how-to-bet-effectively__video-section,
    .page-blog-how-to-bet-effectively__video-container,
    .page-blog-how-to-bet-effectively__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-blog-how-to-bet-effectively__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }
}

/* Color contrast adjustments for specific elements on light background */
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__section-title,
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__section-description,
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__feature-title,
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__strategy-title,
.page-blog-how-to-bet-effectively__light-bg .page-blog-how-to-bet-effectively__strategy-text {
    color: #333333; /* Ensure dark text on light background */
}