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

/* Variables for colors and fonts */
:root {
    --page-industry-news-regulatory-updates-primary-color: #007bff; /*蔚蓝蓝*/
    --page-industry-news-regulatory-updates-secondary-color: #ffc107; /*琥珀黄*/
    --page-industry-news-regulatory-updates-dark-text: #212529; /* Dark grey for text on light backgrounds */
    --page-industry-news-regulatory-updates-light-text: #ffffff; /* White for text on dark backgrounds */
    --page-industry-news-regulatory-updates-background-light: #f8f9fa; /* Light grey background */
    --page-industry-news-regulatory-updates-background-medium: #e9ecef; /* Medium grey background */
}

.page-industry-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-industry-news-regulatory-updates-dark-text);
    background-color: var(--page-industry-news-regulatory-updates-background-light);
}

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

/* Hero Section */
.page-industry-news-regulatory-updates__hero {
    background: linear-gradient(135deg, var(--page-industry-news-regulatory-updates-primary-color), #0056b3); /* Darker blue for gradient */
    color: var(--page-industry-news-regulatory-updates-light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-regulatory-updates__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_lines,digital_pattern,security_grid]') no-repeat center center/cover; /* Abstract background pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-industry-news-regulatory-updates__hero .page-industry-news-regulatory-updates__container {
    position: relative;
    z-index: 1;
}

.page-industry-news-regulatory-updates__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-industry-news-regulatory-updates-light-text);
    line-height: 1.2;
}

.page-industry-news-regulatory-updates__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-industry-news-regulatory-updates__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-industry-news-regulatory-updates__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-industry-news-regulatory-updates__btn--primary {
    background-color: var(--page-industry-news-regulatory-updates-secondary-color);
    color: var(--page-industry-news-regulatory-updates-dark-text); /* Ensure good contrast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-regulatory-updates__btn--primary:hover {
    background-color: #e6a700; /* Slightly darker amber */
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates__btn--secondary {
    background-color: transparent;
    color: var(--page-industry-news-regulatory-updates-light-text);
    border: 2px solid var(--page-industry-news-regulatory-updates-light-text);
}

.page-industry-news-regulatory-updates__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates__btn--tertiary {
    background-color: var(--page-industry-news-regulatory-updates-primary-color);
    color: var(--page-industry-news-regulatory-updates-light-text);
    border: 2px solid var(--page-industry-news-regulatory-updates-primary-color);
}

.page-industry-news-regulatory-updates__btn--tertiary:hover {
    background-color: #0056b3; /* Darker primary */
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

/* Sections */
.page-industry-news-regulatory-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-industry-news-regulatory-updates-background-medium);
}

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

.page-industry-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: var(--page-industry-news-regulatory-updates-primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #343a40; /* Slightly darker than default for better contrast */
}

.page-industry-news-regulatory-updates__section h3 {
    font-size: 1.8em;
    color: var(--page-industry-news-regulatory-updates-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--page-industry-news-regulatory-updates-secondary-color);
    padding-bottom: 10px;
}

.page-industry-news-regulatory-updates__section h4 {
    font-size: 1.4em;
    color: #495057;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-regulatory-updates__section ul,
.page-industry-news-regulatory-updates__section ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-industry-news-regulatory-updates__section ul li,
.page-industry-news-regulatory-updates__section ol li {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #495057;
}

.page-industry-news-regulatory-updates__section ul li::marker {
    color: var(--page-industry-news-regulatory-updates-secondary-color);
}
.page-industry-news-regulatory-updates__section ol li::marker {
    color: var(--page-industry-news-regulatory-updates-primary-color);
}

.page-industry-news-regulatory-updates__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Specific section styling */
.page-industry-news-regulatory-updates__intro {
    background-color: var(--page-industry-news-regulatory-updates-background-light);
}

.page-industry-news-regulatory-updates__betvisa-commitment {
    background-color: var(--page-industry-news-regulatory-updates-background-medium);
}

.page-industry-news-regulatory-updates__global-trends {
    background-color: var(--page-industry-news-regulatory-updates-background-light);
}

.page-industry-news-regulatory-updates__how-betvisa-adapts {
    background-color: var(--page-industry-news-regulatory-updates-background-medium);
}

.page-industry-news-regulatory-updates__player-benefits {
    background-color: var(--page-industry-news-regulatory-updates-background-light);
}

.page-industry-news-regulatory-updates__cta-section {
    background: linear-gradient(90deg, #0056b3, var(--page-industry-news-regulatory-updates-primary-color));
    color: var(--page-industry-news-regulatory-updates-light-text);
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-regulatory-updates__cta-section .page-industry-news-regulatory-updates__section-title {
    color: var(--page-industry-news-regulatory-updates-light-text);
    margin-bottom: 25px;
}

.page-industry-news-regulatory-updates__cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.15em;
}

.page-industry-news-regulatory-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Fade-in animation for sections */
.page-industry-news-regulatory-updates .fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.page-industry-news-regulatory-updates .fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-regulatory-updates__title {
        font-size: 2.5em;
    }
    .page-industry-news-regulatory-updates__subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__section h3 {
        font-size: 1.6em;
    }
    .page-industry-news-regulatory-updates__btn--large {
        min-width: unset;
        width: 100%;
    }
    .page-industry-news-regulatory-updates__hero-actions,
    .page-industry-news-regulatory-updates__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero {
        padding: 80px 0 60px;
    }
    .page-industry-news-regulatory-updates__title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__subtitle {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__section {
        padding: 40px 0;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__section h3 {
        font-size: 1.4em;
    }
    .page-industry-news-regulatory-updates__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__subtitle {
        font-size: 0.9em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__hero-actions,
    .page-industry-news-regulatory-updates__cta-buttons {
        gap: 15px;
    }
}