/* style/resources-betting-strategies.css */

/* Base styles for the page content */
.page-resources-betting-strategies {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-resources-betting-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-betting-strategies__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
}

.page-resources-betting-strategies__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-betting-strategies__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-betting-strategies__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-resources-betting-strategies__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-resources-betting-strategies__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-betting-strategies__hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Section Titles */
.page-resources-betting-strategies__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Text Blocks and Highlights */
.page-resources-betting-strategies__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0; /* Slightly lighter text for readability on dark background */
}

.page-resources-betting-strategies__highlight {
    color: #FFFF00; /* Yellow highlight for brand name */
    font-weight: bold;
}

/* Buttons */
.page-resources-betting-strategies__btn-primary,
.page-resources-betting-strategies__btn-secondary,
.page-resources-betting-strategies__card-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Ensures padding doesn't push width over */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-resources-betting-strategies__btn-primary {
    background-color: #C30808; /* Register/Login red */
    color: #FFFF00; /* Register/Login font yellow */
    border: 2px solid #C30808;
}

.page-resources-betting-strategies__btn-primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
    color: #ffffff;
}

.page-resources-betting-strategies__btn-secondary {
    background-color: transparent;
    color: #017439; /* Brand green */
    border: 2px solid #017439;
}

.page-resources-betting-strategies__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-resources-betting-strategies__card-link {
    background-color: #017439;
    color: #ffffff;
    border: 1px solid #017439;
    font-size: 0.9em;
    padding: 8px 15px;
    margin-top: 15px;
}

.page-resources-betting-strategies__card-link:hover {
    background-color: #005a2d;
    border-color: #005a2d;
}

/* Sections Backgrounds */
.page-resources-betting-strategies__introduction-section,
.page-resources-betting-strategies__game-strategies-section,
.page-resources-betting-strategies__safety-section,
.page-resources-betting-strategies__conclusion-section {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for content on dark body */
    padding: 60px 0;
}

.page-resources-betting-strategies__dark-bg {
    background-color: #017439; /* Brand primary color for dark sections */
    color: #ffffff; /* White text on brand color */
    padding: 60px 0;
}

.page-resources-betting-strategies__dark-bg .page-resources-betting-strategies__section-title {
    color: #ffffff; /* White title on brand color background */
}

.page-resources-betting-strategies__dark-bg .page-resources-betting-strategies__text-block,
.page-resources-betting-strategies__dark-bg .page-resources-betting-strategies__list-item p {
    color: #f0f0f0;
}

/* Image Content */
.page-resources-betting-strategies__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Lists */
.page-resources-betting-strategies__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-betting-strategies__list-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for list items */
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #017439; /* Brand color accent */
}

.page-resources-betting-strategies__list-title {
    color: #FFFF00; /* Yellow for list titles */
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Cards Grid */
.page-resources-betting-strategies__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-betting-strategies__card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-betting-strategies__card:hover {
    transform: translateY(-5px);
}

.page-resources-betting-strategies__card-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-resources-betting-strategies__card-title {
    font-size: 1.5em;
    color: #FFFF00; /* Yellow for card titles */
    margin-bottom: 10px;
}

.page-resources-betting-strategies__card-title a {
    color: #FFFF00; /* Ensure link color is yellow */
    text-decoration: none;
}

.page-resources-betting-strategies__card-title a:hover {
    text-decoration: underline;
}

.page-resources-betting-strategies__card-text {
    color: #e0e0e0;
    font-size: 0.95em;
    flex-grow: 1; /* Allow text to take available space */
}

/* Promotions Grid */
.page-resources-betting-strategies__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-betting-strategies__promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-betting-strategies__promo-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-resources-betting-strategies__promo-title {
    font-size: 1.4em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-resources-betting-strategies__promo-text {
    color: #e0e0e0;
    font-size: 0.95em;
}

/* FAQ Section */
.page-resources-betting-strategies__faq-list {
    margin-top: 40px;
}

.page-resources-betting-strategies__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-betting-strategies__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFF00;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-resources-betting-strategies__faq-question:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.page-resources-betting-strategies__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-betting-strategies__faq-item[open] .page-resources-betting-strategies__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-resources-betting-strategies__faq-item summary {
    list-style: none; /* Remove default marker */
}
.page-resources-betting-strategies__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for webkit */
}


.page-resources-betting-strategies__faq-answer {
    padding: 0 25px 20px;
    color: #e0e0e0;
    font-size: 1.05em;
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-betting-strategies__faq-item[open] .page-resources-betting-strategies__faq-answer {
    max-height: 500px; /* Arbitrary large value for expansion */
    padding-top: 10px;
}

.page-resources-betting-strategies__faq-answer p {
    margin-bottom: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-betting-strategies__hero-title {
        font-size: 2.5em;
    }
    .page-resources-betting-strategies__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-betting-strategies {
        padding-top: var(--header-offset, 120px) !important; /* Fixed header offset for mobile */
    }

    .page-resources-betting-strategies__hero-section {
        height: 450px;
    }

    .page-resources-betting-strategies__hero-title {
        font-size: 2em;
    }

    .page-resources-betting-strategies__hero-description {
        font-size: 1em;
    }

    .page-resources-betting-strategies__hero-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .page-resources-betting-strategies__btn-primary,
    .page-resources-betting-strategies__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-betting-strategies__cta-buttons,
    .page-resources-betting-strategies__hero-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
    }

    .page-resources-betting-strategies__section-title {
        font-size: 1.8em;
    }

    .page-resources-betting-strategies__text-block {
        font-size: 1em;
    }

    /* Mobile image responsiveness */
    .page-resources-betting-strategies img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure image containers do not overflow */
    .page-resources-betting-strategies__container,
    .page-resources-betting-strategies__list-item,
    .page-resources-betting-strategies__card,
    .page-resources-betting-strategies__promo-card,
    .page-resources-betting-strategies__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-resources-betting-strategies__card-image,
    .page-resources-betting-strategies__promo-image {
        height: auto; /* Allow height to adjust */
    }
}

@media (max-width: 480px) {
    .page-resources-betting-strategies__hero-section {
        height: 350px;
    }
    .page-resources-betting-strategies__hero-title {
        font-size: 1.5em;
    }
    .page-resources-betting-strategies__section-title {
        font-size: 1.5em;
    }
}