/* style/platform-reviews-shbet-detailed-review.css */

:root {
    --shbet-primary-color: #0056B3;
    --shbet-secondary-color: #FFC107;
    --shbet-text-dark: #212529;
    --shbet-text-light: #f8f9fa;
    --shbet-background-light: #f0f2f5;
    --shbet-background-dark: #004085;
    --shbet-link-color: #007bff;
    --shbet-link-hover-color: #0056b3;
}

.page-platform-reviews-shbet-detailed-review {
    font-family: 'Arial', sans-serif;
    color: var(--shbet-text-dark);
    line-height: 1.6;
    background-color: var(--shbet-background-light);
}

.page-platform-reviews-shbet-detailed-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-platform-reviews-shbet-detailed-review__hero-section {
    background: linear-gradient(135deg, var(--shbet-primary-color) 0%, #004085 100%);
    color: var(--shbet-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-platform-reviews-shbet-detailed-review__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-platform-reviews-shbet-detailed-review__hero-section .page-platform-reviews-shbet-detailed-review__container {
    position: relative;
    z-index: 2;
}

.page-platform-reviews-shbet-detailed-review__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--shbet-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-platform-reviews-shbet-detailed-review__hero-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-shbet-detailed-review__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

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

.page-platform-reviews-shbet-detailed-review__button--primary {
    background-color: var(--shbet-secondary-color);
    color: var(--shbet-primary-color);
}

.page-platform-reviews-shbet-detailed-review__button--primary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews-shbet-detailed-review__button--secondary {
    background-color: transparent;
    color: var(--shbet-secondary-color);
    border: 2px solid var(--shbet-secondary-color);
}

.page-platform-reviews-shbet-detailed-review__button--secondary:hover {
    background-color: var(--shbet-secondary-color);
    color: var(--shbet-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews-shbet-detailed-review__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

.page-platform-reviews-shbet-detailed-review__content-section {
    padding: 60px 0;
    background-color: var(--shbet-background-light);
}

.page-platform-reviews-shbet-detailed-review__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-shbet-detailed-review__heading {
    font-size: 2.2em;
    color: var(--shbet-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--shbet-secondary-color);
    padding-bottom: 10px;
    font-weight: 700;
}

.page-platform-reviews-shbet-detailed-review__sub-heading {
    font-size: 1.6em;
    color: var(--shbet-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-platform-reviews-shbet-detailed-review__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-platform-reviews-shbet-detailed-review__article a {
    color: var(--shbet-link-color);
    text-decoration: none;
}

.page-platform-reviews-shbet-detailed-review__article a:hover {
    text-decoration: underline;
    color: var(--shbet-link-hover-color);
}

.page-platform-reviews-shbet-detailed-review__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-shbet-detailed-review__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-platform-reviews-shbet-detailed-review__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-platform-reviews-shbet-detailed-review__cta-block {
    background-color: var(--shbet-background-dark);
    color: var(--shbet-text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-platform-reviews-shbet-detailed-review__cta-block p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--shbet-secondary-color);
}

.page-platform-reviews-shbet-detailed-review__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-platform-reviews-shbet-detailed-review__faq-question {
    font-size: 1.3em;
    color: var(--shbet-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-platform-reviews-shbet-detailed-review__faq-answer {
    font-size: 1.0em;
    color: var(--shbet-text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-platform-reviews-shbet-detailed-review__main-title {
        font-size: 2.8em;
    }
    .page-platform-reviews-shbet-detailed-review__heading {
        font-size: 1.8em;
    }
    .page-platform-reviews-shbet-detailed-review__sub-heading {
        font-size: 1.4em;
    }
    .page-platform-reviews-shbet-detailed-review__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-platform-reviews-shbet-detailed-review__button {
        width: 100%;
        max-width: 300px;
    }
    .page-platform-reviews-shbet-detailed-review__article {
        padding: 30px;
    }
    .page-platform-reviews-shbet-detailed-review__cta-block p {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-platform-reviews-shbet-detailed-review__hero-section {
        padding: 60px 0;
    }
    .page-platform-reviews-shbet-detailed-review__main-title {
        font-size: 2.2em;
    }
    .page-platform-reviews-shbet-detailed-review__hero-text {
        font-size: 1em;
    }
    .page-platform-reviews-shbet-detailed-review__content-section {
        padding: 40px 0;
    }
    .page-platform-reviews-shbet-detailed-review__article {
        padding: 20px;
    }
    .page-platform-reviews-shbet-detailed-review__heading {
        font-size: 1.6em;
    }
    .page-platform-reviews-shbet-detailed-review__sub-heading {
        font-size: 1.2em;
    }
    .page-platform-reviews-shbet-detailed-review__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-platform-reviews-shbet-detailed-review__cta-block p {
        font-size: 1.1em;
    }
    .page-platform-reviews-shbet-detailed-review__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-shbet-detailed-review__main-title {
        font-size: 1.8em;
    }
    .page-platform-reviews-shbet-detailed-review__hero-text {
        font-size: 0.95em;
    }
    .page-platform-reviews-shbet-detailed-review__hero-buttons {
        flex-direction: column;
    }
    .page-platform-reviews-shbet-detailed-review__button {
        width: 100%;
        max-width: none;
    }
    .page-platform-reviews-shbet-detailed-review__article {
        padding: 15px;
    }
    .page-platform-reviews-shbet-detailed-review__heading {
        font-size: 1.4em;
    }
    .page-platform-reviews-shbet-detailed-review__sub-heading {
        font-size: 1.1em;
    }
    .page-platform-reviews-shbet-detailed-review__cta-block p {
        font-size: 1em;
    }
}