<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.table-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: .375rem;
    background-color: #0C0C0C;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.image-cell {
    display: flex;
    align-items: center;
    cursor: pointer
}

.image-cell img {
    width: 100px;
    height: auto;
    border-radius: 3px;
    margin-right: 10px
}

.text-content {
    display: flex;
    flex-direction: column
}

.text-content h3 {
    margin: 0;
    color: #fff;
    font-size: 14px
}

.text-content h4 {
    margin: 0;
    color: #e2e8f0;
    font-size: 12px
}

.status {
    color: #fff;
    font-size: 11px;
    font-weight: 500
}

.row-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.row-link:hover {
    background-color: #4a5568
}

.pagination {
    margin-top: 20px;
    text-align: center
}

.pagination a {
    margin: 0 5px;
    padding: 8px;
    text-decoration: none;
    background-color: #2d3748;
    color: #fff;
    border-radius: 5px
}

.pagination a.active {
    background-color: #4a5568
}

.total-movies-panel {
    background-color: #2d3748;
    border-radius: 5px;
    text-align: center;
    width: 100%
}

.total-movies-panel p {
    margin: 0;
    color: #FFD700;
    font-size: 18px
}

.movie-title {
    display: flex;
    align-items: center
}

.movie-row .hot-icon {
    width: 40px!important;
    height: 40px!important;
    margin-left: 1px!important
}

.original-name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.filter-button {
    background-color: #2d3748;
    color: #fff;
    border: 1px solid #4a5568;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px
}

.filter-button:hover {
    background-color: #4a5568
}

.filter-button i {
    margin-right: 5px
}

.filter-form {
    display: none;
    background-color: #2d3748;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto
}

.filter-form label {
    display: block;
    margin-bottom: 5px;
    color: #fff
}

.filter-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #4a5568;
    border-radius: 5px;
    background-color: #2d3748;
    color: #fff;
    margin-bottom: 15px
}

.table-shows {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: .375rem;
    background-color: #0C0C0C;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px
}

.form-group select {
    position: relative;
    z-index: 1
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 8px;
}

.movie-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 3px;
    overflow: hidden;
    color: #fff;
    transition: transform .3s ease-in-out;
    max-width: 180px;
    position: relative
}

.movie-info-hover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px;
    box-sizing: border-box;
    z-index: 2;
    overflow-y: auto
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns:repeat(2,minmax(220px,1fr))
    }
}

@media (max-width: 480px) {
    .movie-grid {
        grid-template-columns:repeat(2,minmax(220px,1fr))
    }
}

.movie-card:hover {
}

.movie-card a {
    text-decoration: none;
    color: inherit
}

.movie-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 3px;
}

.movie-card:hover img {
    opacity: .8
}

.movie-card .movie-info {
    padding: 10px;
    position: relative;
    font-size: 14px
}

.movie-card h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.3
}

.movie-card p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0
}

.movie-card .hot-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 5px
}

.movie-grid.single-card {
    max-width: 290px
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns:repeat(auto-fill,minmax(130px,1fr))
    }

    .movie-grid img {
        height: 260px
    }
}

.movie-card .movie-info h6 {
    color: #F5F7F8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 30ch;
    padding-bottom: 5px;
    font-weight: 600
}

@media (max-width: 768px) {
    .movie-card .movie-info h6 {
        max-width:25ch
    }
}

.movie-card .episode-status {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #1cc749;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    z-index: 1
}

.movie-card .episode-status .status {
    font-size: 12px
}

.movie-card .hot-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1
}

.movie-info {
    background-color: #0C0C0C
}

.movie-info-hover {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px;
    border-radius: 0 0 5px 5px;
    z-index: 10
}

.movie-card:hover .movie-info-hover {
    display: block
}

.movie-info-hover img.poster {
    width: 100px;
    height: auto;
    float: left;
    margin-right: 10px
}

.play-button-link {
    position: relative;
    display: block
}

.play-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #1cc749;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

.movie-card:hover .play-button {
    opacity: 1
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: #79D70F;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: pulse 1.5s infinite
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.2);
        opacity: .7
    }
}

.btn-group[aria-label="Lá»c phim"] .btn {
    border-color: #F4F6FF;
    color: #F4F6FF
}

.btn-group[aria-label="Lá»c phim"] .btn:hover {
    background-color: #F4F6FF;
    color: #212529
}

.btn-group[aria-label="Lá»c phim"] .btn-primary {
    background-color: #F4F6FF;
    border-color: #F4F6FF;
    color: #212529
}

.breadcrumb {
    background-color: #0C0C0C
}

.breadcrumb-item a {
    color: #F5F5F5
}

.breadcrumb-item.active {
    color: #F5F5F5
}

.btn-group {
    display: flex;
    justify-content: center
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns:repeat(auto-fill,minmax(100px,1fr))
    }
    .movie-card .episode-status .status {
    font-size: 10px
    }

    .movie-grid img {
        height: 160px
    }
    .movie-card .episode-status .status {
    font-size: 10px
}
    .movie-card .movie-info {
    padding: 5px;
    position: relative;
    font-size: 11px
}
}
</pre></body></html>