* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a28;
    --card: #16161f;
    --border: #2a2a3a;
    --text: #e0e0e8;
    --text2: #8888a0;
    --accent: #ff5500;
    --accent2: #ff7733;
    --green: #3bb33b;
    --yellow: #f5c518;
    --radius: 12px;
    --max-w: 1280px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    cursor: default;
}

a, button, select, input, .tag, .checkbox-tag, .movie-card { cursor: pointer; }
input[type="text"], input[type="email"], input[type="password"] { cursor: text; }

::selection { background: var(--accent); color: #fff; }

a { color: var(--accent2); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

/* Header */
.header {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav { display: flex; gap: 2px; }
.nav a {
    color: var(--text2);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all .2s;
}
.nav a:hover { color: #fff; background: var(--bg3); }

.burger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

.search-box {
    margin-left: auto;
    position: relative;
    width: 320px;
}
.search-box input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg3);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}
.search-box input:focus { border-color: var(--accent); }
.search-box input::placeholder { color: var(--text2); }
.search-box .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text2);
    font-size: 16px;
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 4px;
    overflow: hidden;
    display: none;
    z-index: 200;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.search-suggestions.active { display: block; }
.suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background .15s;
}
.suggest-item:hover { background: var(--bg3); }
.suggest-item img {
    width: 36px;
    height: 52px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--bg3);
}
.suggest-item .si-info { flex: 1; min-width: 0; }
.suggest-item .si-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.suggest-item .si-meta { font-size: 12px; color: var(--text2); }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 30px 20px; flex: 1; }

/* Section */
.section { margin-bottom: 40px; }
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.section-link { font-size: 14px; color: var(--text2); }
.section-link:hover { color: var(--accent2); }

/* Movie Cards Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.movie-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.movie-card a { color: inherit; }
.movie-card .poster {
    aspect-ratio: 2/3;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
}
.movie-card .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.movie-card .rating-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.movie-card.card-fav { box-shadow: 0 0 0 1.5px var(--accent); }
.movie-card.card-watched { box-shadow: 0 0 0 1.5px var(--green); opacity: .7; }
.movie-card.card-watched:hover { opacity: 1; }
.movie-card.card-fav.card-watched { box-shadow: 0 0 0 1.5px var(--accent), 0 0 0 3px var(--green); opacity: .7; }
.movie-card.card-fav.card-watched:hover { opacity: 1; }

.card-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
}
.card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 13px;
    color: #fff;
}
.badge-fav { background: rgba(255,85,0,.85); }
.badge-watched { background: rgba(59,179,59,.85); }

.movie-card .card-info { padding: 12px; }
.movie-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movie-card .card-meta {
    font-size: 12px;
    color: var(--text2);
}

/* Genre Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text2);
    transition: all .2s;
}
.tag:hover { color: #fff; border-color: var(--accent); background: rgba(255,85,0,.1); }

/* Movie Page */
.movie-hero {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.movie-poster {
    flex-shrink: 0;
    width: 300px;
}
.movie-poster img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.movie-poster .no-poster {
    aspect-ratio: 2/3;
    background: var(--bg3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    font-size: 48px;
}
.movie-details { flex: 1; min-width: 0; }
.movie-title-block { margin-bottom: 16px; }
.movie-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.movie-title-en {
    font-size: 16px;
    color: var(--text2);
    margin-top: 4px;
}
.movie-tagline {
    font-style: italic;
    color: var(--text2);
    margin-bottom: 16px;
    font-size: 15px;
}

.movie-ratings {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.rating-block {
    text-align: center;
    padding: 12px 20px;
    background: var(--bg3);
    border-radius: 10px;
    min-width: 90px;
}
.rating-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.rating-label {
    font-size: 11px;
    color: var(--text2);
    margin-top: 4px;
    text-transform: uppercase;
}
.rating-count {
    font-size: 11px;
    color: var(--text2);
}

.movie-info-table {
    margin-bottom: 20px;
}
.movie-info-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 14px;
}
.movie-info-label {
    width: 160px;
    flex-shrink: 0;
    color: var(--text2);
}
.movie-info-value { color: var(--text); }
.movie-info-value a { color: var(--accent2); }

.movie-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

/* Movie action buttons */
.movie-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text2);
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}
.action-btn:hover { border-color: var(--accent); color: #fff; }
.action-btn.active { background: rgba(255,85,0,.1); border-color: var(--accent); color: var(--accent2); }
.action-btn .action-icon { font-size: 18px; }

/* Tabs */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color .2s;
}
.tab-btn:hover { color: #fff; }
.tab-btn.active {
    color: var(--accent);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Actors list */
.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.actor-card {
    text-align: center;
}
.actor-card .actor-photo {
    width: 100px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 8px;
    background: var(--bg3);
}
.actor-card .actor-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}
.actor-card .actor-role {
    font-size: 12px;
    color: var(--text2);
}

/* Stills Gallery */
.stills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}
.stills-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity .2s;
}
.stills-grid img:hover { opacity: .8; }

