/* Reviews Section Block Styles (Premium Dark Theme) */

.mobcash-reviews-wrapper .reviews-section {
    padding: 60px 0;
    background-color: var(--bg-main);
    overflow: hidden;
}

.mobcash-reviews-wrapper .reviews-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.mobcash-reviews-wrapper .reviews-title {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mobcash-reviews-wrapper .reviews-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

.mobcash-reviews-wrapper .reviews-scroll-container {
    padding: 0 40px 60px;
}

.mobcash-reviews-wrapper .reviews-flex-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobcash-reviews-wrapper .reviews-flex-wrapper::-webkit-scrollbar {
    display: none;
}

.mobcash-reviews-wrapper .review-card {
    background: linear-gradient(145deg, rgba(30, 35, 48, 0.9) 0%, rgba(15, 17, 24, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    min-width: 360px;
    max-width: 360px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    overflow: hidden;
}

.mobcash-reviews-wrapper .review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    font-family: serif;
    color: rgba(0, 229, 153, 0.03);
    line-height: 1;
    pointer-events: none;
}

.mobcash-reviews-wrapper .review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 229, 153, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobcash-reviews-wrapper .review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 229, 153, 0.4);
    box-shadow: 0 30px 60px rgba(0, 229, 153, 0.1);
}

.mobcash-reviews-wrapper .review-card:hover::after {
    opacity: 1;
}

.mobcash-reviews-wrapper .review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.mobcash-reviews-wrapper .user-flag-circle {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.mobcash-reviews-wrapper .user-info .user-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 2px;
}

.mobcash-reviews-wrapper .user-info .user-status {
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.mobcash-reviews-wrapper .review-income-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(110, 50, 249, 0.1);
    border: 1px solid rgba(110, 50, 249, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.mobcash-reviews-wrapper .review-income-badge span {
    color: var(--text-gray);
    font-size: 13px;
}

.mobcash-reviews-wrapper .review-income-badge b {
    color: var(--accent-purple);
    font-size: 18px;
}

.mobcash-reviews-wrapper .review-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.mobcash-reviews-wrapper .scroll-indicator {
    width: 100px;
    height: 2px;
    background: var(--border-color);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.mobcash-reviews-wrapper .scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .mobcash-reviews-wrapper .reviews-section {
        padding: 60px 0;
    }

    .mobcash-reviews-wrapper .reviews-scroll-container {
        padding: 0 20px 40px;
    }

    .mobcash-reviews-wrapper .review-card {
        min-width: 300px;
        padding: 30px;
    }

    .mobcash-reviews-wrapper .reviews-title {
        font-size: 28px;
    }
}
