/* style/expert-predictions.css */

.page-expert-predictions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

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

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

.page-expert-predictions__hero > .page-expert-predictions__container {
    position: relative;
    z-index: 1;
}

.page-expert-predictions__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-expert-predictions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-expert-predictions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-expert-predictions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-expert-predictions__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-expert-predictions__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions__section:nth-of-type(even) {
    background-color: #f0f4f7;
}

.page-expert-predictions__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-expert-predictions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-expert-predictions__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 40px auto;
}

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

.page-expert-predictions__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A2463;
}

.page-expert-predictions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-expert-predictions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-expert-predictions__feature-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-expert-predictions__feature-description {
    font-size: 1em;
    color: #666;
}

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

.page-expert-predictions__detail-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid #FFD700;
}

.page-expert-predictions__detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions__card-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-expert-predictions__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-expert-predictions__card-title a:hover {
    color: #FFD700;
}

.page-expert-predictions__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-expert-predictions__btn--details {
    background-color: #0A2463;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
    align-self: flex-start;
}

.page-expert-predictions__btn--details:hover {
    background-color: #1A3E8A;
    transform: translateY(-1px);
}

.page-expert-predictions__benefit-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-expert-predictions__benefit-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-expert-predictions__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-expert-predictions__benefit-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-expert-predictions__benefit-list p {
    color: #666;
    font-size: 0.95em;
}

.page-expert-predictions__cta-banner {
    background: linear-gradient(90deg, #0A2463, #1A3E8A);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-expert-predictions__cta-content {
    max-width: 900px;
}

.page-expert-predictions__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-expert-predictions__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-expert-predictions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-expert-predictions__how-to-use .page-expert-predictions__numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: item;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-expert-predictions__how-to-use .page-expert-predictions__numbered-list li {
    counter-increment: item;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 60px;
    border-top: 5px solid #FFD700;
}

.page-expert-predictions__how-to-use .page-expert-predictions__numbered-list li::before {
    content: counter(item);
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0A2463;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions__list-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    text-align: center;
}

.page-expert-predictions__how-to-use .page-expert-predictions__numbered-list p {
    color: #666;
    font-size: 0.95em;
    text-align: center;
}

.page-expert-predictions__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-expert-predictions__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-expert-predictions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-expert-predictions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-expert-predictions__faq-answer {
    font-size: 1em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.page-expert-predictions__faq-answer.active {
    display: block;
}

.page-expert-predictions__join-community {
    text-align: center;
    padding: 80px 0;
    background-color: #0A2463;
    color: #fff;
    border-radius: 10px;
    margin-top: 40px;
}

.page-expert-predictions__join-content {
    max-width: 800px;
}

.page-expert-predictions__join-community .page-expert-predictions__section-title {
    color: #FFD700;
}

.page-expert-predictions__join-community .page-expert-predictions__section-title::after {
    background-color: #fff;
}

.page-expert-predictions__join-community .page-expert-predictions__section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-expert-predictions__join-community .page-expert-predictions__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    margin-right: 15px;
}

.page-expert-predictions__join-community .page-expert-predictions__btn--primary:hover {
    background-color: #e6c200;
}

.page-expert-predictions__join-community .page-expert-predictions__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-expert-predictions__join-community .page-expert-predictions__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-expert-predictions__title {
        font-size: 2.8em;
    }
    .page-expert-predictions__section-title {
        font-size: 2em;
    }
    .page-expert-predictions__cta-title {
        font-size: 2.2em;
    }
    .page-expert-predictions__features-grid,
    .page-expert-predictions__detail-list,
    .page-expert-predictions__benefit-list,
    .page-expert-predictions__how-to-use .page-expert-predictions__numbered-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-expert-predictions__hero {
        padding: 80px 0;
    }
    .page-expert-predictions__title {
        font-size: 2.2em;
    }
    .page-expert-predictions__subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions__section {
        padding: 40px 0;
    }
    .page-expert-predictions__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions__cta-group,
    .page-expert-predictions__cta-buttons,
    .page-expert-predictions__join-community .page-expert-predictions__btn--primary,
    .page-expert-predictions__join-community .page-expert-predictions__btn--secondary {
        flex-direction: column;
        gap: 15px;
    }
    .page-expert-predictions__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-expert-predictions__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions__title {
        font-size: 1.8em;
    }
    .page-expert-predictions__subtitle {
        font-size: 1em;
    }
    .page-expert-predictions__section-title {
        font-size: 1.5em;
    }
    .page-expert-predictions__feature-item,
    .page-expert-predictions__detail-card,
    .page-expert-predictions__benefit-list li,
    .page-expert-predictions__how-to-use .page-expert-predictions__numbered-list li {
        padding: 20px;
    }
    .page-expert-predictions__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-expert-predictions__feature-title,
    .page-expert-predictions__card-title,
    .page-expert-predictions__benefit-title,
    .page-expert-predictions__list-title,
    .page-expert-predictions__faq-question {
        font-size: 1.2em;
    }
    .page-expert-predictions__cta-title {
        font-size: 1.5em;
    }
}