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

:root {
    --page-gambling-news-market-analysis-primary-color: #003366;
    --page-gambling-news-market-analysis-secondary-color: #FFCC00;
    --page-gambling-news-market-analysis-text-light: #f0f0f0;
    --page-gambling-news-market-analysis-text-dark: #333333;
    --page-gambling-news-market-analysis-bg-light: #f9f9f9;
    --page-gambling-news-market-analysis-bg-dark: #002244;
    --page-gambling-news-market-analysis-accent-color: #ffcc99;
}

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

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

.page-gambling-news-market-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-gambling-news-market-analysis__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-gambling-news-market-analysis-text-light);
    line-height: 1.2;
}

.page-gambling-news-market-analysis__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-gambling-news-market-analysis-text-light);
}

.page-gambling-news-market-analysis__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-gambling-news-market-analysis__btn--primary {
    background-color: var(--page-gambling-news-market-analysis-secondary-color);
    color: var(--page-gambling-news-market-analysis-primary-color);
}

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

.page-gambling-news-market-analysis__btn--secondary {
    background-color: var(--page-gambling-news-market-analysis-primary-color);
    color: var(--page-gambling-news-market-analysis-secondary-color);
    border: 2px solid var(--page-gambling-news-market-analysis-secondary-color);
}

.page-gambling-news-market-analysis__btn--secondary:hover {
    background-color: var(--page-gambling-news-market-analysis-secondary-color);
    color: var(--page-gambling-news-market-analysis-primary-color);
    transform: translateY(-3px);
}

.page-gambling-news-market-analysis__section {
    padding: 80px 0;
}

.page-gambling-news-market-analysis__section--light {
    background-color: var(--page-gambling-news-market-analysis-bg-light);
    color: var(--page-gambling-news-market-analysis-text-dark);
}

.page-gambling-news-market-analysis__section--dark {
    background-color: var(--page-gambling-news-market-analysis-bg-dark);
    color: var(--page-gambling-news-market-analysis-text-light);
}

.page-gambling-news-market-analysis__heading {
    font-size: 2.8em;
    margin-bottom: 40px;
    text-align: center;
    color: inherit; /* Inherit color from section */
    position: relative;
    padding-bottom: 15px;
}

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

.page-gambling-news-market-analysis__sub-heading {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: inherit;
    text-align: left;
}

.page-gambling-news-market-analysis__intro-text {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    line-height: 1.6;
}

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

.page-gambling-news-market-analysis__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-gambling-news-market-analysis__text-block {
    flex: 1;
    line-height: 1.8;
    font-size: 1.1em;
}

.page-gambling-news-market-analysis__text-block p {
    margin-bottom: 15px;
}

.page-gambling-news-market-analysis__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-gambling-news-market-analysis__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-market-analysis__trend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-gambling-news-market-analysis__card {
    background-color: var(--page-gambling-news-market-analysis-bg-dark);
    border: 1px solid var(--page-gambling-news-market-analysis-primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gambling-news-market-analysis__card:hover {
    transform: translateY(-10px);
    background-color: var(--page-gambling-news-market-analysis-primary-color);
}

.page-gambling-news-market-analysis__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--page-gambling-news-market-analysis-secondary-color));
}

.page-gambling-news-market-analysis__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--page-gambling-news-market-analysis-secondary-color);
}

.page-gambling-news-market-analysis__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: var(--page-gambling-news-market-analysis-text-light);
}

.page-gambling-news-market-analysis__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-gambling-news-market-analysis__feature-item {
    background-color: var(--page-gambling-news-market-analysis-primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gambling-news-market-analysis__feature-item:hover {
    transform: translateY(-10px);
    background-color: #004488; /* Slightly lighter primary color */
}

.page-gambling-news-market-analysis__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px var(--page-gambling-news-market-analysis-secondary-color));
}

.page-gambling-news-market-analysis__feature-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--page-gambling-news-market-analysis-secondary-color);
}

.page-gambling-news-market-analysis__feature-text {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--page-gambling-news-market-analysis-text-light);
}

.page-gambling-news-market-analysis__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gambling-news-market-analysis__title {
        font-size: 2.8em;
    }
    .page-gambling-news-market-analysis__heading {
        font-size: 2.2em;
    }
    .page-gambling-news-market-analysis__content-grid {
        flex-direction: column;
    }
    .page-gambling-news-market-analysis__content-grid--reverse {
        flex-direction: column;
    }
    .page-gambling-news-market-analysis__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-gambling-news-market-analysis__hero {
        padding: 80px 0;
    }
    .page-gambling-news-market-analysis__title {
        font-size: 2.2em;
    }
    .page-gambling-news-market-analysis__subtitle {
        font-size: 1.2em;
    }
    .page-gambling-news-market-analysis__heading {
        font-size: 1.8em;
    }
    .page-gambling-news-market-analysis__section {
        padding: 60px 0;
    }
    .page-gambling-news-market-analysis__intro-text {
        font-size: 1em;
    }
    .page-gambling-news-market-analysis__card, .page-gambling-news-market-analysis__feature-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-market-analysis__title {
        font-size: 1.8em;
    }
    .page-gambling-news-market-analysis__subtitle {
        font-size: 1em;
    }
    .page-gambling-news-market-analysis__heading {
        font-size: 1.5em;
    }
    .page-gambling-news-market-analysis__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-news-market-analysis__content-grid {
        gap: 20px;
    }
}