/* style/gambling-news-latest-industry-trends.css */
:root {
    --page-bg-color: #1A202C;
    --page-text-color: #E0E0E0;
    --page-heading-color: #FFD700;
    --page-accent-color: #FFD700;
    --page-button-bg-primary: #FFD700;
    --page-button-text-primary: #1A202C;
    --page-button-bg-secondary: #3A404C;
    --page-button-text-secondary: #FFD700;
    --page-link-color: #FFD700;
    --page-link-hover-color: #E6C200;
    --page-border-color: #3A404C;
}

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

.page-gambling-news-latest-industry-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-news-latest-industry-trends__hero {
    background: linear-gradient(135deg, #1A202C, #3A404C);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-news-latest-industry-trends__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern,lucky88]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gambling-news-latest-industry-trends__hero > div {
    position: relative;
    z-index: 1;
}

.page-gambling-news-latest-industry-trends__title {
    font-size: 3.2em;
    color: var(--page-text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gambling-news-latest-industry-trends__title .highlight {
    color: var(--page-heading-color);
}

.page-gambling-news-latest-industry-trends__subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    margin-bottom: 40px;
}

.page-gambling-news-latest-industry-trends__btn-primary,
.page-gambling-news-latest-industry-trends__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
}

.page-gambling-news-latest-industry-trends__btn-primary {
    background-color: var(--page-button-bg-primary);
    color: var(--page-button-text-primary);
    border: 2px solid var(--page-button-bg-primary);
}

.page-gambling-news-latest-industry-trends__btn-primary:hover {
    background-color: var(--page-link-hover-color);
    border-color: var(--page-link-hover-color);
    transform: translateY(-3px);
}

.page-gambling-news-latest-industry-trends__btn-secondary {
    background-color: transparent;
    color: var(--page-button-text-secondary);
    border: 2px solid var(--page-button-text-secondary);
}

.page-gambling-news-latest-industry-trends__btn-secondary:hover {
    background-color: var(--page-button-text-secondary);
    color: var(--page-button-bg-primary);
    transform: translateY(-3px);
}

.page-gambling-news-latest-industry-trends__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-border-color);
}

.page-gambling-news-latest-industry-trends__section:last-of-type {
    border-bottom: none;
}

.page-gambling-news-latest-industry-trends__section-title {
    font-size: 2.5em;
    color: var(--page-heading-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gambling-news-latest-industry-trends__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gambling-news-latest-industry-trends__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gambling-news-latest-industry-trends__content-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.page-gambling-news-latest-industry-trends__content-grid.reverse-order {
    flex-direction: row-reverse;
}

.page-gambling-news-latest-industry-trends__text-content {
    flex: 2;
}

.page-gambling-news-latest-industry-trends__image-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-gambling-news-latest-industry-trends__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-gambling-news-latest-industry-trends__sub-title {
    font-size: 1.8em;
    color: var(--page-heading-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gambling-news-latest-industry-trends__text-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-gambling-news-latest-industry-trends__text-content strong {
    color: var(--page-accent-color);
}

.page-gambling-news-latest-industry-trends__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-gambling-news-latest-industry-trends__related-links {
    padding-bottom: 80px;
}

.page-gambling-news-latest-industry-trends__link-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
}

.page-gambling-news-latest-industry-trends__link-list li {
    margin-bottom: 10px;
}

.page-gambling-news-latest-industry-trends__link-list a {
    color: var(--page-link-color);
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-gambling-news-latest-industry-trends__link-list a:hover {
    color: var(--page-link-hover-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-news-latest-industry-trends__title {
        font-size: 2.5em;
    }
    .page-gambling-news-latest-industry-trends__subtitle {
        font-size: 1.1em;
    }
    .page-gambling-news-latest-industry-trends__section-title {
        font-size: 2em;
    }
    .page-gambling-news-latest-industry-trends__sub-title {
        font-size: 1.5em;
    }
    .page-gambling-news-latest-industry-trends__content-grid {
        flex-direction: column;
    }
    .page-gambling-news-latest-industry-trends__content-grid.reverse-order {
        flex-direction: column;
    }
    .page-gambling-news-latest-industry-trends__image-wrapper {
        order: -1; /* Puts image above text on mobile for reverse-order grid */
    }
}

@media (max-width: 768px) {
    .page-gambling-news-latest-industry-trends__hero {
        padding: 80px 0;
    }
    .page-gambling-news-latest-industry-trends__title {
        font-size: 2em;
    }
    .page-gambling-news-latest-industry-trends__subtitle {
        font-size: 1em;
    }
    .page-gambling-news-latest-industry-trends__btn-primary,
    .page-gambling-news-latest-industry-trends__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-gambling-news-latest-industry-trends__section-title {
        font-size: 1.8em;
    }
    .page-gambling-news-latest-industry-trends__sub-title {
        font-size: 1.3em;
    }
    .page-gambling-news-latest-industry-trends__section {
        padding: 40px 0;
    }
    .page-gambling-news-latest-industry-trends__container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-latest-industry-trends__title {
        font-size: 1.8em;
    }
    .page-gambling-news-latest-industry-trends__btn-primary,
    .page-gambling-news-latest-industry-trends__btn-secondary {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-gambling-news-latest-industry-trends__section-title {
        font-size: 1.5em;
    }
    .page-gambling-news-latest-industry-trends__sub-title {
        font-size: 1.2em;
    }
}