/* style/gambling-news-technology-trends.css */
.page-gambling-news-technology-trends {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.page-gambling-news-technology-trends__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-news-technology-trends__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_tech_pattern,dark_blue,subtle]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-gambling-news-technology-trends__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gambling-news-technology-trends__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-gambling-news-technology-trends__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Text on gold */
    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;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-technology-trends__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-gambling-news-technology-trends__cta-button--gold {
    background-color: #FFCC00;
    color: #003366;
}

.page-gambling-news-technology-trends__section {
    padding: 60px 0;
}

.page-gambling-news-technology-trends__section--white-bg {
    background-color: #f9f9f9;
    color: #333333;
}

.page-gambling-news-technology-trends__section--dark-bg {
    background-color: #003366; /* Primary color */
    color: #ffffff;
}

.page-gambling-news-technology-trends__light-text {
    color: #e0e0e0;
}

.page-gambling-news-technology-trends__section-title {
    font-size: 2.5em;
    color: #003366; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-news-technology-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary color */
    border-radius: 2px;
}

.page-gambling-news-technology-trends__section-title--gold {
    color: #FFCC00; /* Auxiliary color */
}

.page-gambling-news-technology-trends__section-title--gold::after {
    background-color: #e0e0e0;
}

.page-gambling-news-technology-trends__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-gambling-news-technology-trends__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-gambling-news-technology-trends__content-grid--reverse {
        grid-template-columns: 1fr 1fr;
        direction: rtl; /* For visual reordering, content remains LTR */
    }
    .page-gambling-news-technology-trends__content-grid--reverse .page-gambling-news-technology-trends__text-content {
        direction: ltr;
    }
    .page-gambling-news-technology-trends__content-grid--reverse .page-gambling-news-technology-trends__image-wrapper {
        direction: ltr;
    }
}

.page-gambling-news-technology-trends__text-content h3 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #003366; /* Primary color */
}

.page-gambling-news-technology-trends__text-content--light-text h3 {
    color: #FFCC00; /* Auxiliary color */
}

.page-gambling-news-technology-trends__text-content p {
    font-size: 1.05em;
    margin-bottom: 15px;
}

.page-gambling-news-technology-trends__image-wrapper {
    text-align: center;
}

.page-gambling-news-technology-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-gambling-news-technology-trends__image:hover {
    transform: translateY(-5px);
}

.page-gambling-news-technology-trends__image--full-width {
    display: block;
    margin: 30px auto;
    max-width: 80%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gambling-news-technology-trends__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-news-technology-trends__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 767px) {
    .page-gambling-news-technology-trends__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-news-technology-trends__hero-description {
        font-size: 1em;
    }
    .page-gambling-news-technology-trends__section-title {
        font-size: 1.8em;
    }
    .page-gambling-news-technology-trends__text-content h3 {
        font-size: 1.4em;
    }
    .page-gambling-news-technology-trends__section {
        padding: 40px 0;
    }
    .page-gambling-news-technology-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-news-technology-trends__image--full-width {
        max-width: 95%;
    }
}

/* Ensure contrast for all elements */
.page-gambling-news-technology-trends__hero-title, 
.page-gambling-news-technology-trends__hero-description {
    color: #FFCC00; /* Gold on dark blue is high contrast */
}

.page-gambling-news-technology-trends__section--white-bg .page-gambling-news-technology-trends__text-content p, 
.page-gambling-news-technology-trends__section--white-bg .page-gambling-news-technology-trends__text-content h3 {
    color: #333333; /* Dark grey on light background is high contrast */
}

.page-gambling-news-technology-trends__section--dark-bg .page-gambling-news-technology-trends__text-content p, 
.page-gambling-news-technology-trends__section--dark-bg .page-gambling-news-technology-trends__text-content h3 {
    color: #FFCC00; /* Gold on dark blue is high contrast */
}

.page-gambling-news-technology-trends__section-title {
    color: #003366; /* Dark blue on light background is high contrast */
}

.page-gambling-news-technology-trends__section-title--gold {
    color: #FFCC00; /* Gold on dark blue is high contrast */
}

.page-gambling-news-technology-trends__cta-button {
    background-color: #FFCC00;
    color: #003366; /* Gold button, dark blue text for contrast */
}

.page-gambling-news-technology-trends__cta-button:hover {
    background-color: #e6b800;
    color: #002244; /* Darker gold button, even darker blue text for contrast */
}

.page-gambling-news-technology-trends__light-text {
    color: #e0e0e0; /* Light grey on dark blue is high contrast */
}