/* style/resources-betting-guide.css */
.page-resources-betting-guide {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-resources-betting-guide__hero-section {
    background-color: #000000; /* Main color */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-resources-betting-guide__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-betting-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-resources-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-resources-betting-guide__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-betting-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-resources-betting-guide__button--register {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
}

.page-resources-betting-guide__button--register:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.page-resources-betting-guide__button--explore {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-resources-betting-guide__button--explore:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.page-resources-betting-guide__button--download,
.page-resources-betting-guide__button--promo,
.page-resources-betting-guide__button--info {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #FCBC45;
}

.page-resources-betting-guide__button--download:hover,
.page-resources-betting-guide__button--promo:hover,
.page-resources-betting-guide__button--info:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-resources-betting-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-betting-guide__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-resources-betting-guide__content-area {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-resources-betting-guide__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-betting-guide__back-link:hover {
    color: #000000;
}

.page-resources-betting-guide__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-betting-guide__sub-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-resources-betting-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-betting-guide__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-betting-guide__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-betting-guide__image-wrapper {
    margin: 40px auto;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-betting-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    width: 800px; /* Default width for content images */
    height: 600px; /* Default height for content images */
}

.page-resources-betting-guide__action-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-resources-betting-guide__action-center--final {
    margin-top: 60px;
    margin-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-betting-guide__hero-title {
        font-size: 3em;
    }
    .page-resources-betting-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-betting-guide__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-betting-guide__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
    }
    .page-resources-betting-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-betting-guide__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-betting-guide__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-resources-betting-guide__content-area {
        margin: 20px auto;
        padding: 0 15px;
    }
    .page-resources-betting-guide__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-resources-betting-guide__sub-section-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .page-resources-betting-guide__paragraph,
    .page-resources-betting-guide__list-item {
        font-size: 0.95em;
    }
    .page-resources-betting-guide__image-wrapper img {
        max-width: 100%;
        height: auto;
        width: auto; /* Allow image to scale down */
        min-width: 200px; /* Minimum width for content images */
        min-height: 200px; /* Minimum height for content images */
    }
    .page-resources-betting-guide__image-wrapper {
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .page-resources-betting-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-betting-guide__hero-description {
        font-size: 0.9em;
    }
    .page-resources-betting-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-betting-guide__sub-section-title {
        font-size: 1.2em;
    }
}