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

.page-resources-sports-betting-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A2342; /* Main background color */
    line-height: 1.6;
}

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

/* Hero Section */
.page-resources-sports-betting-guide__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3E62 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    color: #FFFFFF;
}

.page-resources-sports-betting-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.page-resources-sports-betting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.page-resources-sports-betting-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

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

/* General Section Styling */
.page-resources-sports-betting-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.page-resources-sports-betting-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-sports-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-sports-betting-guide__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-sports-betting-guide p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #C0C0C0;
}

/* Buttons */
.page-resources-sports-betting-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.page-resources-sports-betting-guide__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-resources-sports-betting-guide__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-resources-sports-betting-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-sports-betting-guide__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-resources-sports-betting-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-resources-sports-betting-guide__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.page-resources-sports-betting-guide__card {
    background-color: #1A3E62;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-resources-sports-betting-guide__card p {
    color: #B0B0B0;
}

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

.page-resources-sports-betting-guide__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-resources-sports-betting-guide__list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-sports-betting-guide__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-resources-sports-betting-guide__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-sports-betting-guide__ordered-list li strong {
    color: #FFD700;
}

/* Image Styling */
.page-resources-sports-betting-guide__image-full-width {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Sports Grid */
.page-resources-sports-betting-guide__grid--sports {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.page-resources-sports-betting-guide__sport-item {
    background-color: #1A3E62;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-sports-betting-guide__sport-item:hover {
    transform: translateY(-3px);
}

.page-resources-sports-betting-guide__icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.page-resources-sports-betting-guide__sport-title {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-resources-sports-betting-guide__sport-item p {
    font-size: 0.95em;
    color: #B0B0B0;
}

/* FAQ Section */
.page-resources-sports-betting-guide__faq-item {
    background-color: #1A3E62;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-sports-betting-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-resources-sports-betting-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-sports-betting-guide__faq-answer {
    color: #C0C0C0;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-resources-sports-betting-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-sports-betting-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sports-betting-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-sports-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-guide__subsection-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-sports-betting-guide__hero {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-resources-sports-betting-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-sports-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-sports-betting-guide__section {
        padding: 40px 0;
    }
    .page-resources-sports-betting-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-guide__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-sports-betting-guide__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sports-betting-guide__btn--large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources-sports-betting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-guide__hero-description {
        font-size: 0.9em;
    }
    .page-resources-sports-betting-guide p, .page-resources-sports-betting-guide__list li, .page-resources-sports-betting-guide__ordered-list li {
        font-size: 0.95em;
    }
    .page-resources-sports-betting-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-sports-betting-guide__faq-question {
        font-size: 1.2em;
    }
}