/* style/beginner-guide-understanding-odds.css */

.page-beginner-guide-understanding-odds {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for readability */
}

.page-beginner-guide-understanding-odds__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-beginner-guide-understanding-odds__hero-section {
    background: linear-gradient(135deg, #007BFF, #4da3ff); /* Gradient using primary color and its lighter variant */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-understanding-odds__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-understanding-odds__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-beginner-guide-understanding-odds__hero-image-wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
    max-width: 100%;
}

.page-beginner-guide-understanding-odds__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-beginner-guide-understanding-odds__cta-button {
    display: inline-block;
    background-color: #FFC107; /* Auxiliary color for CTA */
    color: #333; /* Dark text for contrast on auxiliary color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-beginner-guide-understanding-odds__cta-button:hover {
    background-color: #e0a800; /* Darker auxiliary on hover */
    transform: translateY(-3px);
}

/* Content Section */
.page-beginner-guide-understanding-odds__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-beginner-guide-understanding-odds__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-understanding-odds__section-title {
    font-size: 2em;
    color: #007BFF; /* Primary color for main section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFC107; /* Auxiliary color for emphasis */
    padding-bottom: 10px;
}

.page-beginner-guide-understanding-odds__sub-section-title {
    font-size: 1.6em;
    color: #0056b3; /* Darker shade of primary for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-beginner-guide-understanding-odds__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #444;
}

.page-beginner-guide-understanding-odds__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-beginner-guide-understanding-odds__article ul ul {
    list-style-type: circle;
    margin-top: 5px;
    margin-bottom: 5px;
}

.page-beginner-guide-understanding-odds__article li {
    margin-bottom: 8px;
}

.page-beginner-guide-understanding-odds__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-understanding-odds__inline-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-understanding-odds__inline-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Bottom CTA */
.page-beginner-guide-understanding-odds__cta-bottom {
    text-align: center;
    background-color: #f0f8ff; /* Lighter blue background */
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
    border: 1px solid #cceeff;
}

.page-beginner-guide-understanding-odds__cta-title {
    font-size: 2.2em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-beginner-guide-understanding-odds__cta-text {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 30px;
}

.page-beginner-guide-understanding-odds__cta-button--primary {
    background-color: #007BFF;
    color: #ffffff;
    margin-right: 15px;
}

.page-beginner-guide-understanding-odds__cta-button--primary:hover {
    background-color: #0056b3;
}

.page-beginner-guide-understanding-odds__cta-button--secondary {
    background-color: #FFC107;
    color: #333;
}

.page-beginner-guide-understanding-odds__cta-button--secondary:hover {
    background-color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-understanding-odds__main-title {
        font-size: 2.2em;
    }

    .page-beginner-guide-understanding-odds__subtitle {
        font-size: 1.1em;
    }

    .page-beginner-guide-understanding-odds__section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-understanding-odds__sub-section-title {
        font-size: 1.4em;
    }

    .page-beginner-guide-understanding-odds__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-understanding-odds__cta-bottom {
        padding: 30px 20px;
    }

    .page-beginner-guide-understanding-odds__cta-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-understanding-odds__cta-button--primary,
    .page-beginner-guide-understanding-odds__cta-button--secondary {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-understanding-odds__main-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-understanding-odds__subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-understanding-odds__section-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-understanding-odds__sub-section-title {
        font-size: 1.2em;
    }

    .page-beginner-guide-understanding-odds__article {
        padding: 20px;
    }

    .page-beginner-guide-understanding-odds__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-beginner-guide-understanding-odds__cta-title {
        font-size: 1.6em;
    }
}