/* style/resources-safe-betting-tips.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --text-on-light: #333333;
    --register-button-bg: #C30808;
    --login-button-bg: #C30808;
    --button-text-color: #FFFF00;
    --body-bg-color: #0a0a0a; /* From shared.css */
}

.page-resources-safe-betting-tips {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-on-dark); /* Default text color for the page, as body background is dark */
    background-color: var(--body-bg-color);
}

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

.page-resources-safe-betting-tips__hero-section {
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background: var(--primary-color);
    color: var(--text-on-dark);
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-safe-betting-tips__hero-section .page-resources-safe-betting-tips__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-resources-safe-betting-tips__hero-content {
    flex: 1;
    padding-right: 20px;
}

.page-resources-safe-betting-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-on-dark);
    line-height: 1.2;
}

.page-resources-safe-betting-tips__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-resources-safe-betting-tips__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-safe-betting-tips__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-safe-betting-tips__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-safe-betting-tips__btn-primary {
    background-color: var(--register-button-bg);
    color: var(--button-text-color);
    border: 2px solid var(--register-button-bg);
}

.page-resources-safe-betting-tips__btn-primary:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-resources-safe-betting-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.page-resources-safe-betting-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-resources-safe-betting-tips__section {
    padding: 60px 0;
}

.page-resources-safe-betting-tips__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-on-dark);
}

.page-resources-safe-betting-tips__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-on-light);
}

.page-resources-safe-betting-tips__light-bg .page-resources-safe-betting-tips__section-title {
    color: var(--text-on-light);
}

.page-resources-safe-betting-tips__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.page-resources-safe-betting-tips__dark-bg .page-resources-safe-betting-tips__section-title {
    color: var(--text-on-dark);
}

.page-resources-safe-betting-tips__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-resources-safe-betting-tips__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-on-dark);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-resources-safe-betting-tips__card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--text-on-dark);
}

.page-resources-safe-betting-tips__card-text {
    font-size: 1em;
    line-height: 1.7;
    text-align: justify;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-resources-safe-betting-tips__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.page-resources-safe-betting-tips__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-resources-safe-betting-tips__sub-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-safe-betting-tips__light-bg .page-resources-safe-betting-tips__sub-title {
    color: var(--primary-color);
}

.page-resources-safe-betting-tips__dark-bg .page-resources-safe-betting-tips__sub-title {
    color: var(--secondary-color);
}

.page-resources-safe-betting-tips__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.page-resources-safe-betting-tips__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-resources-safe-betting-tips__faq-section {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    padding: 60px 0;
}

.page-resources-safe-betting-tips__faq-section .page-resources-safe-betting-tips__section-title {
    color: var(--text-on-dark);
    margin-bottom: 40px;
}

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

.page-resources-safe-betting-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-on-dark);
    transition: background-color 0.3s ease;
}

.page-resources-safe-betting-tips__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-safe-betting-tips__faq-question h3 {
    margin: 0;
    color: var(--text-on-dark);
}

.page-resources-safe-betting-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--button-text-color);
}

.page-resources-safe-betting-tips__faq-item.active .page-resources-safe-betting-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-safe-betting-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-on-dark);
}

.page-resources-safe-betting-tips__faq-item.active .page-resources-safe-betting-tips__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px 25px;
}

.page-resources-safe-betting-tips__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
}

/* Image and Video responsive rules */
.page-resources-safe-betting-tips img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-resources-safe-betting-tips__hero-title {
        font-size: 2.8em;
    }
    .page-resources-safe-betting-tips__hero-description {
        font-size: 1em;
    }
    .page-resources-safe-betting-tips__section-title {
        font-size: 2em;
    }
    .page-resources-safe-betting-tips__card-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-resources-safe-betting-tips__hero-section .page-resources-safe-betting-tips__container {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-safe-betting-tips__hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .page-resources-safe-betting-tips__hero-title {
        font-size: 2.2em;
    }
    .page-resources-safe-betting-tips__hero-description {
        font-size: 0.95em;
    }
    .page-resources-safe-betting-tips__section-title {
        font-size: 1.8em;
    }
    .page-resources-safe-betting-tips__card-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-safe-betting-tips__content-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-safe-betting-tips__cta-button {
        width: 100% !important;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-resources-safe-betting-tips__cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-resources-safe-betting-tips__btn-secondary {
        margin-left: 0;
    }

    /* Mobile image and video responsive rules */
    .page-resources-safe-betting-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-safe-betting-tips video,
    .page-resources-safe-betting-tips__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-safe-betting-tips__section,
    .page-resources-safe-betting-tips__card,
    .page-resources-safe-betting-tips__container,
    .page-resources-safe-betting-tips__hero-section,
    .page-resources-safe-betting-tips__video-section,
    .page-resources-safe-betting-tips__video-container,
    .page-resources-safe-betting-tips__video-wrapper,
    .page-resources-safe-betting-tips__cta-buttons,
    .page-resources-safe-betting-tips__button-group,
    .page-resources-safe-betting-tips__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-safe-betting-tips__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-safe-betting-tips__faq-question,
    .page-resources-safe-betting-tips__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-safe-betting-tips {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-safe-betting-tips__card {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

@media (max-width: 480px) {
    .page-resources-safe-betting-tips__hero-title {
        font-size: 1.8em;
    }
    .page-resources-safe-betting-tips__section-title {
        font-size: 1.5em;
    }
    .page-resources-safe-betting-tips__faq-question {
        font-size: 1.1em;
    }
}