/* style/index-pg88-player-reviews.css */

/* General page styling */
.page-index-pg88-player-reviews {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-index-pg88-player-reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-pg88-player-reviews .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-pg88-player-reviews .btn-primary {
    background-color: #007bff; /* Main color */
    color: #ffffff; /* White text for contrast */
}

.page-index-pg88-player-reviews .btn-primary:hover {
    background-color: #0056b3; /* Darker main color */
    transform: translateY(-2px);
}

.page-index-pg88-player-reviews .btn-secondary {
    background-color: #ffc107; /* Accent color */
    color: #333333; /* Dark text for contrast */
}

.page-index-pg88-player-reviews .btn-secondary:hover {
    background-color: #e0a800; /* Darker accent color */
    transform: translateY(-2px);
}

.page-index-pg88-player-reviews .btn-outline {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.page-index-pg88-player-reviews .btn-outline:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-index-pg88-player-reviews .section-title {
    font-size: 2.5em;
    color: #007bff; /* Main color for titles */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-pg88-player-reviews .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Accent color for underline */
    border-radius: 2px;
}

.page-index-pg88-player-reviews .section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

/* Hero Section */
.page-index-pg88-player-reviews .hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Gradient with main color variants */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-index-pg88-player-reviews .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-index-pg88-player-reviews .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-pg88-player-reviews .hero-cta {
    font-size: 1.2em;
    padding: 15px 35px;
}

/* Why Reviews Matter Section */
.page-index-pg88-player-reviews .why-reviews-matter-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-index-pg88-player-reviews .why-reviews-matter-section .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-index-pg88-player-reviews .why-reviews-matter-section .text-content {
    flex: 1;
}

.page-index-pg88-player-reviews .why-reviews-matter-section .text-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-index-pg88-player-reviews .why-reviews-matter-section .image-content {
    flex: 1;
    text-align: center;
}

.page-index-pg88-player-reviews .why-reviews-matter-section .image-content .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Featured Reviews Section */
.page-index-pg88-player-reviews .featured-reviews-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-index-pg88-player-reviews .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-pg88-player-reviews .review-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-pg88-player-reviews .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-pg88-player-reviews .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.page-index-pg88-player-reviews .reviewer-name {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1em;
}

.page-index-pg88-player-reviews .review-rating {
    color: #ffc107;
    font-size: 1.2em;
}

.page-index-pg88-player-reviews .review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.page-index-pg88-player-reviews .review-date {
    font-size: 0.9em;
    color: #888;
    text-align: right;
    display: block;
}

/* Common Themes Section */
.page-index-pg88-player-reviews .common-themes-section {
    padding: 80px 0;
    background-color: #e9ecef;
}

.page-index-pg88-player-reviews .theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-pg88-player-reviews .theme-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-pg88-player-reviews .theme-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-pg88-player-reviews .theme-item h3 {
    color: #007bff;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-index-pg88-player-reviews .theme-item p {
    color: #666;
}

/* Addressing Concerns Section */
.page-index-pg88-player-reviews .addressing-concerns-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-index-pg88-player-reviews .faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #ffc107; /* Accent color for emphasis */
}

.page-index-pg88-player-reviews .faq-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-pg88-player-reviews .faq-item p {
    color: #555;
}

.page-index-pg88-player-reviews .faq-item p strong {
    color: #333;
}

/* How to Join Section */
.page-index-pg88-player-reviews .how-to-join-section {
    padding: 80px 0;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
}

.page-index-pg88-player-reviews .how-to-join-section .section-title,
.page-index-pg88-player-reviews .how-to-join-section .section-description {
    color: #ffffff;
}

.page-index-pg88-player-reviews .how-to-join-section .section-title::after {
    background-color: #ffc107;
}

.page-index-pg88-player-reviews .cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-index-pg88-player-reviews .cta-btn {
    font-size: 1.1em;
    padding: 14px 30px;
}

.page-index-pg88-player-reviews .how-to-join-section .btn-primary {
    background-color: #ffc107;
    color: #007bff;
}

.page-index-pg88-player-reviews .how-to-join-section .btn-primary:hover {
    background-color: #e0a800;
    color: #0056b3;
}

.page-index-pg88-player-reviews .how-to-join-section .btn-secondary {
    background-color: #ffffff;
    color: #007bff;
}

.page-index-pg88-player-reviews .how-to-join-section .btn-secondary:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

.page-index-pg88-player-reviews .how-to-join-section .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.page-index-pg88-player-reviews .how-to-join-section .btn-outline:hover {
    background-color: #ffffff;
    color: #007bff;
}

.page-index-pg88-player-reviews .how-to-join-section .image-content .img-fluid {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Latest News Section */
.page-index-pg88-player-reviews .latest-news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.page-index-pg88-player-reviews .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-pg88-player-reviews .news-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-pg88-player-reviews .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-pg88-player-reviews .news-card .news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-pg88-player-reviews .news-card h3 {
    font-size: 1.3em;
    color: #007bff;
    padding: 20px 20px 10px;
}

.page-index-pg88-player-reviews .news-card p {
    color: #666;
    padding: 0 20px 15px;
    font-size: 0.95em;
}

.page-index-pg88-player-reviews .news-card .read-more {
    display: block;
    color: #ffc107;
    font-weight: bold;
    padding: 0 20px 20px;
    text-decoration: none;
}

.page-index-pg88-player-reviews .news-card .read-more:hover {
    text-decoration: underline;
    color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-pg88-player-reviews .hero-title {
        font-size: 2.8em;
    }
    .page-index-pg88-player-reviews .hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-pg88-player-reviews .section-title {
        font-size: 2em;
    }
    .page-index-pg88-player-reviews .why-reviews-matter-section .content-wrapper {
        flex-direction: column;
    }
    .page-index-pg88-player-reviews .why-reviews-matter-section .image-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-pg88-player-reviews .hero-section {
        padding: 80px 0;
    }
    .page-index-pg88-player-reviews .hero-title {
        font-size: 2.2em;
    }
    .page-index-pg88-player-reviews .hero-subtitle {
        font-size: 1em;
    }
    .page-index-pg88-player-reviews .hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-pg88-player-reviews .section-title {
        font-size: 1.8em;
    }
    .page-index-pg88-player-reviews .review-grid,
    .page-index-pg88-player-reviews .theme-grid,
    .page-index-pg88-player-reviews .news-grid {
        grid-template-columns: 1fr;
    }
    .page-index-pg88-player-reviews .cta-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-index-pg88-player-reviews .hero-section {
        padding: 60px 0;
    }
    .page-index-pg88-player-reviews .hero-title {
        font-size: 1.8em;
    }
    .page-index-pg88-player-reviews .hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-pg88-player-reviews .btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-index-pg88-player-reviews .section-title {
        font-size: 1.5em;
    }
}