/* ===== Video Stats Section ===== */
.vs-video-stats {
    background: #1a1a2e;
    padding: 80px 0;
}

.vs-video-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left - Video */
.vs-video-stats-left {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0d0d1a;
}

.vs-video-stats-left video,
.vs-video-stats-left iframe {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.vs-video-stats-left img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right - Stats */
.vs-video-stats-right {
    color: #fff;
}

.vs-video-stats-right h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 35px;
    color: #fff;
}

.vs-stats-circles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.vs-stat-circle {
    text-align: center;
}

.vs-stat-circle .circle {
    width: 80px;
    height: 80px;
    border: 3px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.vs-stat-circle:nth-child(1) .circle { border-color: #f39c12; color: #f39c12; }
.vs-stat-circle:nth-child(2) .circle { border-color: #9b59b6; color: #9b59b6; }
.vs-stat-circle:nth-child(3) .circle { border-color: #1abc9c; color: #1abc9c; }
.vs-stat-circle:nth-child(4) .circle { border-color: #3498db; color: #3498db; }
.vs-stat-circle:nth-child(5) .circle { border-color: #e74c3c; color: #e74c3c; }

.vs-stat-circle .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
}

.vs-video-stats-desc {
    color: #00e676;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 991px) {
    .vs-video-stats {
        padding: 60px 0;
    }
    .vs-video-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vs-video-stats-right h2 {
        font-size: 2rem;
        text-align: center;
    }
    .vs-stats-circles {
        grid-template-columns: repeat(5, 1fr);
        justify-items: center;
    }
    .vs-stat-circle .circle {
        width: 70px;
        height: 70px;
        font-size: 1.1rem;
    }
}

/* Mobile - 3 top, 2 bottom centered */
@media (max-width: 767px) {
    .vs-video-stats-right h2 {
        font-size: 1.6rem;
    }
    .vs-stats-circles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
        justify-items: center;
    }
    /* Last two items centered */
    .vs-stat-circle:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
        margin-right: 10px;
    }
    .vs-stat-circle:nth-child(5) {
        grid-column: 2 / 4;
        justify-self: start;
        margin-left: 10px;
    }
    .vs-stat-circle .circle {
        width: 72px;
        height: 72px;
        font-size: 1.15rem;
        border-width: 2px;
    }
    .vs-stat-circle .label {
        font-size: 0.75rem;
    }
    .vs-video-stats-desc {
        text-align: center;
    }
}

/* Small mobile - 2+2+1 layout */
@media (max-width: 480px) {
    .vs-stats-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .vs-stat-circle:nth-child(4) {
        grid-column: auto;
        justify-self: center;
        margin-right: 0;
    }
    .vs-stat-circle:nth-child(5) {
        grid-column: 1 / 3;
        justify-self: center;
        margin-left: 0;
    }
    .vs-stat-circle .circle {
        width: 68px;
        height: 68px;
        font-size: 1.1rem;
    }
}