/* style/news-center-regulatory-updates.css */

.page-news-center-regulatory-updates {
    font-family: Arial, sans-serif;
    color: #d5d1bc; /* Light text for dark background */
    background-color: #2A2E43; /* Main background color */
    line-height: 1.6;
}

.page-news-center-regulatory-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news-center-regulatory-updates__hero {
    background: linear-gradient(135deg, #2A2E43, #4a506d);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-news-center-regulatory-updates__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-news-center-regulatory-updates__hero-title {
    font-size: 3.2em;
    color: #d5d1bc;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-center-regulatory-updates__hero-description {
    font-size: 1.2em;
    color: #d5d1bc;
    margin-bottom: 30px;
}

.page-news-center-regulatory-updates__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #2A2E43;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-center-regulatory-updates__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-news-center-regulatory-updates__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-news-center-regulatory-updates__hero-image .page-news-center-regulatory-updates__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
}

.page-news-center-regulatory-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-news-center-regulatory-updates__section:last-of-type {
    border-bottom: none;
}

.page-news-center-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news-center-regulatory-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-news-center-regulatory-updates__introduction p,
.page-news-center-regulatory-updates__impact-players p,
.page-news-center-regulatory-updates__responsible-gambling p,
.page-news-center-regulatory-updates__future-outlook p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #d5d1bc;
    text-align: justify;
}

.page-news-center-regulatory-updates__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-center-regulatory-updates__card {
    background-color: #3B405A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-news-center-regulatory-updates__card:hover {
    transform: translateY(-10px);
    background-color: #4a506d;
}

.page-news-center-regulatory-updates__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-news-center-regulatory-updates__card p {
    color: #d5d1bc;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-center-regulatory-updates__card .page-news-center-regulatory-updates__image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 15px;
}

.page-news-center-regulatory-updates__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-news-center-regulatory-updates__list li {
    background-color: #3B405A;
    margin-bottom: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #d5d1bc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news-center-regulatory-updates__list li::before {
    content: '✔';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-news-center-regulatory-updates__compliance-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-center-regulatory-updates__compliance-item {
    background-color: #3B405A;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease;
}

.page-news-center-regulatory-updates__compliance-item:hover {
    background-color: #4a506d;
}

.page-news-center-regulatory-updates__compliance-item-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-news-center-regulatory-updates__compliance-item p {
    color: #d5d1bc;
    font-size: 1em;
    line-height: 1.7;
}

.page-news-center-regulatory-updates__full-width-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-news-center-regulatory-updates__text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-center-regulatory-updates__text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-news-center-regulatory-updates__cta-content {
    text-align: center;
    background-color: #3B405A;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    margin-top: 50px;
}

.page-news-center-regulatory-updates__cta-content .page-news-center-regulatory-updates__section-title {
    color: #d5d1bc;
    margin-bottom: 25px;
}

.page-news-center-regulatory-updates__cta-content .page-news-center-regulatory-updates__section-title::after {
    background-color: #FFD700;
}

.page-news-center-regulatory-updates__cta-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #d5d1bc;
}

.page-news-center-regulatory-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-news-center-regulatory-updates__cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-news-center-regulatory-updates__cta-button--primary {
    background-color: #FFD700;
    color: #2A2E43;
}

.page-news-center-regulatory-updates__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-news-center-regulatory-updates__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-news-center-regulatory-updates__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #2A2E43;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-news-center-regulatory-updates__hero-title {
        font-size: 2.5em;
    }
    .page-news-center-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-news-center-regulatory-updates__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-news-center-regulatory-updates__compliance-points {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-center-regulatory-updates__hero {
        padding: 60px 0;
    }
    .page-news-center-regulatory-updates__hero-title {
        font-size: 2em;
    }
    .page-news-center-regulatory-updates__hero-description {
        font-size: 1em;
    }
    .page-news-center-regulatory-updates__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news-center-regulatory-updates__section {
        padding: 40px 0;
    }
    .page-news-center-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-news-center-regulatory-updates__card,
    .page-news-center-regulatory-updates__compliance-item {
        padding: 25px;
    }
    .page-news-center-regulatory-updates__card-title {
        font-size: 1.5em;
    }
    .page-news-center-regulatory-updates__compliance-item-title {
        font-size: 1.4em;
    }
    .page-news-center-regulatory-updates__cta-content {
        padding: 40px 20px;
    }
    .page-news-center-regulatory-updates__cta-content p {
        font-size: 1.1em;
    }
    .page-news-center-regulatory-updates__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-news-center-regulatory-updates__cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-news-center-regulatory-updates__hero-title {
        font-size: 1.6em;
    }
    .page-news-center-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-news-center-regulatory-updates__card-grid,
    .page-news-center-regulatory-updates__compliance-points {
        grid-template-columns: 1fr;
    }
    .page-news-center-regulatory-updates__list li {
        font-size: 0.95em;
        padding: 12px 20px;
    }
}