<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* GLOBAL RESET AND BASICS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #121212;
    color: #fff;
    font-family: sans-serif;
    padding: 20px;
    margin:auto;
    transition: margin-left 0.3s;
    max-width: 100%;
}

@media screen and (min-width: 778px) {


    #sidebar {
        width: 60px; /* collapsed by default */
        display: block;
    }

    #sidebar.expanded {
        width: 200px;
    }

    #sidebar.collapsed .text {
        display: none;
    }
}

@media screen and (max-width: 777px) {
    #sidebar {
        display: none;
    }

    body {
        margin-left: 0;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

h1 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #222;
    color: #fff;
    z-index: 1000;
    padding-top: 20px;
    transition: width 0.3s;
    overflow: hidden;
}

#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar li {
    padding: 0;
}

#sidebar li a {
    display: flex;
    align-items: center;
    padding: 12px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s;
}

#sidebar li a:hover {
    background-color: #333;
}

#sidebar .icon {
    margin-right: 10px;
    font-size: 20px;
    min-width: 20px;
    text-align: center;
}

#toggleSidebar {
    background: none;
    color: #fff;
    border: none;
    font-size: 24px;
    margin: 10px;
    cursor: pointer;
    display: none;
}

@media screen and (min-width: 778px) {
    #toggleSidebar {
        display: block;
    }
}

/* CONTENT LAYOUT */
.main-preview img,
.card img,
.thumbnail-slider img {
    background: #000;
    border-radius: 6px;
    object-fit: contain;
    width: 100%;
}

.card {
    background: #1e1e1e;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 8px #0005;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.03);
}

.card-content,
.content {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meta,
.card-meta {
    font-size: 12px;
    color: #aaa;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

/* SLIDER */
.slider-track,
.thumbnail-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    min-height: 100px;
    padding-bottom: 10px;
}

.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.slider-buttons button {
    background: #333;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.slider-buttons button:hover {
    background: #00bcd4;
    color: #121212;
}

/* PAGINATION */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    color: #0af;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a.active {
    font-weight: bold;
    background: #0af;
    color: #000;
}

/* MEDIA QUERIES */
@media screen and (max-width: 777px) {
    .main-preview img {
        max-height: 280px;
        min-height: 280px;
    }

    .card {
        width: 100%;
    }
}

/* INTERACTION */
.slider-track a, .slider-track img, .thumbnail-slider img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

/* UTILITIES */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* DARK MODE TOGGLE PREP */
[data-theme="dark"] body {
    background: #121212;
    color: #fff;
}

[data-theme="light"] body {
    background: #f4f4f4;
    color: #111;
}

/* SMOOTH TRANSITIONS */
body, .card, .sidebar, .slider-buttons button {
    transition: all 0.3s ease;
}/* GLOBAL RESET AND BASICS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #121212;
    color: #fff;
    font-family: sans-serif;
    padding: 20px;
    transition: margin-left 0.3s;
    max-width: 100%;
}

@media screen and (min-width: 778px) {

    #sidebar {
        width: 60px; /* collapsed by default */
        display: block;
    }

    #sidebar.expanded {
        width: 200px;
    }

    #sidebar.collapsed .text {
        display: none;
    }
}

@media screen and (max-width: 777px) {
    #sidebar {
        display: none;
    }

    body {
        margin-left: 0;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

h1 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #222;
    color: #fff;
    z-index: 1000;
    padding-top: 20px;
    transition: width 0.3s;
    overflow: hidden;
}

#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar li {
    padding: 0;
}

#sidebar li a {
    display: flex;
    align-items: center;
    padding: 12px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s;
}

#sidebar li a:hover {
    background-color: #333;
}

#sidebar .icon {
    margin-right: 10px;
    font-size: 20px;
    min-width: 20px;
    text-align: center;
}

#toggleSidebar {
    background: none;
    color: #fff;
    border: none;
    font-size: 24px;
    margin: 10px;
    cursor: pointer;
    display: none;
}

@media screen and (min-width: 778px) {
    #toggleSidebar {
        display: block;
    }
}

/* CONTENT LAYOUT */
.main-preview img,
.card img,
.thumbnail-slider img {
    background: #000;
    border-radius: 6px;
    object-fit: contain;
    width: 100%;
}

.card {
    background: #1e1e1e;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 8px #0005;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.03);
}

.card-content,
.content {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meta,
.card-meta {
    font-size: 12px;
    color: #aaa;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

/* SLIDER */
.slider-track,
.thumbnail-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    min-height: 100px;
    padding-bottom: 10px;
}

.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.slider-buttons button {
    background: #333;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.slider-buttons button:hover {
    background: #00bcd4;
    color: #121212;
}

/* PAGINATION */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    color: #0af;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a.active {
    font-weight: bold;
    background: #0af;
    color: #000;
}

/* MEDIA QUERIES */
@media screen and (max-width: 777px) {
    .main-preview img {
        max-height: 280px;
        min-height: 280px;
    }

    .card {
        width: 100%;
    }
}

/* INTERACTION */
.slider-track a, .slider-track img, .thumbnail-slider img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

/* UTILITIES */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* DARK MODE TOGGLE PREP */
[data-theme="dark"] body {
    background: #121212;
    color: #fff;
}

[data-theme="light"] body {
    background: #f4f4f4;
    color: #111;
}

/* SMOOTH TRANSITIONS */
body, .card, .sidebar, .slider-buttons button {
    transition: all 0.3s ease;
}</pre></body></html>