/* style/resources-ww88-safe-gaming.css */

.page-resources-ww88-safe-gaming__hero-section {
    background: linear-gradient(135deg, #003366 0%, #003366 70%, #FFCC00 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-ww88-safe-gaming__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    animation: page-resources-ww88-safe-gaming__bubble-animate 15s infinite ease-in-out;
    z-index: 0;
}

.page-resources-ww88-safe-gaming__hero-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    animation: page-resources-ww88-safe-gaming__bubble-animate 18s infinite reverse ease-in-out;
    z-index: 0;
}

@keyframes page-resources-ww88-safe-gaming__bubble-animate {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(50px, 50px) scale(1.1); opacity: 0.6; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

.page-resources-ww88-safe-gaming__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-resources-ww88-safe-gaming__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* High contrast with #003366 */
    line-height: 1.2;
    font-weight: 700;
}

.page-resources-ww88-safe-gaming__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Light grey for contrast */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-ww88-safe-gaming__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-ww88-safe-gaming__button--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Primary color, high contrast */
    border: 2px solid #FFCC00;
}

.page-resources-ww88-safe-gaming__button--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-resources-ww88-safe-gaming__button--secondary {
    background-color: #003366; /* Primary color */
    color: #FFCC00; /* Auxiliary color, high contrast */
    border: 2px solid #FFCC00;
}

.page-resources-ww88-safe-gaming__button--secondary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.page-resources-ww88-safe-gaming__content-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    color: #333333; /* Dark grey for general text */
}

.page-resources-ww88-safe-gaming__article {
    line-height: 1.8;
    font-size: 1.05em;
}

.page-resources-ww88-safe-gaming__section-title {
    font-size: 2.2em;
    color: #003366; /* Primary color */
    margin-top: 40px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid #FFCC00; /* Auxiliary color for accent */
}

.page-resources-ww88-safe-gaming__article p {
    margin-bottom: 1em;
    color: #444444; /* Slightly lighter than #333333 */
}

.page-resources-ww88-safe-gaming__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-ww88-safe-gaming__list li {
    background-color: #e6f2ff; /* Light blue background for list items */
    border-left: 4px solid #003366;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1em;
    color: #222222;
}

.page-resources-ww88-safe-gaming__list li strong {
    color: #003366;
}

.page-resources-ww88-safe-gaming__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-resources-ww88-safe-gaming__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-ww88-safe-gaming__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666666;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-ww88-safe-gaming__main-title {
        font-size: 2.5em;
    }

    .page-resources-ww88-safe-gaming__subtitle {
        font-size: 1.1em;
    }

    .page-resources-ww88-safe-gaming__section-title {
        font-size: 1.8em;
    }

    .page-resources-ww88-safe-gaming__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-ww88-safe-gaming__main-title {
        font-size: 2em;
    }

    .page-resources-ww88-safe-gaming__subtitle {
        font-size: 1em;
    }

    .page-resources-ww88-safe-gaming__section-title {
        font-size: 1.6em;
    }

    .page-resources-ww88-safe-gaming__hero-section {
        padding: 60px 15px;
    }

    .page-resources-ww88-safe-gaming__content-section {
        padding: 40px 0;
    }
}