/* style/expert-predictions-today.css */

:root {
    --page-expert-predictions-today-primary-color: #0A192F;
    --page-expert-predictions-today-accent-color: #FFD700;
    --page-expert-predictions-today-text-light: #F8F8F8;
    --page-expert-predictions-today-text-dark: #000000;
    --page-expert-predictions-today-background-dark: #0A192F;
    --page-expert-predictions-today-background-light: #F0F2F5;
    --page-expert-predictions-today-border-color: #333;
}

.page-expert-predictions-today {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-expert-predictions-today-text-light);
    background-color: var(--page-expert-predictions-today-background-dark);
}

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

.page-expert-predictions-today__hero {
    background: linear-gradient(135deg, var(--page-expert-predictions-today-primary-color) 0%, #1a2a44 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--page-expert-predictions-today-text-light);
    position: relative;
    overflow: hidden;
}

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

.page-expert-predictions-today__hero > * {
    position: relative;
    z-index: 1;
}

.page-expert-predictions-today__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-expert-predictions-today-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-today__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-expert-predictions-today-text-light);
}

.page-expert-predictions-today__button {
    display: inline-block;
    background-color: var(--page-expert-predictions-today-accent-color);
    color: var(--page-expert-predictions-today-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-expert-predictions-today__button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-expert-predictions-today__button--secondary {
    background-color: transparent;
    border: 2px solid var(--page-expert-predictions-today-accent-color);
    color: var(--page-expert-predictions-today-accent-color);
}

.page-expert-predictions-today__button--secondary:hover {
    background-color: var(--page-expert-predictions-today-accent-color);
    color: var(--page-expert-predictions-today-primary-color);
}

.page-expert-predictions-today__section {
    padding: 80px 0;
    background-color: var(--page-expert-predictions-today-background-dark);
    color: var(--page-expert-predictions-today-text-light);
}

.page-expert-predictions-today__section:nth-of-type(even) {
    background-color: #1a2a44;
}

.page-expert-predictions-today__section-title {
    font-size: 2.5em;
    color: var(--page-expert-predictions-today-accent-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-expert-predictions-today__section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-expert-predictions-today-accent-color);
    border-radius: 2px;
}

.page-expert-predictions-today__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
}

.page-expert-predictions-today__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-expert-predictions-today__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions-today__text-content {
    flex: 1;
}

.page-expert-predictions-today__text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #ccc;
}

.page-expert-predictions-today__image-box {
    flex: 1;
    text-align: center;
}

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

.page-expert-predictions-today__sub-title {
    font-size: 1.8em;
    color: var(--page-expert-predictions-today-accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-expert-predictions-today__today-predictions .page-expert-predictions-today__date {
    color: var(--page-expert-predictions-today-text-light);
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}

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

.page-expert-predictions-today__prediction-card {
    background-color: #1a2a44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--page-expert-predictions-today-border-color);
    transition: transform 0.3s ease;
}

.page-expert-predictions-today__prediction-card:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-today__card-title {
    font-size: 1.5em;
    color: var(--page-expert-predictions-today-accent-color);
    margin-bottom: 15px;
}

.page-expert-predictions-today__prediction-card p {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 10px;
}

.page-expert-predictions-today__prediction-card strong {
    color: var(--page-expert-predictions-today-accent-color);
}

.page-expert-predictions-today__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-expert-predictions-today__note {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    color: #aaa;
    font-size: 0.95em;
}

.page-expert-predictions-today__app-download {
    text-align: center;
    padding: 100px 0;
}

.page-expert-predictions-today__download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-expert-predictions-today__button--download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--page-expert-predictions-today-accent-color);
    color: var(--page-expert-predictions-today-primary-color);
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-expert-predictions-today__button--download:hover {
    background-color: #e6c200;
}

.page-expert-predictions-today__download-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.page-expert-predictions-today__app-mockup {
    max-width: 600px;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-today__responsible-gambling {
    background-color: #1a2a44;
    padding: 80px 0;
    text-align: center;
}

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

.page-expert-predictions-today__list li {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-today__list li img {
    width: 24px;
    height: 24px;
    filter: invert(70%) sepia(80%) saturate(2000%) hue-rotate(15deg) brightness(120%) contrast(100%); /* Gold tint */
}

.page-expert-predictions-today__cta {
    text-align: center;
    padding: 100px 0;
}

.page-expert-predictions-today__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-right: 20px;
}

.page-expert-predictions-today__button--login {
    background-color: transparent;
    border: 2px solid var(--page-expert-predictions-today-text-light);
    color: var(--page-expert-predictions-today-text-light);
}

.page-expert-predictions-today__button--login:hover {
    background-color: var(--page-expert-predictions-today-text-light);
    color: var(--page-expert-predictions-today-primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-expert-predictions-today__title {
        font-size: 2.8em;
    }
    .page-expert-predictions-today__subtitle {
        font-size: 1.3em;
    }
    .page-expert-predictions-today__section-title {
        font-size: 2em;
    }
    .page-expert-predictions-today__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-expert-predictions-today__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-expert-predictions-today__text-content,
    .page-expert-predictions-today__image-box {
        flex: none;
        width: 100%;
    }
    .page-expert-predictions-today__image {
        max-width: 80%;
    }
    .page-expert-predictions-today__button--large {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-today__hero {
        padding: 80px 0;
    }
    .page-expert-predictions-today__title {
        font-size: 2.2em;
    }
    .page-expert-predictions-today__subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions-today__section {
        padding: 60px 0;
    }
    .page-expert-predictions-today__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-expert-predictions-today__predictions-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-today__download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-expert-predictions-today__button--download {
        width: 80%;
        margin: 0 auto;
    }
    .page-expert-predictions-today__app-mockup {
        max-width: 90%;
    }
    .page-expert-predictions-today__button--large,
    .page-expert-predictions-today__button--login {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-today__title {
        font-size: 1.8em;
    }
    .page-expert-predictions-today__subtitle {
        font-size: 1em;
    }
    .page-expert-predictions-today__button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-expert-predictions-today__section-title {
        font-size: 1.5em;
    }
    .page-expert-predictions-today__list li {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-expert-predictions-today__button--download {
        font-size: 1em;
        padding: 12px 20px;
    }
}