/* style/betting-platforms-other-recommendations.css */

:root {
    --primary-color: #1A237E;
    --secondary-color: #FFD700;
    --text-dark: #1A237E; /* Dark text for light backgrounds */
    --text-light: #FFFFFF; /* Light text for dark backgrounds */
    --background-light: #F0F2F5;
    --background-dark: #1A237E;
    --accent-color: #e5dc81; /* Complementary to primary */
    --button-bg: #FFD700;
    --button-text: #1A237E;
    --button-hover-bg: #e5dc81;
    --border-color: #e0e0e0;
}

.page-betting-platforms-other-recommendations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-betting-platforms-other-recommendations__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3f4a9b 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-betting-platforms-other-recommendations__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-betting-platforms-other-recommendations__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-light);
}

.page-betting-platforms-other-recommendations__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-betting-platforms-other-recommendations__cta-button {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-platforms-other-recommendations__cta-button:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-2px);
}

.page-betting-platforms-other-recommendations__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-betting-platforms-other-recommendations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.page-betting-platforms-other-recommendations__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-betting-platforms-other-recommendations__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-betting-platforms-other-recommendations__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-betting-platforms-other-recommendations__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-betting-platforms-other-recommendations__text {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-platforms-other-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-platforms-other-recommendations__grid-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms-other-recommendations__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-betting-platforms-other-recommendations__item-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-betting-platforms-other-recommendations__item-title::before {
    content: '▪';
    color: var(--secondary-color);
    margin-right: 10px;
}

.page-betting-platforms-other-recommendations__platform-card {
    background-color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms-other-recommendations__platform-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.page-betting-platforms-other-recommendations__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-betting-platforms-other-recommendations__card-content {
    padding: 30px;
}

.page-betting-platforms-other-recommendations__card-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-betting-platforms-other-recommendations__card-text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-betting-platforms-other-recommendations__features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-betting-platforms-other-recommendations__features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-dark);
}

.page-betting-platforms-other-recommendations__features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.page-betting-platforms-other-recommendations__benefits-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-betting-platforms-other-recommendations__benefits-list li {
    background-color: var(--text-light);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    line-height: 1.6;
}

.page-betting-platforms-other-recommendations__benefits-list li strong {
    color: var(--primary-color);
    font-weight: bold;
}

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

.page-betting-platforms-other-recommendations__step-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 70px;
}

.page-betting-platforms-other-recommendations__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: bold;
    border: 5px solid var(--primary-color);
}

.page-betting-platforms-other-recommendations__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-betting-platforms-other-recommendations__step-item p {
    font-size: 1em;
    line-height: 1.7;
}

.page-betting-platforms-other-recommendations__step-item a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-betting-platforms-other-recommendations__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
}

.page-betting-platforms-other-recommendations__responsible-list li {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    line-height: 1.6;
    border-left: 5px solid var(--secondary-color);
}

.page-betting-platforms-other-recommendations__responsible-list li strong {
    color: var(--secondary-color);
}

.page-betting-platforms-other-recommendations__conclusion {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 20px;
    margin-bottom: 0;
}

.page-betting-platforms-other-recommendations__conclusion .page-betting-platforms-other-recommendations__section-title {
    color: var(--text-light);
}

.page-betting-platforms-other-recommendations__conclusion .page-betting-platforms-other-recommendations__section-title::after {
    background-color: var(--secondary-color);
}

.page-betting-platforms-other-recommendations__conclusion .page-betting-platforms-other-recommendations__text {
    color: rgba(255, 255, 255, 0.9);
}

.page-betting-platforms-other-recommendations .highlight {
    color: var(--secondary-color);
}

.page-betting-platforms-other-recommendations__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-platforms-other-recommendations__title {
        font-size: 2.8em;
    }
    .page-betting-platforms-other-recommendations__subtitle {
        font-size: 1.2em;
    }
    .page-betting-platforms-other-recommendations__section-title {
        font-size: 2em;
    }
    .page-betting-platforms-other-recommendations__platform-card {
        flex-direction: column;
    }
    .page-betting-platforms-other-recommendations__card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-betting-platforms-other-recommendations__hero {
        padding: 60px 15px;
    }
    .page-betting-platforms-other-recommendations__title {
        font-size: 2.2em;
    }
    .page-betting-platforms-other-recommendations__subtitle {
        font-size: 1em;
    }
    .page-betting-platforms-other-recommendations__section {
        padding: 40px 15px;
    }
    .page-betting-platforms-other-recommendations__section-title {
        font-size: 1.8em;
    }
    .page-betting-platforms-other-recommendations__grid {
        grid-template-columns: 1fr;
    }
    .page-betting-platforms-other-recommendations__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-betting-platforms-other-recommendations__card-title {
        font-size: 1.6em;
    }
    .page-betting-platforms-other-recommendations__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-platforms-other-recommendations__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-betting-platforms-other-recommendations__title {
        font-size: 1.8em;
    }
    .page-betting-platforms-other-recommendations__section-title {
        font-size: 1.5em;
    }
    .page-betting-platforms-other-recommendations__item-title {
        font-size: 1.3em;
    }
    .page-betting-platforms-other-recommendations__step-title {
        font-size: 1.4em;
    }
    .page-betting-platforms-other-recommendations__step-number {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
    .page-betting-platforms-other-recommendations__card-image {
        height: 180px;
    }
}