/* style/gambling-information-industry-news.css */
.page-gambling-information-industry-news {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    line-height: 1.6;
    background-color: #121A2C; /* Slightly lighter dark background */
}

.page-gambling-information-industry-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-gambling-information-industry-news__section {
    padding: 60px 0;
    background-color: #1A2E4C; /* Main dark blue */
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gambling-information-industry-news__section--dark {
    background-color: #121A2C; /* Even darker for contrast */
    color: #F0F0F0; /* Lighter text for contrast */
}

.page-gambling-information-industry-news__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.page-gambling-information-industry-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-gambling-information-industry-news__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 46, 76, 0.8), rgba(26, 46, 76, 0.6));
    z-index: 2;
}

.page-gambling-information-industry-news__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-gambling-information-industry-news__hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Golden for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-information-industry-news__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gambling-information-industry-news__heading {
    font-size: 2.5em;
    color: #FFD700; /* Golden for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-information-industry-news__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-gambling-information-industry-news__section h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-gambling-information-industry-news__section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-gambling-information-industry-news__section li {
    margin-bottom: 10px;
}

.page-gambling-information-industry-news__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-information-industry-news__image--responsive {
    max-width: 100%;
    height: auto;
}

.page-gambling-information-industry-news__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
}

.page-gambling-information-industry-news__btn--primary {
    background-color: #FFD700; /* Golden button */
    color: #1A2E4C; /* Dark blue text for contrast */
}

.page-gambling-information-industry-news__btn--primary:hover {
    background-color: #e5c100; /* Slightly darker golden on hover */
    color: #0d1a2e;
}

.page-gambling-information-industry-news__btn--secondary {
    background-color: #1A2E4C; /* Dark blue button */
    color: #FFD700; /* Golden text for contrast */
    border: 2px solid #FFD700;
}

.page-gambling-information-industry-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E4C;
}

.page-gambling-information-industry-news__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #0d1a2e; /* Very dark background for CTA */
    color: #FFFFFF;
}

.page-gambling-information-industry-news__cta-section h2 {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-gambling-information-industry-news__cta-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-gambling-information-industry-news__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gambling-information-industry-news__hero {
        height: 400px;
    }

    .page-gambling-information-industry-news__hero-content h1 {
        font-size: 2.5em;
    }

    .page-gambling-information-industry-news__hero-content p {
        font-size: 1em;
    }

    .page-gambling-information-industry-news__heading {
        font-size: 2em;
    }

    .page-gambling-information-industry-news__section h3 {
        font-size: 1.5em;
    }

    .page-gambling-information-industry-news__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-gambling-information-industry-news__cta-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-gambling-information-industry-news__hero {
        height: 300px;
    }

    .page-gambling-information-industry-news__hero-content h1 {
        font-size: 1.8em;
    }

    .page-gambling-information-industry-news__hero-content p {
        font-size: 0.9em;
    }

    .page-gambling-information-industry-news__heading {
        font-size: 1.8em;
    }

    .page-gambling-information-industry-news__section h3 {
        font-size: 1.3em;
    }

    .page-gambling-information-industry-news__btn {
        width: 100%;
        margin: 5px 0;
    }

    .page-gambling-information-industry-news__cta-buttons {
        flex-direction: column;
    }
}