/* Facts */
.facts-list { list-style: none; }
.facts-list li {
    padding: 12px 16px;
    background: var(--bg3);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    border-left: 3px solid var(--accent);
}

/* Episodes */
.episodes-season { margin-bottom: 24px; }
.season-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.episodes-table {
    width: 100%;
    border-collapse: collapse;
}
.episodes-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text2);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.episodes-table td {
    padding: 10px 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.03);
}
.episodes-table tr:hover { background: var(--bg3); }

/* Similar movies */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

/* Actor Page */
.actor-hero {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.actor-main-photo {
    width: 250px;
    flex-shrink: 0;
}
.actor-main-photo img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.actor-info { flex: 1; }
.actor-page-name {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.actor-original-name {
    font-size: 16px;
    color: var(--text2);
    margin-bottom: 16px;
}
.actor-bio-table { margin-bottom: 20px; }

/* Filmography */
.filmography-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 10px;
    transition: background .15s;
    margin-bottom: 4px;
}
.filmography-item:hover { background: var(--bg3); }
.filmography-year {
    width: 50px;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--text2);
    text-align: center;
}
.filmography-poster {
    width: 40px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg3);
}
.filmography-poster img { width: 100%; height: 100%; object-fit: cover; }
.filmography-info { flex: 1; }
.filmography-title { font-size: 14px; font-weight: 500; }
.filmography-role { font-size: 12px; color: var(--text2); }
.filmography-rating {
    font-weight: 700;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
}

