/* Reviews Page Specific Styles */

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #adb5bd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-description {
    font-size: 18px;
    color: #adb5bd;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #0a0e1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background-color: #1a1f2e;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #2a3441;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: #ffd700;
    color: #0a0e1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 14px;
    color: #adb5bd;
}

.review-rating {
    text-align: right;
}

.rating-stars {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.review-content {
    margin-bottom: 20px;
}

.review-casino {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.review-date {
    color: #adb5bd;
}

.review-verified {
    color: #28a745;
    font-weight: 600;
}

/* Review Summary */
.review-summary {
    background-color: #1a1f2e;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 1px solid #2a3441;
}

.review-summary h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 30px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #adb5bd;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    .page-description {
        font-size: 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .review-rating {
        text-align: left;
    }

    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .review-summary {
        padding: 30px 20px;
    }

    .summary-stats {
        grid-template-columns: 1fr;
    }
}
