/* style/resources-j9bet-sports-betting-guide.css */

:root {
    --j9bet-primary-color: #0D47A1;
    --j9bet-secondary-color: #FFD600;
    --j9bet-text-dark: #212121;
    --j9bet-text-light: #ffffff;
    --j9bet-bg-light: #f5f5f5;
    --j9bet-bg-dark: #0a3a83;
    --j9bet-accent-color: #f2b85e; /* Complementary to primary for emphasis */
    --j9bet-button-hover-dark: #072e6b;
    --j9bet-button-hover-light: #e6c200;
}

.page-resources-j9bet-sports-betting-guide {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--j9bet-text-dark);
}

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

.page-resources-j9bet-sports-betting-guide__hero-section {
    background: linear-gradient(135deg, var(--j9bet-primary-color), var(--j9bet-bg-dark));
    color: var(--j9bet-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-j9bet-sports-betting-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.page-resources-j9bet-sports-betting-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--j9bet-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-resources-j9bet-sports-betting-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-resources-j9bet-sports-betting-guide__cta-button {
    display: inline-block;
    background-color: var(--j9bet-secondary-color);
    color: var(--j9bet-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-resources-j9bet-sports-betting-guide__cta-button:hover {
    background-color: var(--j9bet-button-hover-light);
    transform: translateY(-3px);
}

.page-resources-j9bet-sports-betting-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-resources-j9bet-sports-betting-guide__content-section {
    padding: 60px 0;
}

.page-resources-j9bet-sports-betting-guide__section-bg-light {
    background-color: var(--j9bet-bg-light);
}

.page-resources-j9bet-sports-betting-guide__section-title {
    font-size: 2.5em;
    color: var(--j9bet-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-j9bet-sports-betting-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--j9bet-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-j9bet-sports-betting-guide__text-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-j9bet-sports-betting-guide__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-j9bet-sports-betting-guide__image--large {
    max-width: 90%;
}

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

.page-resources-j9bet-sports-betting-guide__grid-item {
    background-color: var(--j9bet-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-resources-j9bet-sports-betting-guide__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-j9bet-sports-betting-guide__grid-title {
    color: var(--j9bet-primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-resources-j9bet-sports-betting-guide__numbered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
}

.page-resources-j9bet-sports-betting-guide__numbered-list li {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.page-resources-j9bet-sports-betting-guide__numbered-list li::before {
    content: counter(item);
    counter-increment: item;
    background-color: var(--j9bet-secondary-color);
    color: var(--j9bet-primary-color);
    font-size: 1.8em;
    font-weight: bold;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-j9bet-sports-betting-guide__numbered-list li h3 {
    color: var(--j9bet-primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-j9bet-sports-betting-guide__numbered-list li p {
    margin-bottom: 10px;
}

.page-resources-j9bet-sports-betting-guide__numbered-list li a {
    color: var(--j9bet-primary-color);
    font-weight: bold;
    text-decoration: none;
}

.page-resources-j9bet-sports-betting-guide__numbered-list li a:hover {
    text-decoration: underline;
}

.page-resources-j9bet-sports-betting-guide__bullet-list {
    list-style: none;
    padding: 0;
}

.page-resources-j9bet-sports-betting-guide__bullet-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.page-resources-j9bet-sports-betting-guide__bullet-list li::before {
    content: '•';
    color: var(--j9bet-secondary-color);
    font-size: 1.8em;
    position: absolute;
    left: 0;
    top: -5px;
}

.page-resources-j9bet-sports-betting-guide__bullet-list li h3 {
    color: var(--j9bet-primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-resources-j9bet-sports-betting-guide__feature-item {
    background-color: var(--j9bet-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources-j9bet-sports-betting-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-resources-j9bet-sports-betting-guide__feature-item h3 {
    color: var(--j9bet-primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-resources-j9bet-sports-betting-guide__cta-section {
    background: linear-gradient(45deg, var(--j9bet-primary-color), var(--j9bet-bg-dark));
    color: var(--j9bet-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-j9bet-sports-betting-guide__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.page-resources-j9bet-sports-betting-guide__cta-title {
    font-size: 3em;
    color: var(--j9bet-secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-resources-j9bet-sports-betting-guide__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-resources-j9bet-sports-betting-guide__image--mobile-app {
    max-width: 400px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-j9bet-sports-betting-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-j9bet-sports-betting-guide__hero-subtitle,
    .page-resources-j9bet-sports-betting-guide__cta-description {
        font-size: 1.2em;
    }
    .page-resources-j9bet-sports-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-j9bet-sports-betting-guide__grid,
    .page-resources-j9bet-sports-betting-guide__features-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-j9bet-sports-betting-guide__numbered-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-resources-j9bet-sports-betting-guide__numbered-list li::before {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-resources-j9bet-sports-betting-guide__bullet-list li {
        padding-left: 0;
        text-align: center;
    }
    .page-resources-j9bet-sports-betting-guide__bullet-list li::before {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
    .page-resources-j9bet-sports-betting-guide__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-j9bet-sports-betting-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-j9bet-sports-betting-guide__hero-subtitle,
    .page-resources-j9bet-sports-betting-guide__cta-description {
        font-size: 1em;
    }
    .page-resources-j9bet-sports-betting-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-j9bet-sports-betting-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-j9bet-sports-betting-guide__grid-title,
    .page-resources-j9bet-sports-betting-guide__feature-item h3,
    .page-resources-j9bet-sports-betting-guide__numbered-list li h3,
    .page-resources-j9bet-sports-betting-guide__bullet-list li h3 {
        font-size: 1.2em;
    }
    .page-resources-j9bet-sports-betting-guide__cta-title {
        font-size: 1.8em;
    }
    .page-resources-j9bet-sports-betting-guide__image--mobile-app {
        max-width: 300px;
    }
}