/* style/expert-predictions-slots-tips.css */

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

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

/* Hero Section */
.page-expert-predictions-slots-tips__hero-section {
    background-color: #0A192F;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-expert-predictions-slots-tips__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-expert-predictions-slots-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B92B; /* High contrast with dark blue background */
    font-weight: bold;
    line-height: 1.2;
}

.page-expert-predictions-slots-tips__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f2f2f2; /* Good contrast with dark blue background */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-slots-tips__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.page-expert-predictions-slots-tips__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-expert-predictions-slots-tips__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-expert-predictions-slots-tips__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-expert-predictions-slots-tips__section-title {
    font-size: 2.5em;
    color: #0A192F; /* Dark text on light background */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-expert-predictions-slots-tips__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B92B;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-expert-predictions-slots-tips__sub-title {
    font-size: 1.8em;
    color: #0A192F; /* Dark text on light background */
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-expert-predictions-slots-tips__paragraph {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

.page-expert-predictions-slots-tips__inline-link {
    color: #0A192F;
    text-decoration: underline;
    font-weight: bold;
}

.page-expert-predictions-slots-tips__inline-link:hover {
    color: #E0B92B;
}

/* Call to Action Buttons */
.page-expert-predictions-slots-tips__cta-button {
    display: inline-block;
    background-color: #E0B92B;
    color: #0A192F; /* Dark text on golden yellow background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #E0B92B;
}

.page-expert-predictions-slots-tips__cta-button:hover {
    background-color: #0A192F;
    color: #E0B92B; /* Golden yellow text on dark blue background */
    border-color: #E0B92B;
}

.page-expert-predictions-slots-tips__cta-button--secondary {
    background-color: transparent;
    color: #0A192F;
    border-color: #0A192F;
}

.page-expert-predictions-slots-tips__cta-button--secondary:hover {
    background-color: #0A192F;
    color: #E0B92B;
}

.page-expert-predictions-slots-tips__cta-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Image & Text Layouts */
.page-expert-predictions-slots-tips__image-text-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-expert-predictions-slots-tips__image-text-layout--reverse {
    flex-direction: row-reverse;
}

.page-expert-predictions-slots-tips__text-content {
    flex: 1;
    min-width: 300px;
}

.page-expert-predictions-slots-tips__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-expert-predictions-slots-tips__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* List Styling */
.page-expert-predictions-slots-tips__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.page-expert-predictions-slots-tips__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-expert-predictions-slots-tips__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E0B92B;
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

/* Grid Layout for Bankroll Management */
.page-expert-predictions-slots-tips__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-expert-predictions-slots-tips__grid-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.page-expert-predictions-slots-tips__grid-item--image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions-slots-tips__hero-title {
        font-size: 2.8em;
    }

    .page-expert-predictions-slots-tips__hero-subtitle {
        font-size: 1.2em;
    }

    .page-expert-predictions-slots-tips__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-slots-tips__sub-title {
        font-size: 1.5em;
    }

    .page-expert-predictions-slots-tips__image-text-layout {
        flex-direction: column;
        text-align: center;
    }

    .page-expert-predictions-slots-tips__image-text-layout--reverse {
        flex-direction: column;
    }

    .page-expert-predictions-slots-tips__text-content, .page-expert-predictions-slots-tips__image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-slots-tips__hero-section {
        padding: 60px 20px;
    }

    .page-expert-predictions-slots-tips__hero-title {
        font-size: 2.2em;
    }

    .page-expert-predictions-slots-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-expert-predictions-slots-tips__section {
        padding: 40px 0;
    }

    .page-expert-predictions-slots-tips__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-slots-tips__sub-title {
        font-size: 1.3em;
    }

    .page-expert-predictions-slots-tips__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-expert-predictions-slots-tips__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-slots-tips__hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-slots-tips__hero-subtitle {
        font-size: 0.9em;
    }
    .page-expert-predictions-slots-tips__section-title {
        font-size: 1.5em;
    }
    .page-expert-predictions-slots-tips__sub-title {
        font-size: 1.2em;
    }
    .page-expert-predictions-slots-tips__paragraph, .page-expert-predictions-slots-tips__list-item {
        font-size: 0.95em;
    }
}