/* style/gambling-news-regulations-market.css */

/* Variables */
:root {
    --page-gambling-news-regulations-market-primary-color: #0A2342;
    --page-gambling-news-regulations-market-secondary-color: #FFD700;
    --page-gambling-news-regulations-market-text-light: #F8F8F8;
    --page-gambling-news-regulations-market-text-dark: #2C3E50;
    --page-gambling-news-regulations-market-background-light: #F0F2F5;
    --page-gambling-news-regulations-market-background-dark: #071930;
    --page-gambling-news-regulations-market-accent-color: #f5dcbd; /* Derived from primary */
    --page-gambling-news-regulations-market-hover-color: #e6c200; /* Darker secondary */
}

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

.page-gambling-news-regulations-market__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-news-regulations-market__hero {
    background: linear-gradient(135deg, var(--page-gambling-news-regulations-market-primary-color), var(--page-gambling-news-regulations-market-background-dark));
    color: var(--page-gambling-news-regulations-market-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-news-regulations-market__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_blue_gold,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gambling-news-regulations-market__hero > * {
    position: relative;
    z-index: 1;
}

.page-gambling-news-regulations-market__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-gambling-news-regulations-market-secondary-color);
}

.page-gambling-news-regulations-market__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-news-regulations-market__section {
    padding: 80px 0;
}

.page-gambling-news-regulations-market__section--dark {
    background-color: var(--page-gambling-news-regulations-market-primary-color);
    color: var(--page-gambling-news-regulations-market-text-light);
}

.page-gambling-news-regulations-market__section--dark .page-gambling-news-regulations-market__section-title,
.page-gambling-news-regulations-market__section--dark .page-gambling-news-regulations-market__sub-title {
    color: var(--page-gambling-news-regulations-market-secondary-color);
}

.page-gambling-news-regulations-market__section-title {
    font-size: 2.8em;
    color: var(--page-gambling-news-regulations-market-primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-news-regulations-market__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-gambling-news-regulations-market-secondary-color);
    border-radius: 2px;
}

.page-gambling-news-regulations-market__sub-title {
    font-size: 1.8em;
    color: var(--page-gambling-news-regulations-market-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gambling-news-regulations-market__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-gambling-news-regulations-market__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-gambling-news-regulations-market__text-block {
    flex: 1;
    font-size: 1.1em;
}

.page-gambling-news-regulations-market__text-block p {
    margin-bottom: 15px;
}

.page-gambling-news-regulations-market__image-wrapper {
    flex: 1;
    min-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-regulations-market__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.page-gambling-news-regulations-market__image:hover {
    transform: scale(1.03);
}

.page-gambling-news-regulations-market__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-gambling-news-regulations-market__btn--primary {
    background-color: var(--page-gambling-news-regulations-market-secondary-color);
    color: var(--page-gambling-news-regulations-market-primary-color);
    border-color: var(--page-gambling-news-regulations-market-secondary-color);
}

.page-gambling-news-regulations-market__btn--primary:hover {
    background-color: var(--page-gambling-news-regulations-market-hover-color);
    border-color: var(--page-gambling-news-regulations-market-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-gambling-news-regulations-market__btn--secondary {
    background-color: var(--page-gambling-news-regulations-market-primary-color);
    color: var(--page-gambling-news-regulations-market-secondary-color);
    border-color: var(--page-gambling-news-regulations-market-primary-color);
}

.page-gambling-news-regulations-market__btn--secondary:hover {
    background-color: var(--page-gambling-news-regulations-market-background-dark);
    border-color: var(--page-gambling-news-regulations-market-background-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(10, 35, 66, 0.3);
}

.page-gambling-news-regulations-market__btn--outline {
    background-color: transparent;
    color: var(--page-gambling-news-regulations-market-text-light);
    border-color: var(--page-gambling-news-regulations-market-secondary-color);
}

.page-gambling-news-regulations-market__btn--outline:hover {
    background-color: var(--page-gambling-news-regulations-market-secondary-color);
    color: var(--page-gambling-news-regulations-market-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-gambling-news-regulations-market__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gambling-news-regulations-market__section--cta {
    background: linear-gradient(45deg, var(--page-gambling-news-regulations-market-primary-color), var(--page-gambling-news-regulations-market-background-dark));
    color: var(--page-gambling-news-regulations-market-text-light);
    text-align: center;
}

.page-gambling-news-regulations-market__section-title--light {
    color: var(--page-gambling-news-regulations-market-secondary-color);
}

.page-gambling-news-regulations-market__text--light {
    color: var(--page-gambling-news-regulations-market-accent-color);
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-gambling-news-regulations-market__faq-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.page-gambling-news-regulations-market__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-gambling-news-regulations-market__faq-question {
    font-size: 1.4em;
    color: var(--page-gambling-news-regulations-market-primary-color);
    margin-bottom: 10px;
}

.page-gambling-news-regulations-market__faq-answer {
    font-size: 1.1em;
    color: var(--page-gambling-news-regulations-market-text-dark);
}

.page-gambling-news-regulations-market__section--conclusion {
    background: var(--page-gambling-news-regulations-market-primary-color);
    color: var(--page-gambling-news-regulations-market-text-light);
    text-align: center;
    padding-bottom: 100px;
}

.page-gambling-news-regulations-market .highlight {
    color: var(--page-gambling-news-regulations-market-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-news-regulations-market__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-news-regulations-market__hero-subtitle {
        font-size: 1.3em;
    }
    .page-gambling-news-regulations-market__section-title {
        font-size: 2.2em;
    }
    .page-gambling-news-regulations-market__sub-title {
        font-size: 1.6em;
    }
    .page-gambling-news-regulations-market__content-grid {
        flex-direction: column;
    }
    .page-gambling-news-regulations-market__content-grid--reverse {
        flex-direction: column;
    }
    .page-gambling-news-regulations-market__image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gambling-news-regulations-market__hero {
        padding: 80px 0;
    }
    .page-gambling-news-regulations-market__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-news-regulations-market__hero-subtitle {
        font-size: 1.1em;
    }
    .page-gambling-news-regulations-market__section {
        padding: 60px 0;
    }
    .page-gambling-news-regulations-market__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-gambling-news-regulations-market__sub-title {
        font-size: 1.4em;
    }
    .page-gambling-news-regulations-market__text-block,
    .page-gambling-news-regulations-market__faq-answer {
        font-size: 1em;
    }
    .page-gambling-news-regulations-market__faq-question {
        font-size: 1.2em;
    }
    .page-gambling-news-regulations-market__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-news-regulations-market__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-regulations-market__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-news-regulations-market__section-title {
        font-size: 1.6em;
    }
    .page-gambling-news-regulations-market__hero-subtitle {
        font-size: 0.95em;
    }
}