/**
 * Reviews Archive Page Styles
 * Version: 1.0.0
 * Modern grid layout for casino reviews listing
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.reviews-archive-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.reviews-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.reviews-hero-content {
    position: relative;
    z-index: 1;
}

.reviews-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.reviews-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px;
    font-weight: 400;
}

.reviews-disclaimer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.disclaimer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.disclaimer-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.disclaimer-badge svg {
    color: #4ade80;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.reviews-trust-section {
    padding: 60px 0;
}

.trust-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: linear-gradient(135deg, #1e3a5f 0%, #1a2f4a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    color: #ffffff;
}

.trust-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.trust-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 15px;
}

.trust-content p:last-child {
    margin-bottom: 0;
}

.trust-content strong {
    color: #fbbf24;
}

/* ==========================================================================
   Reviews Grid Section
   ========================================================================== */

.reviews-grid-section {
    padding: 60px 0 80px;
}

.reviews-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-grid-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.reviews-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 0;
}

.casino-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   Casino Review Card
   ========================================================================== */

.casino-review-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.casino-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.casino-review-card .card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Header */
.casino-review-card .card-header {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-review-card .casino-logo {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-review-card .casino-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c60800 0%, #a00600 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-review-card .casino-logo-placeholder span {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.casino-review-card .card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.casino-review-card .card-rating.rating-excellent {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.casino-review-card .card-rating.rating-good {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.casino-review-card .card-rating.rating-medium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.casino-review-card .card-rating.rating-poor {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.casino-review-card .rating-score {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.casino-review-card .rating-max {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Card Body */
.casino-review-card .card-body {
    padding: 24px;
}

.casino-review-card .casino-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.3;
}

.casino-review-card .casino-bonus {
    background: linear-gradient(135deg, rgba(198, 8, 0, 0.15) 0%, rgba(198, 8, 0, 0.05) 100%);
    border: 1px solid rgba(198, 8, 0, 0.3);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
}

.casino-review-card .bonus-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.casino-review-card .bonus-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1.4;
}

/* Quick Info */
.casino-review-card .card-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.casino-review-card .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
}

.casino-review-card .info-item svg {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* Card Footer */
.casino-review-card .card-footer {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-review-card .read-review-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #c60800 0%, #a00600 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.casino-review-card:hover .read-review-btn {
    background: linear-gradient(135deg, #d91a0f 0%, #b80800 100%);
    transform: scale(1.02);
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */

.reviews-bottom-cta {
    padding: 60px 0;
    background: #0f0f0f;
}

.bottom-cta-box {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.bottom-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #c60800 0%, #a00600 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d91a0f 0%, #b80800 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 8, 0, 0.3);
    color: #ffffff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .reviews-hero-title {
        font-size: 2.5rem;
    }

    .trust-box {
        flex-direction: column;
        text-align: center;
    }

    .trust-icon {
        margin: 0 auto;
    }

    .casino-reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-hero {
        padding: 60px 0 50px;
    }

    .reviews-hero-title {
        font-size: 2rem;
    }

    .reviews-hero-subtitle {
        font-size: 1.1rem;
    }

    .reviews-disclaimer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .disclaimer-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .trust-box {
        padding: 30px 20px;
    }

    .trust-content h2 {
        font-size: 1.5rem;
    }

    .reviews-grid-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .reviews-grid-header h2 {
        font-size: 1.6rem;
    }

    .casino-reviews-grid {
        grid-template-columns: 1fr;
    }

    .bottom-cta-box {
        padding: 30px 20px;
    }

    .bottom-cta-box h3 {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   No Reviews Message
   ========================================================================== */

.no-reviews {
    text-align: center;
    padding: 60px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}
