/* style/resources-vn68-club-responsible-gambling.css */

/* Biến CSS */
:root {
    --page-bg-color: #f8f8f8;
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-color-dark: #1A202C;
    --text-color-light: #ffffff;
    --link-color: #FFD700;
    --link-hover-color: #e6c200;
    --border-color: #e0e0e0;
}

.page-resources-vn68-club-responsible-gambling {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--page-bg-color);
}

.page-resources-vn68-club-responsible-gambling__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-vn68-club-responsible-gambling__hero-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-vn68-club-responsible-gambling__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-vn68-club-responsible-gambling__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-vn68-club-responsible-gambling__highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-resources-vn68-club-responsible-gambling__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-resources-vn68-club-responsible-gambling__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-vn68-club-responsible-gambling__section:last-of-type {
    border-bottom: none;
}

.page-resources-vn68-club-responsible-gambling__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-vn68-club-responsible-gambling__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-resources-vn68-club-responsible-gambling__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.page-resources-vn68-club-responsible-gambling__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

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

.page-resources-vn68-club-responsible-gambling__grid-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-vn68-club-responsible-gambling__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-vn68-club-responsible-gambling__grid-item .page-resources-vn68-club-responsible-gambling__subsection-title {
    font-size: 1.5em;
    margin-top: 0;
    border-left: none;
    padding-left: 0;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
}

.page-resources-vn68-club-responsible-gambling__grid-item .page-resources-vn68-club-responsible-gambling__text {
    font-size: 1em;
    text-align: center;
}

.page-resources-vn68-club-responsible-gambling__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-resources-vn68-club-responsible-gambling__list li {
    margin-bottom: 10px;
}

.page-resources-vn68-club-responsible-gambling__list strong {
    color: var(--primary-color);
}

.page-resources-vn68-club-responsible-gambling__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vn68-club-responsible-gambling__link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-vn68-club-responsible-gambling__link:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.page-resources-vn68-club-responsible-gambling__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.page-resources-vn68-club-responsible-gambling__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-vn68-club-responsible-gambling__btn--primary:hover {
    background-color: var(--link-hover-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-resources-vn68-club-responsible-gambling__btn--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-vn68-club-responsible-gambling__btn--secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    transform: translateY(-2px);
}

.page-resources-vn68-club-responsible-gambling__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-vn68-club-responsible-gambling__cta-final {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-vn68-club-responsible-gambling__hero-title {
        font-size: 2.5em;
    }

    .page-resources-vn68-club-responsible-gambling__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-vn68-club-responsible-gambling__section-title {
        font-size: 2em;
    }

    .page-resources-vn68-club-responsible-gambling__subsection-title {
        font-size: 1.5em;
    }

    .page-resources-vn68-club-responsible-gambling__grid {
        grid-template-columns: 1fr;
    }

    .page-resources-vn68-club-responsible-gambling__btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .page-resources-vn68-club-responsible-gambling__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-vn68-club-responsible-gambling__hero-title {
        font-size: 2em;
    }

    .page-resources-vn68-club-responsible-gambling__section-title {
        font-size: 1.8em;
    }

    .page-resources-vn68-club-responsible-gambling__text, 
    .page-resources-vn68-club-responsible-gambling__list {
        font-size: 1em;
    }
}