/* style/resources-strategies-to-improve-win-rate-with-888-prediction.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login-color: #EA7C07;
    --background-color: #FFFFFF;
    --black-color: #000000;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light body background */
    background-color: var(--background-color);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    overflow: hidden;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 900px;
    padding: 20px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__text-block {
    margin-bottom: 30px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__text-block p {
    margin-bottom: 15px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__text-block strong {
    color: var(--primary-color);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__image-full-width {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card {
    background: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card-title a:hover {
    text-decoration: underline;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card p {
    font-size: 1em;
    color: var(--text-dark);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    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;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button--primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button--primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__ordered-list,
.page-resources-strategies-to-improve-win-rate-with-888-prediction__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__ordered-list li,
.page-resources-strategies-to-improve-win-rate-with-888-prediction__feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__ordered-list li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__feature-list li::before {
    content: "\2713"; /* Checkmark */
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__dark-section .page-resources-strategies-to-improve-win-rate-with-888-prediction__section-title,
.page-resources-strategies-to-improve-win-rate-with-888-prediction__dark-section .page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-text {
    color: var(--text-light);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__dark-section .page-resources-strategies-to-improve-win-rate-with-888-prediction__feature-list li {
    color: var(--text-light);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-item {
    background: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-item.active .page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-item.active .page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-final {
    text-align: center;
    padding: 80px 20px;
}

.page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-text {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-title {
        font-size: 2.8em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-description {
        font-size: 1.1em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__section-title {
        font-size: 2em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__card-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-strategies-to-improve-win-rate-with-888-prediction {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-title {
        font-size: 2.2em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-description {
        font-size: 1em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__section-title {
        font-size: 1.8em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__content-area,
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__dark-section {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsive */
    .page-resources-strategies-to-improve-win-rate-with-888-prediction img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Buttons responsive */
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button,
    .page-resources-strategies-to-improve-win-rate-with-888-prediction a[class*="button"],
    .page-resources-strategies-to-improve-win-rate-with-888-prediction 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;
    }

    .page-resources-strategies-to-improve-win-rate-with-888-prediction__button-group {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-strategies-to-improve-win-rate-with-888-prediction__card {
        padding: 20px;
    }

    .page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-question h3 {
        font-size: 1.1em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-answer {
        padding: 0 15px;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-item.active .page-resources-strategies-to-improve-win-rate-with-888-prediction__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-title {
        font-size: 1.8em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__hero-description {
        font-size: 0.9em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-button {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__section-title {
        font-size: 1.5em;
    }
    .page-resources-strategies-to-improve-win-rate-with-888-prediction__cta-text {
        font-size: 1.1em;
    }
}