


.watching-now-section {
    margin-bottom: 2rem;
}

.viewer-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--green-live);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}


.popular-categories-section {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.cat-count {
    opacity: 0.7;
    font-weight: 400;
    font-size: 0.8em;
}


.new-videos-section {
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.new-videos-section .section-header {
    margin-bottom: 1.25rem;
}

.new-videos-section .video-grid {
    transition: opacity 0.3s ease;
}


.new-videos-section .pagination {
    margin-top: 1.5rem;
    margin-bottom: 0;
}


.random-videos-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.random-videos-section .section-header {
    margin-bottom: 1.25rem;
}

.random-videos-section .video-grid {
    transition: opacity 0.3s ease;
}

.random-videos-section .btn-view-all {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}


.page-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 0.1em;
    user-select: none;
}


@keyframes placeholder-cycle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}


@media (max-width: 768px) {
    .watching-now-section {
        margin-bottom: 1.5rem;
    }

    .popular-categories-section {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .new-videos-section,
    .random-videos-section {
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .page-go {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.75rem;
    }
}