/* style/resources-how-to-bet-safely-on-g-88.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-text-color: #333333;
    --light-text-color: #ffffff;
    --login-color: #EA7C07;
    --background-color: #FFFFFF;
    --black-color: #000000;
}

.page-resources-how-to-bet-safely-on-g-88 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text-color); /* Default text color for light backgrounds */
}

.page-resources-how-to-bet-safely-on-g-88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-how-to-bet-safely-on-g-88__hero-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 80px 0;
    padding-top: 0; /* Assuming shared.css sets body padding-top: var(--header-offset) */
    display: flex;
    align-items: center;
    min-height: 500px;
}

.page-resources-how-to-bet-safely-on-g-88__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--light-text-color);
    font-weight: bold;
}

.page-resources-how-to-bet-safely-on-g-88__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-how-to-bet-safely-on-g-88__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-how-to-bet-safely-on-g-88__btn-primary,
.page-resources-how-to-bet-safely-on-g-88__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;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-how-to-bet-safely-on-g-88__btn-primary {
    background-color: var(--login-color);
    color: var(--light-text-color);
    border: 2px solid var(--login-color);
}

.page-resources-how-to-bet-safely-on-g-88__btn-primary:hover {
    background-color: darken(var(--login-color), 10%);
    border-color: darken(var(--login-color), 10%);
}

.page-resources-how-to-bet-safely-on-g-88__btn-secondary {
    background-color: transparent;
    color: var(--light-text-color);
    border: 2px solid var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__btn-secondary:hover {
    background-color: var(--light-text-color);
    color: var(--primary-color);
}

.page-resources-how-to-bet-safely-on-g-88__content-area {
    padding: 60px 0;
}

.page-resources-how-to-bet-safely-on-g-88__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-resources-how-to-bet-safely-on-g-88__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-how-to-bet-safely-on-g-88__card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--dark-text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-how-to-bet-safely-on-g-88__card:hover {
    transform: translateY(-5px);
}

.page-resources-how-to-bet-safely-on-g-88__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
}

.page-resources-how-to-bet-safely-on-g-88__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-how-to-bet-safely-on-g-88__card-text {
    font-size: 1em;
    line-height: 1.7;
    text-align: left;
}

.page-resources-how-to-bet-safely-on-g-88__dark-bg {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__dark-bg .page-resources-how-to-bet-safely-on-g-88__section-title,
.page-resources-how-to-bet-safely-on-g-88__dark-bg .page-resources-how-to-bet-safely-on-g-88__card-title {
    color: var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__dark-bg .page-resources-how-to-bet-safely-on-g-88__card {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-bet-safely-on-g-88__dark-bg .page-resources-how-to-bet-safely-on-g-88__card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-bet-safely-on-g-88__light-bg {
    background-color: var(--background-color);
    color: var(--dark-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-bet-safely-on-g-88__step-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    color: var(--light-text-color);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-bet-safely-on-g-88__step-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--light-text-color);
    font-weight: bold;
}

.page-resources-how-to-bet-safely-on-g-88__step-text {
    font-size: 1em;
    line-height: 1.7;
}

.page-resources-how-to-bet-safely-on-g-88__security-section {
    padding: 60px 0;
}

.page-resources-how-to-bet-safely-on-g-88__faq-section {
    padding: 60px 0;
}

.page-resources-how-to-bet-safely-on-g-88__faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.page-resources-how-to-bet-safely-on-g-88__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-bet-safely-on-g-88__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-bet-safely-on-g-88__faq-title {
    font-size: 1.2em;
    margin: 0;
    font-weight: bold;
    color: var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__faq-item.active .page-resources-how-to-bet-safely-on-g-88__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-how-to-bet-safely-on-g-88__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-how-to-bet-safely-on-g-88__faq-item.active .page-resources-how-to-bet-safely-on-g-88__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 20px 25px;
}

.page-resources-how-to-bet-safely-on-g-88__faq-answer p {
    margin-bottom: 10px;
    color: var(--light-text-color);
}

.page-resources-how-to-bet-safely-on-g-88__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-how-to-bet-safely-on-g-88__conclusion-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--dark-text-color);
}

/* General image styling */
.page-resources-how-to-bet-safely-on-g-88 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-resources-how-to-bet-safely-on-g-88 {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-resources-how-to-bet-safely-on-g-88__hero-section {
        padding: 60px 0 !important;
        min-height: auto;
    }

    .page-resources-how-to-bet-safely-on-g-88__hero-title {
        font-size: 2.2em;
    }

    .page-resources-how-to-bet-safely-on-g-88__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-resources-how-to-bet-safely-on-g-88__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-resources-how-to-bet-safely-on-g-88__btn-primary,
    .page-resources-how-to-bet-safely-on-g-88__btn-secondary,
    .page-resources-how-to-bet-safely-on-g-88 a[class*="button"],
    .page-resources-how-to-bet-safely-on-g-88 a[class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-resources-how-to-bet-safely-on-g-88__content-area,
    .page-resources-how-to-bet-safely-on-g-88__security-section,
    .page-resources-how-to-bet-safely-on-g-88__faq-section,
    .page-resources-how-to-bet-safely-on-g-88__conclusion-section {
        padding: 40px 0;
    }

    .page-resources-how-to-bet-safely-on-g-88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-how-to-bet-safely-on-g-88__grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-how-to-bet-safely-on-g-88__card {
        padding: 20px;
    }

    .page-resources-how-to-bet-safely-on-g-88__card-image {
        height: 200px;
    }

    .page-resources-how-to-bet-safely-on-g-88__card-title {
        font-size: 1.3em;
    }

    .page-resources-how-to-bet-safely-on-g-88__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-how-to-bet-safely-on-g-88__step-item {
        padding: 25px;
    }

    .page-resources-how-to-bet-safely-on-g-88__step-title {
        font-size: 1.4em;
    }

    .page-resources-how-to-bet-safely-on-g-88__faq-list {
        margin-top: 30px;
    }

    .page-resources-how-to-bet-safely-on-g-88__faq-question {
        padding: 15px 20px;
    }

    .page-resources-how-to-bet-safely-on-g-88__faq-title {
        font-size: 1.1em;
    }

    .page-resources-how-to-bet-safely-on-g-88__faq-answer {
        padding: 15px 20px;
    }

    .page-resources-how-to-bet-safely-on-g-88__conclusion-text {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Universal image and container responsive styles for mobile */
    .page-resources-how-to-bet-safely-on-g-88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-resources-how-to-bet-safely-on-g-88__section,
    .page-resources-how-to-bet-safely-on-g-88__card,
    .page-resources-how-to-bet-safely-on-g-88__container,
    .page-resources-how-to-bet-safely-on-g-88__grid-layout,
    .page-resources-how-to-bet-safely-on-g-88__steps-grid,
    .page-resources-how-to-bet-safely-on-g-88__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-how-to-bet-safely-on-g-88__hero-section .page-resources-how-to-bet-safely-on-g-88__container {
        padding-left: 0;
        padding-right: 0;
    }
}