/* style/resources-online-betting-guide.css */
.page-resources-online-betting-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A192F; /* Primary dark blue background */
}

.page-resources-online-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-online-betting-guide__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2A3B5C 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-resources-online-betting-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-resources-online-betting-guide__hero .page-resources-online-betting-guide__container {
    position: relative;
    z-index: 1;
}

.page-resources-online-betting-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-guide__hero-subtitle {
    font-size: 1.5em;
    color: #F0F0F0; /* Lighter grey for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-online-betting-guide__section {
    padding: 60px 0;
}

.page-resources-online-betting-guide__section--alt-bg {
    background-color: #1A2E47; /* Slightly lighter dark blue for alternate sections */
}

.page-resources-online-betting-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-online-betting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-online-betting-guide__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subsections */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-online-betting-guide__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-resources-online-betting-guide__keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-online-betting-guide__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-online-betting-guide__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-resources-online-betting-guide__list li::before {
    content: '\2713'; /* Checkmark icon */
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-resources-online-betting-guide__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-resources-online-betting-guide__btn:hover {
    background-color: #E0B500; /* Darker gold on hover */
    color: #000;
}

.page-resources-online-betting-guide__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-resources-online-betting-guide__btn--primary:hover {
    background-color: #E0B500;
}

.page-resources-online-betting-guide__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-online-betting-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-resources-online-betting-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-resources-online-betting-guide__feature-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-online-betting-guide__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-online-betting-guide__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

.page-resources-online-betting-guide__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-online-betting-guide__cta-bottom {
    background-color: #FFD700; /* Gold background for final CTA */
    padding: 80px 0;
    text-align: center;
    color: #0A192F; /* Dark text on gold */
}

.page-resources-online-betting-guide__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A192F;
}

.page-resources-online-betting-guide__cta-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-resources-online-betting-guide__cta-buttons .page-resources-online-betting-guide__btn {
    margin: 0 15px;
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #0A192F;
}

.page-resources-online-betting-guide__cta-buttons .page-resources-online-betting-guide__btn:hover {
    background-color: #333;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-online-betting-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-online-betting-guide__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-online-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-online-betting-guide__subsection-title {
        font-size: 1.6em;
    }
    .page-resources-online-betting-guide__paragraph, .page-resources-online-betting-guide__list li {
        font-size: 1em;
    }
    .page-resources-online-betting-guide__cta-title {
        font-size: 2.2em;
    }
    .page-resources-online-betting-guide__cta-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-resources-online-betting-guide__hero {
        padding: 60px 0;
    }
    .page-resources-online-betting-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-online-betting-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-online-betting-guide__section {
        padding: 40px 0;
    }
    .page-resources-online-betting-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-online-betting-guide__subsection-title {
        font-size: 1.4em;
    }
    .page-resources-online-betting-guide__features-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-online-betting-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-online-betting-guide__cta-title {
        font-size: 1.8em;
    }
    .page-resources-online-betting-guide__cta-subtitle {
        font-size: 1em;
    }
    .page-resources-online-betting-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-online-betting-guide__cta-buttons .page-resources-online-betting-guide__btn {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources-online-betting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-online-betting-guide__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-online-betting-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-online-betting-guide__subsection-title {
        font-size: 1.2em;
    }
    .page-resources-online-betting-guide__paragraph, .page-resources-online-betting-guide__list li {
        font-size: 0.9em;
    }
}