/* style/latest-news-regulatory-changes.css */

:root {
    --page-bg-color: #0A192F;
    --primary-color: #FFD700;
    --secondary-text-color: #E0E0E0;
    --heading-color: #FFD700;
    --text-color: #CCCCCC;
    --dark-text-color: #0A192F;
    --button-bg-primary: #FFD700;
    --button-text-primary: #0A192F;
    --button-bg-secondary: #0A192F;
    --button-text-secondary: #FFD700;
    --border-color: #334054;
}

.page-latest-news-regulatory-changes {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--page-bg-color);
    line-height: 1.6;
}

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

.page-latest-news-regulatory-changes__hero {
    background: linear-gradient(135deg, var(--page-bg-color) 0%, #1A2B42 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.page-latest-news-regulatory-changes__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-latest-news-regulatory-changes__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--secondary-text-color);
}

.page-latest-news-regulatory-changes__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-latest-news-regulatory-changes__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(50%);
}

.page-latest-news-regulatory-changes__cta-button {
    display: inline-block;
    background-color: var(--button-bg-primary);
    color: var(--button-text-primary);
    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;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.page-latest-news-regulatory-changes__cta-button:hover {
    background-color: #FFC000; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-latest-news-regulatory-changes__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-latest-news-regulatory-changes__section {
    padding: 60px 0;
}

.page-latest-news-regulatory-changes__section:nth-of-type(even) {
    background-color: #0D2033; /* Slightly lighter dark blue */
}

.page-latest-news-regulatory-changes__section-title {
    font-size: 2.5em;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-latest-news-regulatory-changes__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-latest-news-regulatory-changes__introduction p, 
.page-latest-news-regulatory-changes__global-overview p, 
.page-latest-news-regulatory-changes__recent-changes p, 
.page-latest-news-regulatory-changes__kv888-compliance p, 
.page-latest-news-regulatory-changes__player-advice p, 
.page-latest-news-regulatory-changes__future-outlook p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: var(--text-color);
}

.page-latest-news-regulatory-changes__primary-button {
    display: inline-block;
    background-color: var(--button-bg-primary);
    color: var(--button-text-primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-latest-news-regulatory-changes__primary-button:hover {
    background-color: #FFC000;
}

.page-latest-news-regulatory-changes__secondary-button {
    display: inline-block;
    background-color: var(--button-bg-secondary);
    color: var(--button-text-secondary);
    border: 2px solid var(--button-text-secondary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-latest-news-regulatory-changes__secondary-button:hover {
    background-color: var(--button-text-secondary);
    color: var(--button-bg-secondary);
}

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

.page-latest-news-regulatory-changes__grid-item {
    background-color: #1A2B42;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-latest-news-regulatory-changes__grid-item:hover {
    transform: translateY(-5px);
}

.page-latest-news-regulatory-changes__grid-item h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-latest-news-regulatory-changes__grid-item p {
    color: var(--secondary-text-color);
    font-size: 1em;
}

.page-latest-news-regulatory-changes__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2);
}

.page-latest-news-regulatory-changes__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-latest-news-regulatory-changes__list li {
    background-color: #1A2B42;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    color: var(--secondary-text-color);
    font-size: 1.1em;
}

.page-latest-news-regulatory-changes__list li strong {
    color: var(--primary-color);
}

.page-latest-news-regulatory-changes__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    filter: brightness(0.8);
}

.page-latest-news-regulatory-changes__image-center {
    display: block;
    margin: 40px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    filter: brightness(0.8);
}

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

.page-latest-news-regulatory-changes__compliance-item {
    background-color: #1A2B42;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-latest-news-regulatory-changes__compliance-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-latest-news-regulatory-changes__compliance-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.2);
}

.page-latest-news-regulatory-changes__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 20px;
    color: var(--text-color);
}

.page-latest-news-regulatory-changes__ordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--secondary-text-color);
}

.page-latest-news-regulatory-changes__ordered-list li strong {
    color: var(--primary-color);
}

.page-latest-news-regulatory-changes__call-to-action-box {
    background-color: #1A2B42;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-latest-news-regulatory-changes__call-to-action-box h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.page-latest-news-regulatory-changes__call-to-action-box p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-latest-news-regulatory-changes__hero-title {
        font-size: 2.8em;
    }
    .page-latest-news-regulatory-changes__hero-subtitle {
        font-size: 1.3em;
    }
    .page-latest-news-regulatory-changes__section-title {
        font-size: 2em;
    }
    .page-latest-news-regulatory-changes__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-latest-news-regulatory-changes__hero {
        padding: 60px 0;
    }
    .page-latest-news-regulatory-changes__hero-title {
        font-size: 2.2em;
    }
    .page-latest-news-regulatory-changes__hero-subtitle {
        font-size: 1.1em;
    }
    .page-latest-news-regulatory-changes__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-latest-news-regulatory-changes__section {
        padding: 40px 0;
    }
    .page-latest-news-regulatory-changes__section-title {
        font-size: 1.8em;
    }
    .page-latest-news-regulatory-changes__subsection-title {
        font-size: 1.4em;
    }
    .page-latest-news-regulatory-changes__content-grid,
    .page-latest-news-regulatory-changes__compliance-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-news-regulatory-changes__primary-button,
    .page-latest-news-regulatory-changes__secondary-button {
        display: block;
        width: fit-content;
        margin: 20px auto 0;
    }
    .page-latest-news-regulatory-changes__secondary-button {
        margin-left: auto;
    }
    .page-latest-news-regulatory-changes__image-center {
        max-width: 95%;
    }
    .page-latest-news-regulatory-changes__call-to-action-box h3 {
        font-size: 1.6em;
    }
    .page-latest-news-regulatory-changes__call-to-action-box p {
        font-size: 1em;
    }
    .page-latest-news-regulatory-changes__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-latest-news-regulatory-changes__hero-title {
        font-size: 1.8em;
    }
    .page-latest-news-regulatory-changes__hero-subtitle {
        font-size: 0.9em;
    }
    .page-latest-news-regulatory-changes__section-title {
        font-size: 1.5em;
    }
    .page-latest-news-regulatory-changes__subsection-title {
        font-size: 1.2em;
    }
    .page-latest-news-regulatory-changes__introduction p, 
    .page-latest-news-regulatory-changes__global-overview p, 
    .page-latest-news-regulatory-changes__recent-changes p, 
    .page-latest-news-regulatory-changes__kv888-compliance p, 
    .page-latest-news-regulatory-changes__player-advice p, 
    .page-latest-news-regulatory-changes__future-outlook p,
    .page-latest-news-regulatory-changes__list li,
    .page-latest-news-regulatory-changes__ordered-list li {
        font-size: 0.95em;
    }
    .page-latest-news-regulatory-changes__call-to-action-box {
        padding: 25px;
    }
    .page-latest-news-regulatory-changes__call-to-action-box h3 {
        font-size: 1.4em;
    }
}