.page-betting-guide {
    color: #FFFFFF; /* Default text color for dark body background */
    font-family: 'Arial', sans-serif;
}

.page-betting-guide__hero-section {
    padding-top: 10px; /* Small top padding to avoid double header offset */
    padding-bottom: 60px;
    background-color: #017439;
}

.page-betting-guide__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 15px;
}

.page-betting-guide__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
    color: #FFFFFF;
}

.page-betting-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-betting-guide__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-betting-guide__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-betting-guide__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-betting-guide__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.page-betting-guide__section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
}

.page-betting-guide__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-betting-guide__dark-section {
    background-color: #017439;
    color: #FFFFFF;
}

/* Intro Section */
.page-betting-guide__intro-section .page-betting-guide__section-title,
.page-betting-guide__other-products-section .page-betting-guide__section-title,
.page-betting-guide__promo-section .page-betting-guide__section-title,
.page-betting-guide__conclusion-section .page-betting-guide__section-title {
    color: #017439;
}

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

.page-betting-guide__feature-item {
    text-align: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-betting-guide__icon-box-media {
    width: 160px;
    height: 160px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #017439;
    box-shadow: 0 0 0 5px rgba(1, 116, 57, 0.3);
}

.page-betting-guide__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure circular image */
    display: block;
}

.page-betting-guide__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #017439;
}

/* Guide Section */
.page-betting-guide__guide-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-guide__guide-step:last-child {
    margin-bottom: 0;
}

.page-betting-guide__step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFF00;
    text-align: center;
}

.page-betting-guide__step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: justify;
}

.page-betting-guide__step-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Other Products Section */
.page-betting-guide__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-guide__product-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guide__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-betting-guide__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-betting-guide__product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 15px 10px;
    color: #017439;
}

.page-betting-guide__product-title a {
    color: #017439;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-betting-guide__product-title a:hover {
    color: #C30808;
}

.page-betting-guide__product-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555555;
    padding: 0 15px 20px;
}

/* Tips Section */
.page-betting-guide__tips-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.page-betting-guide__tips-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-betting-guide__tips-list li strong {
    color: #FFFF00;
}

.page-betting-guide__tips-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Promo Section */
.page-betting-guide__promo-section .page-betting-guide__content-area {
    text-align: center;
}

/* FAQ Section */
.page-betting-guide__faq-list {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-betting-guide__faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-betting-guide__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFF00;
    cursor: pointer;
    list-style: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.page-betting-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-betting-guide__faq-item summary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-betting-guide__faq-qtext {
    flex-grow: 1;
}

.page-betting-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-betting-guide__faq-item[open] .page-betting-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-betting-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #FFFFFF;
    text-align: justify;
}

.page-betting-guide__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-betting-guide__conclusion-section .page-betting-guide__content-area {
    text-align: center;
}

.page-betting-guide__conclusion-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.page-betting-guide__btn-primary,
.page-betting-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-betting-guide__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login text color */
    border: 2px solid #C30808;
}

.page-betting-guide__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
    transform: translateY(-2px);
}

.page-betting-guide__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-betting-guide__light-bg .page-betting-guide__btn-secondary {
    color: #017439;
    border-color: #017439;
}

.page-betting-guide__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #017439;
    transform: translateY(-2px);
}

.page-betting-guide__light-bg .page-betting-guide__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

/* General image styling for content areas */
.page-betting-guide img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-betting-guide__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-betting-guide__hero-content {
        text-align: center;
    }
    .page-betting-guide__hero-cta-buttons {
        justify-content: center;
    }
    .page-betting-guide__feature-grid,
    .page-betting-guide__product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-betting-guide__step-title {
        font-size: 1.8rem;
    }
    .page-betting-guide__faq-item summary {
        font-size: 1.05rem;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .page-betting-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-betting-guide__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-betting-guide__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-betting-guide__hero-description {
        font-size: 1rem;
    }
    .page-betting-guide__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-betting-guide__btn-primary,
    .page-betting-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-betting-guide__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 20px;
    }
    .page-betting-guide__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .page-betting-guide__content-area {
        padding: 40px 15px;
    }
    .page-betting-guide__feature-grid,
    .page-betting-guide__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-betting-guide__feature-item,
    .page-betting-guide__product-card {
        padding: 20px;
    }
    .page-betting-guide__icon-box-media {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
        border-width: 3px;
    }
    .page-betting-guide__feature-title {
        font-size: 1.3rem;
    }
    .page-betting-guide__guide-step {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-betting-guide__step-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .page-betting-guide__step-content p {
        font-size: 0.95rem;
    }
    .page-betting-guide__step-image,
    .page-betting-guide__tips-image,
    .page-betting-guide__product-image,
    .page-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-betting-guide__tips-list li {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    .page-betting-guide__faq-item summary {
        font-size: 1rem;
        padding: 12px 15px;
    }
    .page-betting-guide__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }
    .page-betting-guide__conclusion-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    /* Ensure containers are responsive */
    .page-betting-guide__hero-container,
    .page-betting-guide__content-area,
    .page-betting-guide__feature-grid,
    .page-betting-guide__product-grid,
    .page-betting-guide__hero-cta-buttons,
    .page-betting-guide__conclusion-cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-betting-guide__hero-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-betting-guide__hero-content {
        padding: 0 15px;
    }
}