/* style/resources-how-to-identify-reliable-betting-sites.css */

:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f1f3f5;
    --background-dark: var(--dark-bg-1); /* From shared.css, assuming dark background for body */
    --border-color: #e0e0e0;
}

.page-resources-how-to-identify-reliable-betting-sites {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--background-dark);
}

.page-resources-how-to-identify-reliable-betting-sites__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 120px; /* Adjust for fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a33 100%); /* Darker gradient for text contrast */
    color: var(--text-light);
}

.page-resources-how-to-identify-reliable-betting-sites__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-how-to-identify-reliable-betting-sites__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-how-to-identify-reliable-betting-sites__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-identify-reliable-betting-sites__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-how-to-identify-reliable-betting-sites__hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-identify-reliable-betting-sites__hero-content p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-resources-how-to-identify-reliable-betting-sites__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #FFA500);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-identify-reliable-betting-sites__cta-button:hover {
    background: linear-gradient(135deg, #FFA500, var(--secondary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.page-resources-how-to-identify-reliable-betting-sites__content-section {
    padding: 60px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-how-to-identify-reliable-betting-sites__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-how-to-identify-reliable-betting-sites__text-block {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-identify-reliable-betting-sites__text-block h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__text-block h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__text-block p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-resources-how-to-identify-reliable-betting-sites__text-block ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-resources-how-to-identify-reliable-betting-sites__text-block li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-resources-how-to-identify-reliable-betting-sites__text-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__text-block a:hover {
    text-decoration: underline;
    color: #004488;
}

.page-resources-how-to-identify-reliable-betting-sites__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: contain;
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-name {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-link:hover {
    text-decoration: underline;
}

.page-resources-how-to-identify-reliable-betting-sites__recommendation-item p {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
}

.page-resources-how-to-identify-reliable-betting-sites__btn-review {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-how-to-identify-reliable-betting-sites__btn-review:hover {
    background-color: #FFA500;
    transform: translateY(-2px);
}

.page-resources-how-to-identify-reliable-betting-sites__faq-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-how-to-identify-reliable-betting-sites__faq-title {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-identify-reliable-betting-sites__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 20px;
    opacity: 0;
    background: #002244; /* Slightly lighter dark background */
    color: var(--text-light);
}

.page-resources-how-to-identify-reliable-betting-sites__faq-item.active .page-resources-how-to-identify-reliable-betting-sites__faq-answer {
    max-height: 2000px !important; /* Ensure content fits */
    padding: 20px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}

.page-resources-how-to-identify-reliable-betting-sites__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #003366;
    border: 1px solid #004488;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-how-to-identify-reliable-betting-sites__faq-question:hover {
    background: #004488;
    border-color: #0055aa;
}

.page-resources-how-to-identify-reliable-betting-sites__faq-question:active {
    background: #0055aa;
}

.page-resources-how-to-identify-reliable-betting-sites__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-light);
}

.page-resources-how-to-identify-reliable-betting-sites__faq-toggle {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    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: 30px;
    height: 30px;
}

.page-resources-how-to-identify-reliable-betting-sites__faq-item.active .page-resources-how-to-identify-reliable-betting-sites__faq-toggle {
    color: #ffffff;
    transform: rotate(45deg);
}

.page-resources-how-to-identify-reliable-betting-sites__latest-blog-section {
    padding: 60px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-how-to-identify-reliable-betting-sites__blog-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-identify-reliable-betting-sites__blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card-title a:hover {
    text-decoration: underline;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card-excerpt {
    font-size: 0.95em;
    color: #555555;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%;
}

.page-resources-how-to-identify-reliable-betting-sites__blog-card-link:hover {
    background-color: #004488;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-identify-reliable-betting-sites__hero-content h1 {
        font-size: 2.8em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__hero-content p {
        font-size: 1.1em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__text-block h2 {
        font-size: 2em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__text-block h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-identify-reliable-betting-sites__hero-section {
        padding-top: 100px !important; /* Mobile fixed header adjustment */
        padding-bottom: 40px;
    }

    .page-resources-how-to-identify-reliable-betting-sites__hero-content h1 {
        font-size: 2.2em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__hero-content p {
        font-size: 1em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__content-section,
    .page-resources-how-to-identify-reliable-betting-sites__faq-section,
    .page-resources-how-to-identify-reliable-betting-sites__latest-blog-section {
        padding: 30px 15px;
    }

    .page-resources-how-to-identify-reliable-betting-sites__text-block {
        padding: 25px;
    }

    .page-resources-how-to-identify-reliable-betting-sites__text-block h2 {
        font-size: 1.8em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__text-block h3 {
        font-size: 1.2em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__recommendation-list {
        grid-template-columns: 1fr;
    }

    .page-resources-how-to-identify-reliable-betting-sites__faq-title,
    .page-resources-how-to-identify-reliable-betting-sites__blog-title {
        font-size: 1.8em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__faq-question {
        padding: 15px;
    }

    .page-resources-how-to-identify-reliable-betting-sites__faq-question h3 {
        font-size: 1em;
    }

    .page-resources-how-to-identify-reliable-betting-sites__faq-toggle {
        font-size: 1.8em;
        width: 25px;
        height: 25px;
    }

    .page-resources-how-to-identify-reliable-betting-sites__faq-item.active .page-resources-how-to-identify-reliable-betting-sites__faq-answer {
        padding: 15px !important;
    }

    .page-resources-how-to-identify-reliable-betting-sites__blog-list {
        grid-template-columns: 1fr;
    }

    /* Ensure all images and containers are responsive */
    .page-resources-how-to-identify-reliable-betting-sites img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-resources-how-to-identify-reliable-betting-sites__hero-image,
    .page-resources-how-to-identify-reliable-betting-sites__content-image,
    .page-resources-how-to-identify-reliable-betting-sites__recommendation-logo,
    .page-resources-how-to-identify-reliable-betting-sites__blog-image,
    .page-resources-how-to-identify-reliable-betting-sites__container,
    .page-resources-how-to-identify-reliable-betting-sites__text-block,
    .page-resources-how-to-identify-reliable-betting-sites__recommendation-item,
    .page-resources-how-to-identify-reliable-betting-sites__blog-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important; /* Reset padding for full width */
        padding-right: 0 !important; /* Reset padding for full width */
    }

    .page-resources-how-to-identify-reliable-betting-sites__hero-section .page-resources-how-to-identify-reliable-betting-sites__hero-container,
    .page-resources-how-to-identify-reliable-betting-sites__content-section .page-resources-how-to-identify-reliable-betting-sites__container,
    .page-resources-how-to-identify-reliable-betting-sites__faq-section .page-resources-how-to-identify-reliable-betting-sites__container,
    .page-resources-how-to-identify-reliable-betting-sites__latest-blog-section .page-resources-how-to-identify-reliable-betting-sites__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}