/* style/resources-123b-betting-strategy.css */
.page-resources-123b-betting-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Default body background */
}

.page-resources-123b-betting-strategy__hero-section {
    position: relative;
    padding: 100px 20px 40px; /* Adjust padding-top to account for header */
    color: #FFFFFF;
    background-color: #017439; /* Brand primary color for hero */
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
}

.page-resources-123b-betting-strategy__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 116, 57, 0.8), rgba(1, 116, 57, 0.6));
    z-index: 1;
}

.page-resources-123b-betting-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-resources-123b-betting-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-resources-123b-betting-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-resources-123b-betting-strategy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom color for hero title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-123b-betting-strategy__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-resources-123b-betting-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-123b-betting-strategy__btn-primary,
.page-resources-123b-betting-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-123b-betting-strategy__btn-primary {
    background-color: #C30808; /* Custom color for Register/Login */
    color: #FFFF00; /* Custom font color for Register/Login */
    border: 2px solid #C30808;
}

.page-resources-123b-betting-strategy__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-resources-123b-betting-strategy__btn-secondary {
    background-color: #FFFFFF;
    color: #017439; /* Brand primary color */
    border: 2px solid #017439;
}

.page-resources-123b-betting-strategy__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

.page-resources-123b-betting-strategy__section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: #333333;
}

.page-resources-123b-betting-strategy__dark-bg {
    background-color: #017439;
    color: #FFFFFF;
}

.page-resources-123b-betting-strategy__light-bg {
    background-color: #f8f8f8;
    color: #333333;
}

.page-resources-123b-betting-strategy__light-text {
    color: #FFFFFF;
}

.page-resources-123b-betting-strategy__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #017439;
}

.page-resources-123b-betting-strategy__dark-bg .page-resources-123b-betting-strategy__section-title {
    color: #FFFFFF;
}

.page-resources-123b-betting-strategy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-123b-betting-strategy__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-123b-betting-strategy__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-resources-123b-betting-strategy__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-123b-betting-strategy__strategy-grid,
.page-resources-123b-betting-strategy__risk-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-123b-betting-strategy__card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-resources-123b-betting-strategy__card-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 15px;
}

.page-resources-123b-betting-strategy__card-text {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-123b-betting-strategy__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-123b-betting-strategy__advanced-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-123b-betting-strategy__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-left: 5px solid #017439;
}

.page-resources-123b-betting-strategy__feature-title {
    font-size: 1.6em;
    color: #017439;
    margin-bottom: 10px;
}

.page-resources-123b-betting-strategy__feature-description {
    font-size: 1em;
}

.page-resources-123b-betting-strategy__video-section {
    padding: 60px 20px;
    background-color: #017439;
    color: #FFFFFF;
    text-align: center;
}

.page-resources-123b-betting-strategy__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-123b-betting-strategy__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.page-resources-123b-betting-strategy__faq-list {
    margin-top: 30px;
}

.page-resources-123b-betting-strategy__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-123b-betting-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #017439;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-resources-123b-betting-strategy__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-resources-123b-betting-strategy__faq-item summary {
    list-style: none;
}

.page-resources-123b-betting-strategy__faq-question:hover {
    background-color: #e5e5e5;
}

.page-resources-123b-betting-strategy__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    color: #555555;
    border-top: 1px solid #e0e0e0;
    background-color: #FFFFFF;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-resources-123b-betting-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-resources-123b-betting-strategy__hero-description {
        font-size: 1.2em;
    }
    .page-resources-123b-betting-strategy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-123b-betting-strategy__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 30px;
    }
}