/* style/resources-how-to-claim-free-bets.css */

:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f1f3f5;
    --border-color: #e0e0e0;
}

.page-resources-how-to-claim-free-bets {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Fixed header padding for desktop */
.page-resources-how-to-claim-free-bets__intro-section {
    padding-top: 120px; /* Adjust based on actual header height */
}

.page-resources-how-to-claim-free-bets__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-how-to-claim-free-bets__card {
    background: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.page-resources-how-to-claim-free-bets__dark-bg {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-resources-how-to-claim-free-bets__dark-bg .page-resources-how-to-claim-free-bets__card {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-how-to-claim-free-bets__light-bg {
    background: var(--bg-light);
    color: var(--text-dark);
}

.page-resources-how-to-claim-free-bets__main-title {
    font-size: 38px;
    font-weight: bold;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-resources-how-to-claim-free-bets__intro-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-how-to-claim-free-bets__main-image,
.page-resources-how-to-claim-free-bets__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-claim-free-bets__section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: inherit; /* Inherit color from parent section */
}

.page-resources-how-to-claim-free-bets__list,
.page-resources-how-to-claim-free-bets__ordered-list {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-how-to-claim-free-bets__list li,
.page-resources-how-to-claim-free-bets__ordered-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 10px;
    position: relative;
}

.page-resources-how-to-claim-free-bets__list li::before {
    content: '• ';
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.page-resources-how-to-claim-free-bets__ordered-list li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-resources-how-to-claim-free-bets__step-item {
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--text-light);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-claim-free-bets__step-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-how-to-claim-free-bets__step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-resources-how-to-claim-free-bets__link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-how-to-claim-free-bets__link:hover {
    color: #ffc107;
    text-decoration: underline;
}

.page-resources-how-to-claim-free-bets__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.page-resources-how-to-claim-free-bets__cta-button:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-claim-free-bets__cta-button--secondary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.page-resources-how-to-claim-free-bets__cta-button--secondary:hover {
    background: #0d3a82;
    border-color: #ffc107;
}

.page-resources-how-to-claim-free-bets__cta-button--wide {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.page-resources-how-to-claim-free-bets__cta-button--outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-how-to-claim-free-bets__cta-button--outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* FAQ Section Styling */
.page-resources-how-to-claim-free-bets__faq-section {
    padding: 40px 0;
}

.page-resources-how-to-claim-free-bets__faq-list {
    margin-top: 30px;
}

.page-resources-how-to-claim-free-bets__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--text-light);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-claim-free-bets__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: var(--text-dark);
}

.page-resources-how-to-claim-free-bets__faq-item.active .page-resources-how-to-claim-free-bets__faq-answer {
    max-height: 2000px !important;
    padding: 20px 20px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-resources-how-to-claim-free-bets__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-how-to-claim-free-bets__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-how-to-claim-free-bets__faq-question:active {
    background: #eeeeee;
}

.page-resources-how-to-claim-free-bets__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-dark);
}

.page-resources-how-to-claim-free-bets__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-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: 28px;
    height: 28px;
}

.page-resources-how-to-claim-free-bets__faq-item.active .page-resources-how-to-claim-free-bets__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg); /* Change to X or rotate for active */
}

.page-resources-how-to-claim-free-bets__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-resources-how-to-claim-free-bets__news-item {
    background: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-claim-free-bets__news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-claim-free-bets__news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-resources-how-to-claim-free-bets__news-title .page-resources-how-to-claim-free-bets__news-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-how-to-claim-free-bets__news-title .page-resources-how-to-claim-free-bets__news-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-how-to-claim-free-bets__news-excerpt {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-claim-free-bets__main-title {
        font-size: 32px;
    }
    .page-resources-how-to-claim-free-bets__section-title {
        font-size: 28px;
    }
    .page-resources-how-to-claim-free-bets__card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Fixed header padding for mobile */
    .page-resources-how-to-claim-free-bets__intro-section {
        padding-top: 100px !important; /* Adjust based on actual mobile header height */
    }
    .page-resources-how-to-claim-free-bets__container {
        padding: 15px;
    }
    .page-resources-how-to-claim-free-bets__card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-resources-how-to-claim-free-bets__main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .page-resources-how-to-claim-free-bets__intro-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-resources-how-to-claim-free-bets__section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .page-resources-how-to-claim-free-bets__list li,
    .page-resources-how-to-claim-free-bets__ordered-list li,
    .page-resources-how-to-claim-free-bets__step-item p {
        font-size: 15px;
    }
    .page-resources-how-to-claim-free-bets__step-item h3 {
        font-size: 20px;
    }
    .page-resources-how-to-claim-free-bets__cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
    .page-resources-how-to-claim-free-bets__faq-question h3 {
        font-size: 16px;
    }
    .page-resources-how-to-claim-free-bets__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    .page-resources-how-to-claim-free-bets__faq-item.active .page-resources-how-to-claim-free-bets__faq-answer {
        padding: 15px !important;
    }
    .page-resources-how-to-claim-free-bets__news-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-how-to-claim-free-bets__news-title {
        font-size: 18px;
    }
    .page-resources-how-to-claim-free-bets__news-excerpt {
        font-size: 14px;
    }
    /* Ensure images and their containers are responsive */
    .page-resources-how-to-claim-free-bets img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-resources-how-to-claim-free-bets__intro-section,
    .page-resources-how-to-claim-free-bets__what-is-section,
    .page-resources-how-to-claim-free-bets__why-offer-section,
    .page-resources-how-to-claim-free-bets__how-to-claim-section,
    .page-resources-how-to-claim-free-bets__terms-section,
    .page-resources-how-to-claim-free-bets__reputable-casinos-section,
    .page-resources-how-to-claim-free-bets__tips-section,
    .page-resources-how-to-claim-free-bets__faq-section,
    .page-resources-how-to-claim-free-bets__news-section,
    .page-resources-how-to-claim-free-bets__container,
    .page-resources-how-to-claim-free-bets__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-how-to-claim-free-bets__intro-section,
    .page-resources-how-to-claim-free-bets__what-is-section,
    .page-resources-how-to-claim-free-bets__why-offer-section,
    .page-resources-how-to-claim-free-bets__how-to-claim-section,
    .page-resources-how-to-claim-free-bets__terms-section,
    .page-resources-how-to-claim-free-bets__reputable-casinos-section,
    .page-resources-how-to-claim-free-bets__tips-section,
    .page-resources-how-to-claim-free-bets__faq-section,
    .page-resources-how-to-claim-free-bets__news-section {
        padding-left: 0;
        padding-right: 0;
    }
}