/* Game Reviews and Data Tables Styles */

/* Review Cards */
.game-reviews {
    padding: 60px 0;
    background: #f8f9fa;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.review-header {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.review-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 184, 148, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.review-content {
    padding: 25px;
}

.review-title {
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 10px;
}

.review-provider {
    color: #00b894;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label {
    color: #636e72;
    font-size: 13px;
}

.stat-value {
    color: #2d3436;
    font-weight: 600;
    font-size: 14px;
}

.review-description {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.pros, .cons {
    padding: 15px;
    border-radius: 8px;
}

.pros {
    background: #d4edda;
}

.cons {
    background: #f8d7da;
}

.pros h5, .cons h5 {
    font-size: 14px;
    margin-bottom: 10px;
}

.pros h5 {
    color: #155724;
}

.cons h5 {
    color: #721c24;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    font-size: 12px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 16px;
    color: #ffc107;
}

.star.empty {
    color: #dfe6e9;
}

.play-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

/* Comparison Tables */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f3f4;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table td {
    padding: 15px;
    font-size: 14px;
    color: #2d3436;
}

.comparison-table .highlight {
    background: #fff3cd;
    font-weight: 600;
}

.comparison-table .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-hot {
    background: #ff6b6b;
    color: white;
}

.badge-new {
    background: #00b894;
    color: white;
}

.badge-recommended {
    background: #ffc107;
    color: #2d3436;
}

/* User Reviews Section */
.user-reviews {
    padding: 60px 0;
}

.user-review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.user-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
}

.user-date {
    font-size: 12px;
    color: #636e72;
}

.user-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.user-review-content {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 15px;
}

.user-review-helpful {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f3f4;
}

.helpful-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f0f3f4;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.helpful-button:hover {
    background: #dfe6e9;
}

.verified-badge {
    background: #d4edda;
    color: #155724;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

/* Data Visualization */
.data-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.chart-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chart-card h4 {
    color: #2d3436;
    margin-bottom: 20px;
}

.chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.chart-label {
    width: 100px;
    font-size: 13px;
    color: #636e72;
}

.chart-progress {
    flex: 1;
    height: 20px;
    background: #f0f3f4;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.chart-value {
    width: 50px;
    text-align: right;
    font-weight: 600;
    color: #2d3436;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-pros-cons {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .data-charts {
        grid-template-columns: 1fr;
    }

    .user-review-header {
        flex-wrap: wrap;
    }
}