/* ============================================
   VERDICTS PAGE STYLES - UPDATED
   ============================================ */

/* ===== TOP CASE RESULTS (Bigger & More Prominent) ===== */
.verdicts-top {
    padding: 60px 0 80px;
}

.top-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.top-result {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 25px 20px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.top-result:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.top-result:hover::before {
    opacity: 1;
}

/* ===== Top Result Video - Fixed 16:9 Aspect Ratio ===== */
.top-result-video-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.top-result-video-link:hover {
    text-decoration: none;
}

.top-result-video {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--dark-bg);
    width: 100%;
    aspect-ratio: 16 / 9;
    transition: var(--transition);
    flex-shrink: 0;
}

.top-result-video:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.top-result-video .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-result-video .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.top-result-video:hover .video-play-overlay {
    opacity: 1;
}

.top-result-video .video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(233, 175, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(233, 175, 0, 0.3);
}

.top-result-video .video-play-btn:hover {
    transform: scale(1.1);
    background: var(--gold);
}

/* ===== Top Result Icon - Fixed 16:9 Aspect Ratio ===== */
.top-result-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius);
    transition: var(--transition);
    flex-shrink: 0;
}

.top-result:hover .top-result-icon {
    background: rgba(233, 175, 0, 0.03);
}

/* ===== Top Result Content ===== */
.top-result-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 4px;
    line-height: 1.2;
}

.top-result-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.top-result-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

.top-result-case {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
    opacity: 0.7;
}

/* ===== Top Result Actions - Full Width Buttons ===== */
.top-result-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    width: 100%;
}

.btn-action.btn-full {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
}

.btn-action.btn-video {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.btn-action.btn-video:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.btn-action.btn-article {
    background: rgba(66, 165, 245, 0.15);
    color: var(--info);
    border: 1px solid rgba(66, 165, 245, 0.2);
}

.btn-action.btn-article:hover {
    background: var(--info);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.3);
}

.btn-action.btn-sm {
    padding: 6px 14px;
    font-size: 0.75rem;
    width: auto;
    flex: 1;
}

/* ============================================
   VERDICT CARD - Additional Results
   ============================================ */

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

.verdicts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.verdict-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 20px 18px 18px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.verdict-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

/* ===== Verdict Card Thumbnail - Fixed 16:9 ===== */
.verdict-card-thumb-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.verdict-card-thumb-link:hover {
    text-decoration: none;
}

.verdict-card-thumb {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--dark-bg);
    width: 100%;
    aspect-ratio: 16 / 9;
    transition: var(--transition);
    flex-shrink: 0;
}

.verdict-card-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.verdict-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.verdict-card-thumb .thumb-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.verdict-card-thumb:hover .thumb-play-overlay {
    opacity: 1;
}

.verdict-card-thumb .thumb-play-overlay i {
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.verdict-card-thumb .thumb-play-overlay i:hover {
    transform: scale(1.1);
    color: var(--gold-light);
}

/* ===== Verdict Card Icon - Fixed 16:9 ===== */
.verdict-card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.01);
    border-radius: var(--radius);
    transition: var(--transition);
    flex-shrink: 0;
}

.verdict-card:hover .verdict-card-icon {
    background: rgba(233, 175, 0, 0.02);
}

/* ===== Verdict Card Content ===== */
.verdict-card-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}

.verdict-card-case {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.verdict-card-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

/* ===== Verdict Card Actions ===== */
.verdict-card-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   VERDICTS INTRO
   ============================================ */

.verdicts-intro {
    padding: 60px 0 40px;
}

.verdicts-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.verdicts-content .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.verdicts-content .lead strong {
    color: var(--gold);
}

.verdicts-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   STATS BAR
   ============================================ */

.verdicts-stats {
    padding: 60px 0;
    background: var(--dark-section);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .top-result-icon {
        font-size: 3.5rem;
    }
    
    .top-result-amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .top-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .top-result {
        padding: 20px 16px 16px;
    }
    
    .top-result-icon {
        font-size: 3rem;
    }
    
    .top-result-amount {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .verdicts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .verdicts-top {
        padding: 40px 0 60px;
    }
    
    .verdicts-intro {
        padding: 40px 0 20px;
    }
    
    .verdicts-grid-section {
        padding: 40px 0 60px;
    }
    
    .top-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .top-result {
        padding: 16px 12px 14px;
    }
    
    .top-result-icon {
        font-size: 2.5rem;
    }
    
    .top-result-amount {
        font-size: 1.3rem;
    }
    
    .top-result-label {
        font-size: 0.85rem;
    }
    
    .top-result-description {
        font-size: 0.7rem;
    }
    
    .btn-action.btn-full {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .verdicts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .verdict-card {
        padding: 16px 14px 14px;
    }
    
    .verdict-card-amount {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .verdicts-stats {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .verdicts-content h1 {
        font-size: 1.8rem;
    }
    
    .verdicts-content .lead {
        font-size: 1rem;
    }
    
    .top-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .top-result {
        padding: 12px 10px 12px;
    }
    
    .top-result-icon {
        font-size: 2rem;
        min-height: 0;
    }
    
    .top-result-amount {
        font-size: 1.1rem;
    }
    
    .top-result-label {
        font-size: 0.75rem;
    }
    
    .top-result-description {
        display: none;
    }
    
    .top-result-case {
        font-size: 0.65rem;
    }
    
    .btn-action.btn-full {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .verdicts-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .verdict-card {
        padding: 14px 12px 12px;
    }
    
    .verdict-card-amount {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}