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

.page-gambling-news-market-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A237E; /* Dark blue for primary text */
    background-color: #f8f9fa; /* Light background for readability */
}

.page-gambling-news-market-trends-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-gambling-news-market-trends-hero {
    background: linear-gradient(135deg, #1A237E 0%, #3f51b5 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-gambling-news-market-trends-hero > * {
    position: relative;
    z-index: 1;
}

.page-gambling-news-market-trends-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFB300; /* Amber gold for main title */
    font-weight: bold;
}

.page-gambling-news-market-trends-intro,
.page-gambling-news-market-trends-intro-continued {
    font-size: 1.15em;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-news-market-trends-hero-image-wrapper {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-market-trends-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-gambling-news-market-trends-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-gambling-news-market-trends-section-alt-bg {
    background-color: #f0f2f5; /* Slightly lighter background for alternating sections */
}

.page-gambling-news-market-trends-subtitle {
    font-size: 2.2em;
    color: #1A237E; /* Dark blue for subtitles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-news-market-trends-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #FFB300; /* Amber gold underline */
    border-radius: 2px;
}

.page-gambling-news-market-trends-section p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #333333; /* Darker grey for body text for contrast */
    text-align: justify;
}

.page-gambling-news-market-trends-heading3 {
    font-size: 1.6em;
    color: #1A237E; /* Dark blue for H3 headings */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gambling-news-market-trends-image-wrapper {
    margin: 30px auto;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gambling-news-market-trends-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-gambling-news-market-trends-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

.page-gambling-news-market-trends-btn-primary {
    background-color: #FFB300; /* Amber gold */
    color: #1A237E; /* Dark blue text */
}

.page-gambling-news-market-trends-btn-primary:hover {
    background-color: #e69a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-market-trends-btn-secondary {
    background-color: #1A237E; /* Dark blue */
    color: #FFB300; /* Amber gold text */
    border: 2px solid #FFB300;
    margin-left: 15px;
}

.page-gambling-news-market-trends-btn-secondary:hover {
    background-color: #2c3a90;
    border-color: #e69a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-market-trends-btn-large {
    padding: 18px 40px;
    font-size: 1.25em;
}

.page-gambling-news-market-trends-cta-section {
    background-color: #1A237E; /* Dark blue background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-gambling-news-market-trends-cta-section .page-gambling-news-market-trends-subtitle {
    color: #FFB300; /* Amber gold for CTA title */
}

.page-gambling-news-market-trends-cta-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-gambling-news-market-trends-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gambling-news-market-trends-title {
        font-size: 2em;
    }

    .page-gambling-news-market-trends-subtitle {
        font-size: 1.8em;
    }

    .page-gambling-news-market-trends-heading3 {
        font-size: 1.4em;
    }

    .page-gambling-news-market-trends-btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-left: 0;
        margin-right: 0;
    }

    .page-gambling-news-market-trends-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-gambling-news-market-trends-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-gambling-news-market-trends-btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-market-trends-title {
        font-size: 1.8em;
    }

    .page-gambling-news-market-trends-subtitle {
        font-size: 1.6em;
    }

    .page-gambling-news-market-trends-intro,
    .page-gambling-news-market-trends-intro-continued,
    .page-gambling-news-market-trends-section p,
    .page-gambling-news-market-trends-cta-section p {
        font-size: 0.95em;
    }

    .page-gambling-news-market-trends-hero,
    .page-gambling-news-market-trends-section,
    .page-gambling-news-market-trends-cta-section {
        padding: 40px 0;
    }
}