/* style/betting-platform-reviews.css */
.page-betting-platform-reviews {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-betting-platform-reviews__section-title {
    color: #FFD700;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-betting-platform-reviews__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

/* Hero Section */
.page-betting-platform-reviews__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    gap: 40px;
}

.page-betting-platform-reviews__hero-content {
    max-width: 600px;
    flex: 1;
    padding: 20px;
}

.page-betting-platform-reviews__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-betting-platform-reviews__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-betting-platform-reviews__hero-btn,
.page-betting-platform-reviews__cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-betting-platform-reviews__hero-btn:hover,
.page-betting-platform-reviews__cta-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-betting-platform-reviews__hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-betting-platform-reviews__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-betting-platform-reviews__introduction {
    padding: 60px 0;
    background-color: #1a2a47;
}

.page-betting-platform-reviews__introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

/* Criteria Section */
.page-betting-platform-reviews__criteria {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-betting-platform-reviews__criterion-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-betting-platform-reviews__criterion-item:hover {
    transform: translateY(-10px);
}

.page-betting-platform-reviews__criterion-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-betting-platform-reviews__criterion-item p {
    color: #cccccc;
    font-size: 0.95em;
}

.page-betting-platform-reviews__criterion-icon {
    width: 60px;
    height: 60px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
}

/* Featured Platforms Section */
.page-betting-platform-reviews__featured-platforms {
    padding: 80px 0;
    background-color: #1a2a47;
}

.page-betting-platform-reviews__platform-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-betting-platform-reviews__platform-item {
    background-color: #0A192F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-betting-platform-reviews__platform-item:hover {
    transform: translateY(-5px);
}

.page-betting-platform-reviews__platform-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-betting-platform-reviews__platform-info {
    padding: 20px;
}

.page-betting-platform-reviews__platform-info h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-betting-platform-reviews__platform-info h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-betting-platform-reviews__platform-info h3 a:hover {
    color: #e6c200;
}

.page-betting-platform-reviews__platform-info p {
    color: #cccccc;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-betting-platform-reviews__read-more-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-betting-platform-reviews__read-more-btn:hover {
    background-color: #e6c200;
}

/* Benefits Section */
.page-betting-platform-reviews__benefits {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-betting-platform-reviews__benefits ul {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-betting-platform-reviews__benefits ul li {
    background-color: #1a2a47;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-platform-reviews__benefits ul li strong {
    color: #FFD700;
}

.page-betting-platform-reviews__benefits p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

/* FAQ Section */
.page-betting-platform-reviews__faq {
    padding: 80px 0;
    background-color: #1a2a47;
}

.page-betting-platform-reviews__faq-item {
    background-color: #0A192F;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-platform-reviews__faq-question {
    padding: 20px;
    color: #FFD700;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-betting-platform-reviews__faq-question:hover {
    background-color: #1a2a47;
}

.page-betting-platform-reviews__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-betting-platform-reviews__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-betting-platform-reviews__faq-answer {
    padding: 0 20px 20px;
    color: #cccccc;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-betting-platform-reviews__faq-answer p {
    margin: 0;
}

.page-betting-platform-reviews__faq-question.active + .page-betting-platform-reviews__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 20px 20px;
}

/* Contact CTA Section */
.page-betting-platform-reviews__contact-cta {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-betting-platform-reviews__contact-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-betting-platform-reviews__hero {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .page-betting-platform-reviews__hero-content {
        order: 2;
    }

    .page-betting-platform-reviews__hero-image-container {
        order: 1;
        margin-bottom: 30px;
    }

    .page-betting-platform-reviews__hero-title {
        font-size: 2.8em;
    }

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

@media (max-width: 768px) {
    .page-betting-platform-reviews__hero-title {
        font-size: 2.2em;
    }

    .page-betting-platform-reviews__hero-description {
        font-size: 1em;
    }

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

    .page-betting-platform-reviews__criteria-grid,
    .page-betting-platform-reviews__platform-list {
        grid-template-columns: 1fr;
    }

    .page-betting-platform-reviews__hero-btn,
    .page-betting-platform-reviews__cta-btn,
    .page-betting-platform-reviews__read-more-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-platform-reviews__hero {
        padding: 40px 15px;
    }

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

    .page-betting-platform-reviews__section-title {
        font-size: 1.5em;
    }

    .page-betting-platform-reviews__criterion-item h3,
    .page-betting-platform-reviews__platform-info h3 {
        font-size: 1.2em;
    }

    .page-betting-platform-reviews__faq-question {
        font-size: 1.1em;
    }
}