.page-resources-f88bet-sports-betting-deep-dive {
    --primary-color: #0A192F;
    --accent-color: #E0B92B;
    --text-color-light: #f0f0f0; /* For dark backgrounds */
    --text-color-dark: #0A192F; /* For light backgrounds */
    --background-light: #ffffff; /* General light background */
    --background-dark: #0A192F; /* General dark background */
    --border-color: #334257; /* Slightly lighter than primary for borders */

    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light); /* Default text color for the main content area which might have a dark background */
    background-color: var(--background-dark); /* Default background for the main content area */
}

.page-resources-f88bet-sports-betting-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-resources-f88bet-sports-betting-deep-dive__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3459 100%); /* A gradient of primary color */
    color: var(--text-color-light);
    position: relative;
    overflow: hidden;
}

.page-resources-f88bet-sports-betting-deep-dive__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-resources-f88bet-sports-betting-deep-dive__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-f88bet-sports-betting-deep-dive__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-resources-f88bet-sports-betting-deep-dive__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtly blend the image */
    z-index: 0;
}

.page-resources-f88bet-sports-betting-deep-dive__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-resources-f88bet-sports-betting-deep-dive__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-f88bet-sports-betting-deep-dive__section:last-of-type {
    border-bottom: none;
}

.page-resources-f88bet-sports-betting-deep-dive__section h2 {
    font-size: 2.5em;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-f88bet-sports-betting-deep-dive__section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-f88bet-sports-betting-deep-dive__section h3 {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.page-resources-f88bet-sports-betting-deep-dive__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

.page-resources-f88bet-sports-betting-deep-dive__section--overview,
.page-resources-f88bet-sports-betting-deep-dive__section--guide,
.page-resources-f88bet-sports-betting-deep-dive__section--strategy,
.page-resources-f88bet-sports-betting-deep-dive__section--highlights,
.page-resources-f88bet-sports-betting-deep-dive__section--safety {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-resources-f88bet-sports-betting-deep-dive__section--conclusion {
    background-color: #1a2a47; /* Slightly lighter dark background for contrast */
    color: var(--text-color-light);
}

.page-resources-f88bet-sports-betting-deep-dive__section--conclusion h2 {
    color: var(--accent-color);
}

.page-resources-f88bet-sports-betting-deep-dive__container--centered {
    text-align: center;
}

/* Grid for Bet Types */
.page-resources-f88bet-sports-betting-deep-dive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-f88bet-sports-betting-deep-dive__grid-item {
    background-color: #1a2a47; /* Darker background for grid items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-resources-f88bet-sports-betting-deep-dive__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-f88bet-sports-betting-deep-dive__grid-item h3 {
    color: var(--accent-color);
    font-size: 1.5em;
    margin-top: 0;
}

.page-resources-f88bet-sports-betting-deep-dive__grid-item p {
    color: var(--text-color-light);
    font-size: 1em;
}

/* Lists */
.page-resources-f88bet-sports-betting-deep-dive__ordered-list,
.page-resources-f88bet-sports-betting-deep-dive__unordered-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-resources-f88bet-sports-betting-deep-dive__ordered-list li,
.page-resources-f88bet-sports-betting-deep-dive__unordered-list li {
    background-color: #1a2a47; /* Darker background for list items */
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: var(--text-color-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-f88bet-sports-betting-deep-dive__ordered-list li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-resources-f88bet-sports-betting-deep-dive__unordered-list li::before {
    content: "\2022"; /* Custom bullet point */
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-resources-f88bet-sports-betting-deep-dive__ordered-list li strong,
.page-resources-f88bet-sports-betting-deep-dive__unordered-list li strong {
    color: var(--accent-color);
}


/* Buttons */
.page-resources-f88bet-sports-betting-deep-dive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-resources-f88bet-sports-betting-deep-dive__btn--primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.page-resources-f88bet-sports-betting-deep-dive__btn--primary:hover {
    background-color: #ffda44; /* Lighter accent */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f88bet-sports-betting-deep-dive__btn--secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    margin-left: 15px;
}

.page-resources-f88bet-sports-betting-deep-dive__btn--secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f88bet-sports-betting-deep-dive__btn--tertiary {
    background-color: #334257; /* A darker shade for tertiary buttons */
    color: var(--text-color-light);
    border: 1px solid #334257;
    margin-left: 15px;
}

.page-resources-f88bet-sports-betting-deep-dive__btn--tertiary:hover {
    background-color: #4a5b72;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f88bet-sports-betting-deep-dive__cta-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-resources-f88bet-sports-betting-deep-dive__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

/* Images */
.page-resources-f88bet-sports-betting-deep-dive img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-f88bet-sports-betting-deep-dive__image--full-width {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Highlights Grid */
.page-resources-f88bet-sports-betting-deep-dive__highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-f88bet-sports-betting-deep-dive__highlight-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-f88bet-sports-betting-deep-dive__highlight-item h3 {
    color: var(--accent-color);
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-f88bet-sports-betting-deep-dive__highlight-item p {
    color: var(--text-color-light);
    font-size: 1em;
}

.page-resources-f88bet-sports-betting-deep-dive__highlight-item img {
    margin-top: 20px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}


/* Safety Section */
.page-resources-f88bet-sports-betting-deep-dive__safety-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-f88bet-sports-betting-deep-dive__safety-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-resources-f88bet-sports-betting-deep-dive__safety-item h3 {
    color: var(--accent-color);
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-f88bet-sports-betting-deep-dive__safety-item p {
    color: var(--text-color-light);
    font-size: 1em;
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-f88bet-sports-betting-deep-dive__hero h1 {
        font-size: 2.5em;
    }

    .page-resources-f88bet-sports-betting-deep-dive__hero p {
        font-size: 1em;
    }

    .page-resources-f88bet-sports-betting-deep-dive__section h2 {
        font-size: 2em;
    }

    .page-resources-f88bet-sports-betting-deep-dive__section h3 {
        font-size: 1.5em;
    }

    .page-resources-f88bet-sports-betting-deep-dive__grid,
    .page-resources-f88bet-sports-betting-deep-dive__highlights-grid,
    .page-resources-f88bet-sports-betting-deep-dive__safety-points {
        grid-template-columns: 1fr;
    }

    .page-resources-f88bet-sports-betting-deep-dive__btn {
        width: 100%;
        margin-left: 0;
    }

    .page-resources-f88bet-sports-betting-deep-dive__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-f88bet-sports-betting-deep-dive__hero {
        padding: 60px 15px;
    }

    .page-resources-f88bet-sports-betting-deep-dive__hero h1 {
        font-size: 2em;
    }

    .page-resources-f88bet-sports-betting-deep-dive__section {
        padding: 40px 0;
    }

    .page-resources-f88bet-sports-betting-deep-dive__section h2 {
        font-size: 1.8em;
    }

    .page-resources-f88bet-sports-betting-deep-dive__grid-item,
    .page-resources-f88bet-sports-betting-deep-dive__highlight-item,
    .page-resources-f88bet-sports-betting-deep-dive__safety-item {
        padding: 20px;
    }
}