/* style/betting-news-strategy-guides.css */
.page-betting-news-strategy-guides {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #0A192F; /* Primary background color */
    line-height: 1.6;
}

.page-betting-news-strategy-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-news-strategy-guides__hero {
    background: linear-gradient(135deg, #0A192F, #2A3C5B);
    padding: 100px 0;
    text-align: center;
    color: #F8F8F8;
    position: relative;
    overflow: hidden;
}

.page-betting-news-strategy-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-betting-news-strategy-guides__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-news-strategy-guides__section {
    padding: 60px 0;
    background-color: #0A192F;
    color: #F8F8F8;
}

.page-betting-news-strategy-guides__section:nth-of-type(even) {
    background-color: #1A2F4B; /* Slightly lighter dark background for contrast */
}

.page-betting-news-strategy-guides__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-betting-news-strategy-guides__content-block {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #0A192F;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-news-strategy-guides__content-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-betting-news-strategy-guides__content-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-betting-news-strategy-guides__image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-news-strategy-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-news-strategy-guides__feature-item {
    background-color: #1A2F4B;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-betting-news-strategy-guides__feature-item:hover {
    transform: translateY(-10px);
    background-color: #2A3C5B;
}

.page-betting-news-strategy-guides__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-betting-news-strategy-guides__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-betting-news-strategy-guides__feature-text {
    font-size: 1em;
    color: #CCCCCC;
}

.page-betting-news-strategy-guides__game-block {
    background-color: #1A2F4B;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-betting-news-strategy-guides__game-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-betting-news-strategy-guides__game-block p,
.page-betting-news-strategy-guides__game-block ul {
    font-size: 1.1em;
    color: #F8F8F8;
    margin-bottom: 15px;
}

.page-betting-news-strategy-guides__game-block ul {
    list-style-type: disc;
    margin-left: 20px;
}

.page-betting-news-strategy-guides__game-block ul li {
    margin-bottom: 8px;
}

.page-betting-news-strategy-guides__image-game {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-news-strategy-guides__image-promo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-news-strategy-guides__text-center {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-betting-news-strategy-guides__flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-betting-news-strategy-guides__btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-betting-news-strategy-guides__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-betting-news-strategy-guides__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-betting-news-strategy-guides__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-betting-news-strategy-guides__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-betting-news-strategy-guides__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-betting-news-strategy-guides__btn--tertiary {
    background-color: #0A192F;
    color: #F8F8F8;
    border: 2px solid #F8F8F8;
    box-shadow: 0 5px 15px rgba(248, 248, 248, 0.1);
}

.page-betting-news-strategy-guides__btn--tertiary:hover {
    background-color: #F8F8F8;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(248, 248, 248, 0.2);
}

.page-betting-news-strategy-guides__cta-bottom {
    background: linear-gradient(45deg, #0A192F, #3A4F6F);
    padding: 80px 0;
    text-align: center;
    color: #F8F8F8;
}

.page-betting-news-strategy-guides__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-betting-news-strategy-guides__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-news-strategy-guides__hero-title {
        font-size: 2.5em;
    }

    .page-betting-news-strategy-guides__hero-subtitle {
        font-size: 1em;
    }

    .page-betting-news-strategy-guides__section-title {
        font-size: 2em;
    }

    .page-betting-news-strategy-guides__content-subtitle {
        font-size: 1.5em;
    }

    .page-betting-news-strategy-guides__feature-item {
        padding: 20px;
    }

    .page-betting-news-strategy-guides__game-title {
        font-size: 1.8em;
    }

    .page-betting-news-strategy-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-betting-news-strategy-guides__cta-title {
        font-size: 2em;
    }

    .page-betting-news-strategy-guides__cta-text {
        font-size: 1em;
    }

    .page-betting-news-strategy-guides__btn-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-betting-news-strategy-guides__hero-title {
        font-size: 2em;
    }

    .page-betting-news-strategy-guides__section-title {
        font-size: 1.8em;
    }

    .page-betting-news-strategy-guides__content-subtitle {
        font-size: 1.3em;
    }

    .page-betting-news-strategy-guides__game-title {
        font-size: 1.5em;
    }

    .page-betting-news-strategy-guides__btn {
        width: 90%;
        max-width: 280px;
    }
}