/* style/betting-platform-reviews-platform-c.css */

:root {
    --page-betting-platform-reviews-platform-c-primary-color: #0A192F;
    --page-betting-platform-reviews-platform-c-secondary-color: #FFD700;
    --page-betting-platform-reviews-platform-c-text-light: #F8F8F8;
    --page-betting-platform-reviews-platform-c-text-dark: #1A1A1A;
    --page-betting-platform-reviews-platform-c-bg-light: #F0F2F5;
    --page-betting-platform-reviews-platform-c-bg-dark: #0A192F;
}

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

.page-betting-platform-reviews-platform-c__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-betting-platform-reviews-platform-c__hero-section {
    background: linear-gradient(135deg, var(--page-betting-platform-reviews-platform-c-bg-dark), #1c3c64);
    color: var(--page-betting-platform-reviews-platform-c-text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-betting-platform-reviews-platform-c__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-platform-reviews-platform-c__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    cursor: pointer;
}

.page-betting-platform-reviews-platform-c__btn--primary {
    background-color: var(--page-betting-platform-reviews-platform-c-secondary-color);
    color: var(--page-betting-platform-reviews-platform-c-bg-dark);
    border: 2px solid var(--page-betting-platform-reviews-platform-c-secondary-color);
}

.page-betting-platform-reviews-platform-c__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-betting-platform-reviews-platform-c__btn--secondary {
    background-color: transparent;
    color: var(--page-betting-platform-reviews-platform-c-secondary-color);
    border: 2px solid var(--page-betting-platform-reviews-platform-c-secondary-color);
}

.page-betting-platform-reviews-platform-c__btn--secondary:hover {
    background-color: var(--page-betting-platform-reviews-platform-c-secondary-color);
    color: var(--page-betting-platform-reviews-platform-c-bg-dark);
    transform: translateY(-3px);
}

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

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

.page-betting-platform-reviews-platform-c__intro-section, 
.page-betting-platform-reviews-platform-c__features-section, 
.page-betting-platform-reviews-platform-c__promotions-section, 
.page-betting-platform-reviews-platform-c__registration-section, 
.page-betting-platform-reviews-platform-c__app-section, 
.page-betting-platform-reviews-platform-c__conclusion-section, 
.page-betting-platform-reviews-platform-c__faq-section {
    padding: 60px 0;
}

.page-betting-platform-reviews-platform-c__intro-section p, 
.page-betting-platform-reviews-platform-c__promotions-section p, 
.page-betting-platform-reviews-platform-c__registration-section p, 
.page-betting-platform-reviews-platform-c__app-section p, 
.page-betting-platform-reviews-platform-c__conclusion-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-betting-platform-reviews-platform-c__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-platform-reviews-platform-c__image--center {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-betting-platform-reviews-platform-c__feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-betting-platform-reviews-platform-c__feature-card:hover {
    transform: translateY(-5px);
}

.page-betting-platform-reviews-platform-c__card-title {
    font-size: 1.8em;
    color: var(--page-betting-platform-reviews-platform-c-primary-color);
    margin-bottom: 15px;
}

.page-betting-platform-reviews-platform-c__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.page-betting-platform-reviews-platform-c__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-betting-platform-reviews-platform-c__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-betting-platform-reviews-platform-c__list strong {
    color: var(--page-betting-platform-reviews-platform-c-primary-color);
}

.page-betting-platform-reviews-platform-c__list--ordered {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-betting-platform-reviews-platform-c__list--ordered li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-betting-platform-reviews-platform-c__call-to-action-text {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: var(--page-betting-platform-reviews-platform-c-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-betting-platform-reviews-platform-c__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-betting-platform-reviews-platform-c__faq-question {
    font-size: 1.3em;
    color: var(--page-betting-platform-reviews-platform-c-primary-color);
    margin-bottom: 10px;
}

.page-betting-platform-reviews-platform-c__faq-answer {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--page-betting-platform-reviews-platform-c-text-dark);
}

.page-betting-platform-reviews-platform-c a {
    color: var(--page-betting-platform-reviews-platform-c-primary-color);
    text-decoration: none;
}

.page-betting-platform-reviews-platform-c a:hover {
    text-decoration: underline;
    color: var(--page-betting-platform-reviews-platform-c-secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-platform-reviews-platform-c__hero-title {
        font-size: 2.5em;
    }

    .page-betting-platform-reviews-platform-c__hero-subtitle {
        font-size: 1.2em;
    }

    .page-betting-platform-reviews-platform-c__section-title {
        font-size: 2em;
    }

    .page-betting-platform-reviews-platform-c__grid {
        grid-template-columns: 1fr;
    }

    .page-betting-platform-reviews-platform-c__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-platform-reviews-platform-c__hero-title {
        font-size: 2em;
    }

    .page-betting-platform-reviews-platform-c__hero-subtitle {
        font-size: 1em;
    }

    .page-betting-platform-reviews-platform-c__section-title {
        font-size: 1.8em;
    }

    .page-betting-platform-reviews-platform-c__intro-section, 
    .page-betting-platform-reviews-platform-c__features-section, 
    .page-betting-platform-reviews-platform-c__promotions-section, 
    .page-betting-platform-reviews-platform-c__registration-section, 
    .page-betting-platform-reviews-platform-c__app-section, 
    .page-betting-platform-reviews-platform-c__conclusion-section, 
    .page-betting-platform-reviews-platform-c__faq-section {
        padding: 40px 0;
    }

    .page-betting-platform-reviews-platform-c__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}