/* style/expert-predictions.css */
.page-expert-predictions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

.page-expert-predictions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-expert-predictions__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-expert-predictions__pulse 15s infinite alternate;
}

@keyframes page-expert-predictions__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-expert-predictions__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-expert-predictions__subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-expert-predictions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-expert-predictions__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-expert-predictions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-expert-predictions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-expert-predictions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-expert-predictions__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 5px;
}

.page-expert-predictions__btn--small:hover {
    background-color: #e6c200;
}

.page-expert-predictions__introduction,
.page-expert-predictions__benefits,
.page-expert-predictions__methodology,
.page-expert-predictions__detail-pages,
.page-expert-predictions__cta,
.page-expert-predictions__responsible-gambling {
    padding: 60px 0;
    text-align: center;
}

.page-expert-predictions__introduction {
    background-color: #1a2a40;
}

.page-expert-predictions__heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
}

.page-expert-predictions__introduction p {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-expert-predictions__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-expert-predictions__text-content {
    flex: 1;
}

.page-expert-predictions__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-expert-predictions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions__benefits {
    background-color: #0A192F;
}

.page-expert-predictions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions__grid-item {
    background-color: #1a2a40;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-expert-predictions__grid-item:hover {
    transform: translateY(-10px);
}

.page-expert-predictions__grid-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-expert-predictions__grid-item p {
    color: #c0c0c0;
    font-size: 1em;
}

.page-expert-predictions__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.page-expert-predictions__methodology {
    background-color: #1a2a40;
}

.page-expert-predictions__description {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.page-expert-predictions__list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-expert-predictions__list li {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-expert-predictions__list li strong {
    color: #FFD700;
}

.page-expert-predictions__detail-pages {
    background-color: #0A192F;
}

.page-expert-predictions__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions__detail-item {
    background-color: #1a2a40;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-expert-predictions__detail-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-expert-predictions__detail-link {
    color: #FFD700;
    text-decoration: none;
}

.page-expert-predictions__detail-link:hover {
    text-decoration: underline;
}

.page-expert-predictions__detail-item p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-expert-predictions__cta {
    background: linear-gradient(90deg, #0A192F, #1a3a60);
    padding: 80px 0;
    color: #fff;
}

.page-expert-predictions__cta-image {
    max-width: 300px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions__cta-buttons {
    margin-top: 30px;
}

.page-expert-predictions__cta-buttons .page-expert-predictions__btn:first-child {
    margin-left: 0;
}

.page-expert-predictions__responsible-gambling {
    background-color: #1a2a40;
    text-align: left;
}

.page-expert-predictions__responsible-gambling .page-expert-predictions__heading {
    text-align: center;
}

.page-expert-predictions__responsible-gambling ul {
    list-style: disc;
    padding-left: 40px;
    max-width: 800px;
    margin: 20px auto;
    color: #c0c0c0;
}

.page-expert-predictions__responsible-gambling li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions__title {
        font-size: 2.8em;
    }
    .page-expert-predictions__subtitle {
        font-size: 1.3em;
    }
    .page-expert-predictions__heading {
        font-size: 2em;
    }
    .page-expert-predictions__content-wrapper {
        flex-direction: column;
    }
    .page-expert-predictions__text-content,
    .page-expert-predictions__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-expert-predictions__image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__title {
        font-size: 2.2em;
    }
    .page-expert-predictions__subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions__btn--secondary {
        margin-left: 10px;
    }
    .page-expert-predictions__grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__detail-list {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-expert-predictions__cta-buttons .page-expert-predictions__btn {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions__title {
        font-size: 1.8em;
    }
    .page-expert-predictions__subtitle {
        font-size: 1em;
    }
    .page-expert-predictions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-expert-predictions__btn--secondary {
        display: block;
        margin: 10px auto 0 auto;
    }
    .page-expert-predictions__hero {
        padding: 60px 0;
    }
    .page-expert-predictions__introduction,
    .page-expert-predictions__benefits,
    .page-expert-predictions__methodology,
    .page-expert-predictions__detail-pages,
    .page-expert-predictions__cta,
    .page-expert-predictions__responsible-gambling {
        padding: 40px 0;
    }
    .page-expert-predictions__heading {
        font-size: 1.8em;
    }
    .page-expert-predictions__list li {
        padding: 15px;
        font-size: 1em;
    }
}