/* Reviews Page Styles */

.reviews-page {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    padding-top: 2rem;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    margin-bottom: 3rem;
    border-radius: 0 0 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="review-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><rect width="25" height="25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23review-pattern)"/></svg>');
    opacity: 0.6;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.review-search {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.filter-select:focus {
    outline: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #0284c7;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.casino-logo-card {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.casino-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-style: italic;
}

.review-summary {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.review-highlights {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #bae6fd;
}

.highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.highlight:last-child {
    margin-bottom: 0;
}

.highlight-label {
    font-weight: 500;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.highlight-value {
    font-weight: 600;
    color: #0ea5e9;
    font-size: 0.9rem;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pros,
.cons {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.pros {
    border-left: 4px solid #10b981;
}

.cons {
    border-left: 4px solid #ef4444;
}

.pros h5,
.cons h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pros h5 {
    color: #10b981;
}

.cons h5 {
    color: #ef4444;
}

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

.pros li,
.cons li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted-foreground);
}

.pros li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.review-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.review-guides {
    background: white;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.review-guides h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.review-guides p {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #0284c7;
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0ea5e9;
}

.guide-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.guide-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.guide-card .btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    width: 100%;
}

.guide-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.trust-indicators {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.trust-indicators h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.trust-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #065f46;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .review-search {
        padding: 1.5rem;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .review-actions {
        flex-direction: column;
    }
    
    .review-guides,
    .trust-indicators {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .guides-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Full Review Styles */
.review-card.full-review {
    max-width: none;
    padding: 2rem;
}

.review-card.full-review h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.review-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.review-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.review-section p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.review-pros-cons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.casino-logo-card img {
    object-fit: contain;
}