/* style/resources-football-scores-in-online-entertainment.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #26A9E0;
    --login-button-color: #EA7C07;
}

.page-resources-football-scores-in-online-entertainment {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color); /* Matches body background from shared.css */
}

.page-resources-football-scores-in-online-entertainment__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-football-scores-in-online-entertainment__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-football-scores-in-online-entertainment__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-resources-football-scores-in-online-entertainment__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-football-scores-in-online-entertainment__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: inherit; /* Inherits color from parent section */
    font-weight: bold;
}

.page-resources-football-scores-in-online-entertainment__section-subtitle {
    font-size: 1.8em;
    margin-top: 50px;
    margin-bottom: 25px;
    color: inherit;
    font-weight: 600;
}

.page-resources-football-scores-in-online-entertainment__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-resources-football-scores-in-online-entertainment__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    overflow: hidden;
}

.page-resources-football-scores-in-online-entertainment__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-resources-football-scores-in-online-entertainment__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-football-scores-in-online-entertainment__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-resources-football-scores-in-online-entertainment__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-football-scores-in-online-entertainment__hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.page-resources-football-scores-in-online-entertainment__hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-football-scores-in-online-entertainment__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--login-button-color); /* Using #EA7C07 for CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-football-scores-in-online-entertainment__cta-button:hover {
    background: darken(var(--login-button-color), 10%); /* Darken on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-football-scores-in-online-entertainment__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-resources-football-scores-in-online-entertainment__btn-primary:hover {
    background: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-football-scores-in-online-entertainment__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-resources-football-scores-in-online-entertainment__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-football-scores-in-online-entertainment__center-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.page-resources-football-scores-in-online-entertainment__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Content Grid */
.page-resources-football-scores-in-online-entertainment__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-football-scores-in-online-entertainment__card {
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-resources-football-scores-in-online-entertainment__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-football-scores-in-online-entertainment__card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
}

.page-resources-football-scores-in-online-entertainment__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-football-scores-in-online-entertainment__card-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-football-scores-in-online-entertainment__card-title a:hover {
    text-decoration: underline;
}

.page-resources-football-scores-in-online-entertainment__card p {
    font-size: 0.95em;
    color: #555;
}

/* Features List */
.page-resources-football-scores-in-online-entertainment__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-football-scores-in-online-entertainment__feature-item {
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-resources-football-scores-in-online-entertainment__feature-item:hover {
    transform: translateY(-3px);
}

.page-resources-football-scores-in-online-entertainment__feature-item img {
    width: 100%;
     /* Adjusted height for feature images */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-football-scores-in-online-entertainment__feature-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Benefits List */
.page-resources-football-scores-in-online-entertainment__benefits-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-resources-football-scores-in-online-entertainment__benefits-list li {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    color: var(--text-light);
}

.page-resources-football-scores-in-online-entertainment__benefits-list li strong {
    color: var(--text-light);
}

.page-resources-football-scores-in-online-entertainment__benefit-icon {
    font-size: 1.5em;
    color: #4CAF50; /* Green checkmark */
    margin-right: 15px;
    flex-shrink: 0;
}

/* Guide List */
.page-resources-football-scores-in-online-entertainment__guide-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-resources-football-scores-in-online-entertainment__guide-list li {
    background: var(--secondary-color);
    color: var(--text-dark);
    border-left: 5px solid var(--primary-color);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.1em;
}

.page-resources-football-scores-in-online-entertainment__guide-list li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-resources-football-scores-in-online-entertainment__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-resources-football-scores-in-online-entertainment__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-resources-football-scores-in-online-entertainment__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-dark);
}

.page-resources-football-scores-in-online-entertainment__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-football-scores-in-online-entertainment__faq-question:active {
    background: #eeeeee;
}

.page-resources-football-scores-in-online-entertainment__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-dark);
}

.page-resources-football-scores-in-online-entertainment__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-resources-football-scores-in-online-entertainment__faq-item.active .page-resources-football-scores-in-online-entertainment__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Change to X */
}

.page-resources-football-scores-in-online-entertainment__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-resources-football-scores-in-online-entertainment__faq-item.active .page-resources-football-scores-in-online-entertainment__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-football-scores-in-online-entertainment__hero-content h1 {
        font-size: 2.8em;
    }
    .page-resources-football-scores-in-online-entertainment__hero-content p {
        font-size: 1.1em;
    }
    .page-resources-football-scores-in-online-entertainment__section-title {
        font-size: 2em;
    }
    .page-resources-football-scores-in-online-entertainment__card, .page-resources-football-scores-in-online-entertainment__feature-item {
        padding: 25px;
    }
    .page-resources-football-scores-in-online-entertainment__card-title, .page-resources-football-scores-in-online-entertainment__feature-title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-resources-football-scores-in-online-entertainment__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-football-scores-in-online-entertainment__hero-content h1 {
        font-size: 2em;
    }
    .page-resources-football-scores-in-online-entertainment__hero-content p {
        font-size: 1em;
    }
    .page-resources-football-scores-in-online-entertainment__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-football-scores-in-online-entertainment__section {
        padding: 40px 0;
    }
    .page-resources-football-scores-in-online-entertainment__container {
        padding: 0 15px;
    }
    .page-resources-football-scores-in-online-entertainment__section-title {
        font-size: 1.8em;
    }
    .page-resources-football-scores-in-online-entertainment__text-block {
        font-size: 0.95em;
    }
    .page-resources-football-scores-in-online-entertainment__content-grid,
    .page-resources-football-scores-in-online-entertainment__features-list {
        grid-template-columns: 1fr;
    }
    .page-resources-football-scores-in-online-entertainment__card img,
    .page-resources-football-scores-in-online-entertainment__feature-item img {
        height: auto;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-resources-football-scores-in-online-entertainment__benefits-list li,
    .page-resources-football-scores-in-online-entertainment__guide-list li {
        padding: 15px 20px;
    }
    .page-resources-football-scores-in-online-entertainment__faq-question {
        padding: 15px;
    }
    .page-resources-football-scores-in-online-entertainment__faq-question h3 {
        font-size: 1em;
    }
    .page-resources-football-scores-in-online-entertainment__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    .page-resources-football-scores-in-online-entertainment__faq-item.active .page-resources-football-scores-in-online-entertainment__faq-answer {
        padding: 15px !important;
    }
    .page-resources-football-scores-in-online-entertainment__btn-primary,
    .page-resources-football-scores-in-online-entertainment__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-football-scores-in-online-entertainment__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-football-scores-in-online-entertainment img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-resources-football-scores-in-online-entertainment__section,
    .page-resources-football-scores-in-online-entertainment__card,
    .page-resources-football-scores-in-online-entertainment__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-football-scores-in-online-entertainment__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    /* Ensure content images are not smaller than 200px on mobile if they are not specifically icons */
    .page-resources-football-scores-in-online-entertainment__content-area img:not([class*="icon"]):not([class*="logo"]) {
        min-width: 200px !important;
        min-height: 200px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-football-scores-in-online-entertainment__hero-content h1 {
        font-size: 1.8em;
    }
    .page-resources-football-scores-in-online-entertainment__section-title {
        font-size: 1.5em;
    }
    .page-resources-football-scores-in-online-entertainment__cta-button {
        font-size: 0.9em;
        padding: 10px 25px;
    }
}