/* style/gambling-news-major-events-prediction.css */
:root {
    --page-main-color: #0A2342;
    --page-accent-color: #FFD700;
    --page-text-color-dark: #333333;
    --page-text-color-light: #ffffff;
    --page-background-light: #f4f7f6;
    --page-button-hover-dark: #071a30;
    --page-button-hover-light: #e6c200;
}

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

.page-gambling-news-major-events-prediction__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-news-major-events-prediction__hero {
    background: linear-gradient(135deg, var(--page-main-color) 0%, #1a3a60 100%);
    color: var(--page-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-news-major-events-prediction__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-gambling-news-major-events-prediction__hero-pulse 10s infinite alternate;
}

@keyframes page-gambling-news-major-events-prediction__hero-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-gambling-news-major-events-prediction__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: var(--page-text-color-light);
}

.page-gambling-news-major-events-prediction__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-gambling-news-major-events-prediction__section {
    padding: 60px 0;
}

.page-gambling-news-major-events-prediction__section--intro {
    background-color: var(--page-background-light);
}

.page-gambling-news-major-events-prediction__section-title {
    font-size: 2.5em;
    color: var(--page-main-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-gambling-news-major-events-prediction__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-major-events-prediction__sub-title {
    font-size: 1.8em;
    color: var(--page-main-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-accent-color);
    padding-left: 15px;
}

.page-gambling-news-major-events-prediction__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-gambling-news-major-events-prediction__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-news-major-events-prediction__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gambling-news-major-events-prediction__grid-item h3 {
    color: var(--page-main-color);
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-gambling-news-major-events-prediction__grid-item p {
    color: #666666;
    font-size: 1em;
}

.page-gambling-news-major-events-prediction__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-gambling-news-major-events-prediction__image--full-width {
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-gambling-news-major-events-prediction__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-gambling-news-major-events-prediction__list li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid var(--page-accent-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    font-size: 1.1em;
    color: var(--page-text-color-dark);
}

.page-gambling-news-major-events-prediction__list li strong {
    color: var(--page-main-color);
}

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

.page-gambling-news-major-events-prediction__methodology-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--page-main-color);
    transition: border-top-color 0.3s ease;
}

.page-gambling-news-major-events-prediction__methodology-item:hover {
    border-top-color: var(--page-accent-color);
}

.page-gambling-news-major-events-prediction__methodology-item h3 {
    font-size: 1.4em;
    color: var(--page-main-color);
    margin-bottom: 15px;
}

.page-gambling-news-major-events-prediction__methodology-item p {
    color: #666666;
}

.page-gambling-news-major-events-prediction__cta-banner {
    background: linear-gradient(90deg, var(--page-main-color) 0%, #1a3a60 100%);
    color: var(--page-text-color-light);
    padding: 80px 0;
    text-align: center;
}

.page-gambling-news-major-events-prediction__cta-content {
    max-width: 900px;
}

.page-gambling-news-major-events-prediction__cta-title {
    color: var(--page-text-color-light);
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-gambling-news-major-events-prediction__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-gambling-news-major-events-prediction__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gambling-news-major-events-prediction__button--primary {
    background-color: var(--page-accent-color);
    color: var(--page-main-color);
}

.page-gambling-news-major-events-prediction__button--primary:hover {
    background-color: var(--page-button-hover-light);
    transform: translateY(-3px);
}

.page-gambling-news-major-events-prediction__button--secondary {
    background-color: #ffffff;
    color: var(--page-main-color);
    border: 2px solid var(--page-accent-color);
}

.page-gambling-news-major-events-prediction__button--secondary:hover {
    background-color: var(--page-accent-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.page-gambling-news-major-events-prediction__button--text {
    background-color: transparent;
    color: var(--page-text-color-light);
    border: 2px solid var(--page-text-color-light);
}

.page-gambling-news-major-events-prediction__button--text:hover {
    background-color: var(--page-text-color-light);
    color: var(--page-main-color);
    transform: translateY(-3px);
}

.page-gambling-news-major-events-prediction__faq-list {
    margin-top: 40px;
}

.page-gambling-news-major-events-prediction__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gambling-news-major-events-prediction__faq-question {
    font-size: 1.3em;
    color: var(--page-main-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-gambling-news-major-events-prediction__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--page-accent-color);
    transition: transform 0.3s ease;
}

.page-gambling-news-major-events-prediction__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-gambling-news-major-events-prediction__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-gambling-news-major-events-prediction__faq-answer.show {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-gambling-news-major-events-prediction__final-cta {
    background-color: var(--page-main-color);
    color: var(--page-text-color-light);
    text-align: center;
    padding: 80px 0;
}

.page-gambling-news-major-events-prediction__final-cta .page-gambling-news-major-events-prediction__section-title {
    color: var(--page-text-color-light);
}

.page-gambling-news-major-events-prediction__final-cta .page-gambling-news-major-events-prediction__section-title::after {
    background-color: var(--page-accent-color);
}

.page-gambling-news-major-events-prediction__final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.highlight {
    color: var(--page-accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-news-major-events-prediction__hero-title {
        font-size: 2.8em;
    }
    .page-gambling-news-major-events-prediction__hero-subtitle {
        font-size: 1.2em;
    }
    .page-gambling-news-major-events-prediction__section-title {
        font-size: 2em;
    }
    .page-gambling-news-major-events-prediction__sub-title {
        font-size: 1.6em;
    }
    .page-gambling-news-major-events-prediction__cta-title {
        font-size: 2.2em;
    }
    .page-gambling-news-major-events-prediction__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-gambling-news-major-events-prediction__hero {
        padding: 80px 0;
    }
    .page-gambling-news-major-events-prediction__hero-title {
        font-size: 2.2em;
    }
    .page-gambling-news-major-events-prediction__hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-news-major-events-prediction__section {
        padding: 40px 0;
    }
    .page-gambling-news-major-events-prediction__section-title {
        font-size: 1.8em;
    }
    .page-gambling-news-major-events-prediction__sub-title {
        font-size: 1.4em;
    }
    .page-gambling-news-major-events-prediction__grid-item, .page-gambling-news-major-events-prediction__methodology-item {
        padding: 20px;
    }
    .page-gambling-news-major-events-prediction__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gambling-news-major-events-prediction__cta-banner {
        padding: 60px 0;
    }
    .page-gambling-news-major-events-prediction__cta-title {
        font-size: 1.8em;
    }
    .page-gambling-news-major-events-prediction__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-major-events-prediction__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-news-major-events-prediction__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gambling-news-major-events-prediction__section-title {
        font-size: 1.5em;
    }
    .page-gambling-news-major-events-prediction__sub-title {
        font-size: 1.2em;
    }
    .page-gambling-news-major-events-prediction__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-gambling-news-major-events-prediction__cta-title {
        font-size: 1.5em;
    }
    .page-gambling-news-major-events-prediction__faq-question {
        font-size: 1.1em;
    }
}