/* Catalog */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.filter-select {
    padding: 10px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    cursor: pointer;
    min-width: 140px;
    width: 100%;
}
.filter-select:focus { border-color: var(--accent); }
.filter-select option { background: var(--bg2); }
.filter-btn {
    padding: 12px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.filter-btn:hover { background: var(--accent2); }

/* Filter form */
.filter-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.filter-group {}
.filter-group-wide { grid-column: span 2; }
.filter-group-full { grid-column: 1 / -1; }

.checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.checkbox-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text2);
    cursor: pointer;
    transition: all .15s;
    user-select: none;
}
.checkbox-tag input { display: none; }
.checkbox-tag:hover { color: #fff; border-color: rgba(255,85,0,.4); }
.checkbox-tag.checked {
    background: rgba(255,85,0,.15);
    border-color: var(--accent);
    color: var(--accent2);
}
.genre-tri {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text2);
    cursor: pointer;
    transition: all .15s;
    user-select: none;
}
.genre-tri:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.genre-tri.tri-include {
    background: rgba(255,85,0,.15);
    border-color: var(--accent);
    color: var(--accent2);
}
.genre-tri.tri-exclude {
    background: rgba(255,0,0,.15);
    border-color: #ff4444;
    color: #ff6666;
    text-decoration: line-through;
}
.filter-label {
    display: block;
    font-size: 12px;
    color: var(--text2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.filter-reset {
    color: var(--text2);
    font-size: 14px;
    padding: 12px 20px;
}
.filter-reset:hover { color: #fff; }
.filter-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text2);
    cursor: pointer;
    user-select: none;
}
.filter-checkbox:hover { color: #fff; }
.filter-checkbox input { display: none; }
.filter-checkbox .toggle {
    position: relative;
    width: 40px;
    height: 22px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 11px;
    transition: all .2s;
    flex-shrink: 0;
}
.filter-checkbox .toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--text2);
    border-radius: 50%;
    transition: all .2s;
}
.filter-checkbox input:checked + .toggle {
    background: var(--accent);
    border-color: var(--accent);
}
.filter-checkbox input:checked + .toggle::after {
    left: 20px;
    background: #fff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}
.pagination a {
    background: var(--bg3);
    color: var(--text2);
    border: 1px solid var(--border);
}
.pagination a:hover { color: #fff; border-color: var(--accent); }
.pagination span.current {
    background: var(--accent);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 30px 20px;
    margin-top: auto;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-text { color: var(--text2); font-size: 13px; }

/* Budget/Box office */
.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.finance-card {
    padding: 16px;
    background: var(--bg3);
    border-radius: 10px;
    text-align: center;
}
.finance-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.finance-label {
    font-size: 12px;
    color: var(--text2);
    margin-top: 4px;
}

/* Auth */
.auth-page {
    max-width: 400px;
    margin: 40px auto;
}
.auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}
.auth-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.auth-field { margin-bottom: 16px; }
.auth-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}
.auth-input:focus { border-color: var(--accent); }
.auth-error {
    background: rgba(255,0,0,.1);
    border: 1px solid rgba(255,0,0,.3);
    border-radius: 8px;
    padding: 10px 14px;
    color: #ff6666;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}
.auth-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text2);
}
.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    white-space: nowrap;
}
.user-menu .user-name { color: #fff; font-weight: 500; }
.user-menu .user-logout { color: var(--text2); font-size: 13px; }
.user-menu .user-logout:hover { color: var(--accent2); }
.nav-auth-btn {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text2);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all .2s;
}
.nav-auth-btn:hover { color: #fff; border-color: var(--accent); }

/* Preference stats */
.pref-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pref-block {
    flex: 1;
    min-width: 250px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
}
.pref-label {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.pref-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.pref-row:last-child { margin-bottom: 0; }
.pref-row-name {
    width: 100px;
    flex-shrink: 0;
    font-size: 13px;
    color: var(--text);
    text-align: right;
}
.pref-row-bar {
    flex: 1;
    height: 8px;
    background: var(--bg3);
    border-radius: 4px;
    overflow: hidden;
}
.pref-row-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    transition: width .3s;
}
.pref-row-pct {
    width: 36px;
    flex-shrink: 0;
    font-size: 13px;
    color: var(--accent2);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner { gap: 10px; flex-wrap: wrap; }
    .nav { display: none; flex-direction: column; width: 100%; gap: 0; background: var(--bg2); border-top: 1px solid var(--border); padding: 8px 0; }
    .nav.open { display: flex; }
    .nav a { padding: 10px 16px; border-radius: 0; }
    .burger { display: block; }
    .search-box { width: 100%; order: 10; }
    .movie-hero { flex-direction: column; }
    .movie-poster { width: 200px; margin: 0 auto; }
    .actor-hero { flex-direction: column; align-items: center; text-align: center; }
    .actor-main-photo { width: 180px; }
    .movies-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .movie-title { font-size: 24px; }
    .movie-ratings { flex-wrap: wrap; }
    .filters { flex-direction: column; }
    .filter-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-group-wide { grid-column: span 2; }
    .filter-group-full { grid-column: 1 / -1; }
    .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
    background: none;
    border: none;
    padding: 20px;
    line-height: 1;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* Soundtracks */
.soundtrack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg3);
    border-radius: 8px;
    margin-bottom: 6px;
}
.soundtrack-item .st-icon {
    font-size: 20px;
    color: var(--accent);
}
.soundtrack-item .st-name {
    font-size: 14px;
    color: #fff;
    flex: 1;
}
.soundtrack-item .st-link {
    font-size: 13px;
}

/* No poster placeholder */
.no-poster-sm {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    color: var(--text2);
    font-size: 32px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text2); }
.breadcrumbs a:hover { color: var(--accent2); }
.breadcrumbs span { margin: 0 6px; }

/* Type badge */
.type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.type-movie { background: rgba(255,85,0,.15); color: var(--accent2); }
.type-serial { background: rgba(59,179,59,.15); color: var(--green); }
