/* style/industry-news-responsible-gambling-best-practices.css */

:root {
    --page-primary-color: #FFD700; /* Gold */
    --page-secondary-color: #000000; /* Black */
    --page-text-color-light: #F0F0F0; /* Light grey for dark backgrounds */
    --page-text-color-dark: #333333; /* Dark grey for light backgrounds */
    --page-accent-color: #0028ff; /* Complementary to gold for emphasis */
}

.page-industry-news-responsible-gambling-best-practices {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-color-light);
    background-color: var(--page-secondary-color); /* Black background for main content */
}

.page-industry-news-responsible-gambling-best-practices .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-responsible-gambling-best-practices .hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-secondary-color) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--page-text-color-dark); /* Dark text on gradient background */
    position: relative;
    overflow: hidden;
}

.page-industry-news-responsible-gambling-best-practices .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.page-industry-news-responsible-gambling-best-practices .hero-section > .container {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-industry-news-responsible-gambling-best-practices .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-secondary-color); /* Black title on gold gradient */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-responsible-gambling-best-practices .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-text-color-dark);
}

.page-industry-news-responsible-gambling-best-practices .hero-actions .btn {
    margin: 10px;
}

.page-industry-news-responsible-gambling-best_practices .content-block {
    padding: 60px 0;
    background-color: var(--page-secondary-color);
    color: var(--page-text-color-light);
}

.page-industry-news-responsible-gambling-best-practices .content-block:nth-of-type(even) {
    background-color: #1a1a1a; /* Slightly lighter black for alternating sections */
}

.page-industry-news-responsible-gambling-best-practices .section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news-responsible-gambling-best-practices h2, .page-industry-news-responsible-gambling-best-practices h3 {
    color: var(--page-primary-color);
}

.page-industry-news-responsible-gambling-best-practices p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-text-color-light);
}

.page-industry-news-responsible-gambling-best-practices .highlight {
    color: var(--page-primary-color);
    font-weight: bold;
}

.page-industry-news-responsible-gambling-best-practices .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-industry-news-responsible-gambling-best-practices .btn-primary {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color); /* Black text on gold button */
}

.page-industry-news-responsible-gambling-best-practices .btn-primary:hover {
    background-color: #b39700; /* Darker gold on hover */
    color: var(--page-text-color-light);
}

.page-industry-news-responsible-gambling-best-practices .btn-secondary {
    background-color: transparent;
    color: var(--page-primary-color);
    border: 2px solid var(--page-primary-color);
}

.page-industry-news-responsible-gambling-best-practices .btn-secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
}

.page-industry-news-responsible-gambling-best-practices ul,
.page-industry-news-responsible-gambling-best-practices ol {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--page-text-color-light);
}

.page-industry-news-responsible-gambling-best-practices ol {
    list-style-type: decimal;
}

.page-industry-news-responsible-gambling-best-practices li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-industry-news-responsible-gambling-best-practices .content-image,
.page-industry-news-responsible-gambling-best-practices .practice-image,
.page-industry-news-responsible-gambling-best-practices .commitment-image,
.page-industry-news-responsible-gambling-best-practices .cta-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-industry-news-responsible-gambling-best-practices .practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-industry-news-responsible-gambling-best-practices .practice-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-industry-news-responsible-gambling-best-practices .practice-item:hover {
    transform: translateY(-10px);
}

.page-industry-news-responsible-gambling-best-practices .practice-title,
.page-industry-news-responsible-gambling-best-practices .commitment-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news-responsible-gambling-best-practices .commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.page-industry-news-responsible-gambling-best-practices .commitment-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-responsible-gambling-best-practices .cta-section {
    background: linear-gradient(90deg, var(--page-secondary-color) 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--page-text-color-light);
}

.page-industry-news-responsible-gambling-best-practices .cta-title {
    font-size: 3em;
    color: var(--page-primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-news-responsible-gambling-best-practices .cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-industry-news-responsible-gambling-best-practices .cta-buttons .btn {
    margin: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-industry-news-responsible-gambling-best-practices .hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-responsible-gambling-best-practices .hero-subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-responsible-gambling-best-practices .section-title,
    .page-industry-news-responsible-gambling-best-practices .cta-title {
        font-size: 2em;
    }

    .page-industry-news-responsible-gambling-best-practices .practice-grid,
    .page-industry-news-responsible-gambling-best-practices .commitment-points {
        grid-template-columns: 1fr;
    }

    .page-industry-news-responsible-gambling-best-practices .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-responsible-gambling-best-practices .hero-title {
        font-size: 2em;
    }

    .page-industry-news-responsible-gambling-best-practices .hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-responsible-gambling-best-practices .section-title,
    .page-industry-news-responsible-gambling-best-practices .cta-title {
        font-size: 1.8em;
    }

    .page-industry-news-responsible-gambling-best-practices .hero-actions .btn,
    .page-industry-news-responsible-gambling-best-practices .cta-buttons .btn {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}