<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Netflix Sans';
    src: url('path/to/font.woff2') format('woff2');
    font-display: swap;
}

.top-ranking-widget {
    padding: 10px;
    background: #141414;
    border: 1px solid #333;
    color: #e5e5e5;
    border-radius: 8px;
    font-family: 'Netflix Sans', 'Helvetica Neue', Arial, sans-serif;
    margin: 14px;
}

@media (min-width: 300px) {
    .top-ranking-widget { margin: 20px; }
}
@media (min-width: 600px) {
    .top-ranking-widget { margin: 30px; }
}
@media (min-width: 900px) {
    .top-ranking-widget { margin: 40px; }
}
@media (min-width: 1500px) {
    .top-ranking-widget { margin: 60px; }
}

.top-ranking-widget .tab-buttons {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    margin: 2px 2px 20px;
    padding-bottom: 10px;
    background: #141414;
    border-bottom: 1px solid #333;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: #555 #2a2a2a;
}

.top-ranking-widget .tab-buttons::-webkit-scrollbar {
    height: 6px;
}

.top-ranking-widget .tab-buttons::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 3px;
}

.top-ranking-widget .tab-buttons::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.top-ranking-widget .tab-buttons::-webkit-scrollbar-thumb:hover {
    background: #888;
}

.top-ranking-widget .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 10px 20px;
    cursor: pointer;
    background: #2a2a2a;
    color: #e5e5e5;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
    transition: .3s;
}

@media (max-width: 300px) {
    .top-ranking-widget .tab {
        padding: 6px 10px;
        font-size: 12px;
    }
}

.top-ranking-widget .tab.active {
    background: #e50914;
    color: #fff;
}

.top-ranking-widget .tab:hover {
    background: #333;
    color: #fff;
}

.top-ranking-widget .tab-content {
    display: none;
}

.top-ranking-widget .tab-content.active {
    display: block;
}

.top-ranking-widget .ranking-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.top-ranking-widget .horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #e50914 #2a2a2a;
}

.top-ranking-widget .horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.top-ranking-widget .horizontal-scroll::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.top-ranking-widget .horizontal-scroll::-webkit-scrollbar-thumb {
    background: #e50914;
    border-radius: 4px;
}

.top-ranking-widget .horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #b20710;
}

.top-ranking-widget .ranking-entry {
    background: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.5);
    flex: 0 0 calc(20% - 9px);
    max-width: calc(20% - 9px);
}

@media (max-width: 1024px) {
    .top-ranking-widget .ranking-entry {
        flex: 0 0 calc(25% - 9px);
        max-width: calc(25% - 9px);
    }
}

@media (max-width: 767px) {
    .top-ranking-widget .ranking-entry {
        flex: 0 0 calc(33.3333% - 12px);
        max-width: calc(33.3333% - 12px);
    }
}

@media (max-width: 480px) {
    .top-ranking-widget .ranking-entry {
        flex: 0 0 calc(50% - 9px);
        max-width: calc(50% - 9px);
    }
}

@media (max-width: 240px) {
    .top-ranking-widget .ranking-entry {
        flex: 0 0 calc(100% - 9px);
        max-width: calc(100% - 9px);
    }
}

.top-ranking-widget .poster {
    position: relative;
    padding-top: 150%;
}

.top-ranking-widget .poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

.top-ranking-widget .data {
    text-align: center;
    padding: 10px;
}

.top-ranking-widget .data .rank {
    display: inline-block;
    background: #e50914;
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
    margin-bottom: 5px;
}

.top-ranking-widget .data h3 {
    font-size: 14px;
    margin: 0 0 5px;
    line-height: 1.2;
    color: #e5e5e5;
}

.top-ranking-widget .data h3 a {
    color: #e5e5e5;
    text-decoration: none;
}

.top-ranking-widget .data h3 a:hover {
    text-decoration: underline;
}

.top-ranking-widget .data .views {
    font-size: 12px;
    color: #bbb;
}

.top-ranking-widget .no-content-message {
    text-align: center;
    color: #e5e5e5;
    padding: 20px;
    font-size: 16px;
}</pre></body></html>