/* ============================================================
   Premium Dark Theme — foxporn2
   Old theme backed up as styles.old.css
   ============================================================ */

:root {
    --bg: #0c0c11;
    --surface: #15151c;
    --surface-2: #1c1c26;
    --border: #232330;
    --text: #f2f2f5;
    --muted: #9a9aa5;
    --accent: #ff2e88;
    --accent-hover: #ff4da0;
    --accent-2: #a855f7;
    --green: #46d369;
    --radius: 12px;
}

/* ---------- Reset / base ---------- */
body,html,div,p,a,ul,li,input,button,form,textarea,span,img,h1,h2,h3 { margin: 0; padding: 0; }
*, *:before, *:after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 14px;
}

li { list-style-type: none; }
img { display: block; max-width: 100%; }
a { color: var(--text); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }
input, button { font-family: inherit; }

h2 { margin: 26px 8px 4px; font-size: 20px; line-height: 24px; font-weight: bold; text-transform: uppercase; letter-spacing: .5px; }
h2 i { color: var(--accent); margin-right: 6px; }

/* ---------- Layout ---------- */
.wrap { margin: 0 auto; max-width: 1900px; width: 99%; position: relative; }
.left-col { display: none; }
.right-col { min-width: 0; padding-bottom: 20px; }

/* ---------- Header ---------- */
.head {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(12,12,17,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}
.head.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.head-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; padding: 12px 4px; }

.open {
    cursor: pointer;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 20px;
    border-radius: 8px;
    color: var(--text);
    flex: 0 0 auto;
}
.open:hover, .open.active { color: var(--accent); background: var(--surface-2); }

.logo { flex: 0 0 auto; }
.logo a { display: block; font-size: 28px; line-height: 40px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--text); }
.logo a span { color: var(--accent); }
.logo a:hover { color: var(--text); }

.head-search { flex: 1 1 100%; order: 3; }
.head-search form { position: relative; max-width: 680px; margin: 0 auto; }
.head-search input {
    width: 100%;
    height: 46px;
    padding: 0 56px 0 20px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    outline: none;
    color: var(--text);
    font-size: 15px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.head-search input::placeholder { color: var(--muted); }
.head-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,46,136,0.15); }
.head-search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 46px;
    height: 36px;
    border: 0 none;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s ease;
}
.head-search button:hover { background: var(--accent-hover); }

.head-actions { display: none; align-items: center; gap: 10px; flex: 0 0 auto; }
.btn-pill, .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}
.btn-pill { border: 1px solid var(--border); background: var(--surface-2); color: var(--text); }
.btn-pill:hover { border-color: var(--accent); color: var(--accent); }
.btn-cta { border: 0 none; background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-cta:hover { color: #fff; filter: brightness(1.1); }

/* ---------- Main nav ---------- */
.mainnav { display: none; border-top: 1px solid var(--border); }
.mainnav ul { display: flex; align-items: center; gap: 4px; overflow: visible; }
.mainnav li { position: relative; flex: 0 0 auto; }
.mainnav li a {
    display: block;
    padding: 14px 14px 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text);
    border-bottom: 3px solid transparent;
}
.mainnav li a:hover { color: var(--accent); }
.mainnav li.active a, .mainnav li a.active, .mainnav li.active a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Categories dropdown */
.mainnav .has-drop .drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    padding: 8px;
    z-index: 1000;
}
.mainnav .has-drop:hover .drop { display: block; }
.mainnav .drop .cats-list { padding: 0; }
.mainnav .drop .cats-list li a {
    display: flex;
    justify-content: space-between;
    padding: 9px 12px;
    font-size: 14px;
    font-weight: normal;
    text-transform: capitalize;
    border-bottom: 0 none;
    border-radius: 8px;
    color: var(--text);
}
.mainnav .drop .cats-list li a:hover { background: var(--surface-2); color: var(--accent); }

/* ---------- Section / video titles ---------- */
.section-title {
    margin: 26px 8px 6px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: var(--text);
}
.video-title {
    margin: 14px 0 0;
    font-size: 19px;
    line-height: 25px;
    font-weight: 700;
    color: var(--text);
}

/* ---------- Sidebar ---------- */
.side-close { display: flex; justify-content: flex-end; padding: 12px 14px 0; font-size: 24px; color: var(--muted); cursor: pointer; }
.side-close:hover { color: var(--accent); }

.side-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.side-backdrop.show { opacity: 1; pointer-events: auto; }

.sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--surface);
    border-right: 0 none;
    z-index: 10002;
    transition: left .25s ease;
    padding-bottom: 30px;
}
.sidebar.open { left: 0; box-shadow: 0 0 50px rgba(0,0,0,0.6); }

.sidebar-val {
    padding: 0 14px;
    margin: 26px 0 8px;
    font-size: 13px;
    font-weight: bold;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}
.sidebar-val i { color: var(--accent); margin-right: 6px; }

/* Sidebar search */
.sidebar .search { padding: 12px 14px 0; }
.sidebar .search form { position: relative; }
.sidebar .search input {
    width: 100%;
    height: 44px;
    padding: 0 48px 0 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    color: var(--text);
    font-size: 14px;
}
.sidebar .search input::placeholder { color: var(--muted); }
.sidebar .search input:focus { border-color: var(--accent); }
.sidebar .search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 38px;
    height: 34px;
    border: 0 none;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
.sidebar .search button:hover { background: var(--accent-hover); }

/* Sidebar menu */
.menu { padding: 0 8px; }
.menu li { margin-top: 2px; }
.menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    text-transform: uppercase;
    color: var(--text);
}
.menu li a i { color: var(--muted); width: 18px; text-align: center; }
.menu li a:hover, .menu li a.active, .menu li.active a { background: var(--accent); color: #fff; }
.menu li a:hover i, .menu li a.active i, .menu li.active a i { color: #fff; }

/* Sidebar categories */
.cats-list { padding: 0 8px; }
.cats-list li a {
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--text);
}
.cats-list li a span:first-child { display: flex; align-items: center; gap: 10px; }
.cats-list li a i { color: var(--muted); }
.cats-list li a span:last-child { font-size: 11px; color: var(--muted); }
.cats-list li a:hover { background: var(--surface-2); color: var(--accent); }
.cats-list li a:hover i { color: var(--accent); }
.cats-list li.to-all { font-weight: bold; text-transform: uppercase; }

/* Sidebar last searches */
.searches-list { padding: 4px 10px 0; }
.searches-list li a {
    display: block;
    margin: 4px 0 0;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
}
.searches-list li a i { color: var(--accent); margin-right: 6px; }
.searches-list li a:hover { color: var(--text); }

.videos-list { display: none; }

/* ---------- Video cards grid ---------- */
.previews-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 14px 8px 0;
}

.preview-ins {
    position: relative;
}

.preview a { display: block; color: var(--text); }

.preview-img { position: relative; padding-bottom: 56.25%; background: #000; overflow: hidden; border-radius: 10px; }
.preview-img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.preview-ins:hover .preview-img img { transform: scale(1.06); }
.preview-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%);
    opacity: 0;
    transition: opacity .2s ease;
}
.preview-ins:hover .preview-img::after { opacity: 1; }

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    font-size: 46px;
    color: #fff;
    opacity: 0;
    z-index: 2;
    text-shadow: 0 2px 14px rgba(0,0,0,0.7);
    transition: opacity .2s ease;
}
.preview-ins:hover .play { opacity: 1; }

.preview-anim {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ---------- Up next autoplay overlay ---------- */
.upnext {
    position: absolute;
    inset: 0;
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.82);
}
.upnext-in { text-align: center; padding: 20px; max-width: 85%; }
.upnext-label { display: block; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.upnext-label b { color: var(--accent); font-size: 16px; }
.upnext-title { display: block; margin-top: 10px; font-size: 20px; line-height: 26px; font-weight: 700; color: #fff; }
.upnext-btns { margin-top: 18px; display: flex; gap: 10px; justify-content: center; }
.upnext-btns button { font-family: inherit; font-size: 14px; height: 42px; padding: 0 22px; border-radius: 999px; cursor: pointer; }
.upnext-play { border: 0 none; background: var(--accent); color: #fff; font-weight: bold; }
.upnext-play:hover { background: var(--accent-hover); }
.upnext-cancel { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.upnext-cancel:hover { color: #fff; }

/* ---------- Retention (P1) ---------- */
/* Continue watching progress bar */
.progress-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255,255,255,0.25);
    z-index: 2;
}
.progress-line span { display: block; height: 100%; background: var(--accent); }

/* Favorite button active state */
.wact-fav.faved { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Favorites empty state */
.fav-empty { margin: 50px 8px; text-align: center; color: var(--muted); font-size: 15px; line-height: 22px; }
.fav-empty i { display: block; font-size: 36px; color: var(--accent); margin-bottom: 12px; }

/* Live search suggestions */
.search-suggest {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    z-index: 9000;
    overflow: hidden;
}
.search-suggest.show { display: block; }
.search-suggest a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.search-suggest a:last-child { border-bottom: 0 none; }
.search-suggest a i { color: var(--muted); }
.search-suggest a:hover { background: var(--surface-2); color: var(--accent); }

.badges {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}
.duration {
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 11px;
    line-height: 16px;
    padding: 1px 7px;
    border-radius: 6px;
}
.duration i { margin-right: 3px; }

.hd {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .5px;
    line-height: 16px;
    padding: 1px 7px;
    border-radius: 6px;
}

.name {
    font-size: 14px;
    line-height: 19px;
    height: 38px;
    margin: 8px 2px 0;
    font-weight: 700;
    color: var(--text);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 5px 2px 0;
    font-size: 12px;
    color: var(--muted);
}
.card-meta i { margin-right: 4px; }
.card-meta .likes, .card-meta .likes i { color: var(--accent); }

/* Legacy meta blocks (kept harmless) */
.preview .meta { position: absolute; display: none; }

/* ---------- Pagination ---------- */
.pages, .paginator { margin: 22px 8px 0; text-align: center; font-size: 0; }
.pages ul, ul.paginator { display: inline-flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.pages li, .paginator li { display: inline-block; }
.pages a, .pages span,
.paginator a, .paginator span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: bold;
}
.pages a:hover, .paginator a:hover,
.pages li.active a, .paginator li.active a,
.pages a.active, .paginator a.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pages li.disabled span, .pages li.disabled a,
.paginator li.disabled span, .paginator li.disabled a { opacity: .4; cursor: default; }
.pages li.disabled a:hover, .paginator li.disabled a:hover { background: var(--surface); border-color: var(--border); color: var(--text); }

/* ---------- Ad blocks ---------- */
.brs-block {
    margin: 20px 8px 0;
    padding: 12px 0 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0;
}
.br {
    width: 300px;
    height: 250px;
    margin: 8px 6px 0;
    display: inline-block;
    vertical-align: top;
    background: var(--surface-2);
    border-radius: 8px;
    overflow: hidden;
}
.br-2, .br-3, .br-4, .br-5 { display: none; }

.full-bns-block { padding: 0 0 10px; text-align: center; font-size: 0; }
.full-bn { margin: 10px 5px 0; display: inline-block; vertical-align: top; width: 300px; height: 250px; background: var(--surface-2); border-radius: 8px; overflow: hidden; }
.full-bn-2, .full-bn-3 { display: none; }

/* ---------- Tag / category chip lists ---------- */
.list { padding: 8px 6px 0; font-size: 0; }
.list li { page-break-inside: avoid; break-inside: avoid; }
.list a { display: block; }
.list span {
    display: block;
    margin: 5px 3px 0;
    padding: 0 14px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: background .15s ease, border-color .15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list span i { color: var(--accent); margin-right: 6px; }
.list a:hover span { background: var(--accent); border-color: var(--accent); color: #fff; }
.list a:hover span i { color: #fff; }

.tag-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 8px 0; }
.tag-chips a {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text);
    text-transform: capitalize;
}
.tag-chips a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Watch page ---------- */
.full-wrap { margin: 14px 8px 0; }

.video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.video iframe, .video object, .video embed, .video video, .video source { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }

.full-meta-wr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 26px;
    margin-top: 12px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ---------- Watch page (reference style) ---------- */
.watch-body { padding: 0 2px; }
.watch-meta { margin-top: 8px; font-size: 13px; color: var(--muted); display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.watch-meta .sep { opacity: .5; }

.watch-actions { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.wact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    transition: background .15s ease, border-color .15s ease;
}
a.wact:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.wact-rating { color: var(--muted); }
.wact-rating i { color: var(--accent); }

.info-rows { margin-top: 18px; }
.info-row { margin-top: 8px; font-size: 14px; line-height: 22px; color: var(--muted); }
.info-label { display: inline-block; min-width: 92px; margin-right: 8px; font-weight: 700; color: var(--text); }
.info-row a { color: var(--muted); margin-right: 14px; }
.info-row a:hover { color: var(--accent); }

.report-link { display: block; text-align: right; margin-top: 20px; font-size: 13px; color: var(--muted); }
.report-link:hover { color: var(--accent); }

/* Mobile: player edge-to-edge (height follows 16:9 automatically) */
@media all and (max-width:929px) {
    .wrap-watch { width: 100%; }
    .wrap-watch .full-wrap { margin: 10px 0 0; }
    .wrap-watch .video { border-radius: 0; border-left: 0 none; border-right: 0 none; }
    .wrap-watch .watch-body { padding: 0 12px; }
}
.full-meta ul { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.full-meta li { font-size: 13px; color: var(--muted); text-transform: uppercase; }
.full-meta a, .full-meta div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    transition: background .15s ease, border-color .15s ease;
}
.full-meta span.val { color: var(--text); font-weight: bold; }
.full-meta li.like a, .full-meta li.dislike a { font-size: 17px; cursor: pointer; }
.full-meta li.like a:hover { background: #2da44e; border-color: #2da44e; color: #fff; }
.full-meta li.dislike a:hover { background: #d33f3f; border-color: #d33f3f; color: #fff; }
.full-meta a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.full-meta span.tag { color: var(--accent); font-weight: bold; }

/* On-player ad overlay (kept) */
.on-player-pl { display: none; background: rgba(0,0,0,0.5); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5000; }
.on-player { position: absolute; top: 50%; left: 50%; width: 300px; height: 250px; z-index: 5500; margin: -125px 0 0 -150px; overflow: visible; }
.close { position: absolute; top: 0; right: 0; width: 30px; text-align: center; height: 30px; line-height: 30px; font-size: 18px; cursor: pointer; background: rgba(0,0,0,0.8); color: #fff; }
.bot-close { position: absolute; text-transform: uppercase; left: 50%; margin-left: -80px; bottom: 0; width: 160px; text-align: center; height: 30px; line-height: 30px; font-size: 14px; cursor: pointer; background: rgba(0,0,0,0.8); color: #fff; }
.close:hover, .bot-close:hover { background: var(--accent); }
.on-player-sp { background: #282828; width: 300px; height: 250px; overflow: hidden; }
.on-player-sp iframe { width: 300px !important; height: 250px !important; position: static; }

/* ---------- Static pages / generic container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 18px 12px; }
.container .row { margin-top: 12px; line-height: 20px; color: var(--muted); }
.container .row.title { margin-top: 22px; }
.container .title h1 { font-size: 24px; line-height: 28px; text-transform: uppercase; color: var(--text); }
.container .title h2.page-title { font-size: 24px; line-height: 28px; text-transform: uppercase; color: var(--text); margin: 0; }
.container a { color: var(--accent); }
.container ol, .container ul.bullet { padding-left: 20px; }
.container ol li, .container ul.bullet li { list-style-type: decimal; margin-top: 8px; }
.container ul.bullet li { list-style-type: disc; }

.alert { margin: 14px 8px 0; padding: 12px 16px; border-radius: 8px; border: 1px solid; }
.alert-danger { background: rgba(229,9,20,0.12); border-color: rgba(229,9,20,0.4); color: #ff8087; }
.alert-success { background: rgba(70,211,105,0.1); border-color: rgba(70,211,105,0.4); color: var(--green); }

/* SEO text block */
.seo-text { margin: 22px 8px 0; font-size: 13px; line-height: 19px; color: var(--muted); text-align: justify; }

/* ---------- Footer ---------- */
.foot-links { display: none; }

.foot {
    margin-top: 30px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 24px 0 20px;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: var(--muted);
}
.foot p { margin: 8px auto 0; max-width: 900px; padding: 0 12px; }
.foot p span { color: var(--text); }
.foot ul { padding-top: 10px; }
.foot li { margin: 6px 8px 0; display: inline-block; }
.foot a { color: var(--muted); text-decoration: underline; }
.foot a:hover { color: var(--accent); text-decoration: none; }

/* ---------- Responsive ---------- */
@media all and (min-width:400px) {
    .logo a { font-size: 30px; }
}

@media all and (min-width:640px) {
    .br-2, .full-bn-2 { display: inline-block; }
    .on-player-pl { display: block; }
    .list ul { column-count: 2; }
    .head-actions { display: flex; }
}

@media all and (min-width:660px) {
    .previews-block { grid-template-columns: repeat(3, 1fr); }
}

@media all and (min-width:930px) {
    .open, .side-close { display: none; }
    .head-row { flex-wrap: nowrap; gap: 18px; padding: 14px 4px; }
    .head-search { flex: 1 1 auto; order: 0; }
    .mainnav { display: block; }

    .previews-block { grid-template-columns: repeat(4, 1fr); }

    .foot-links {
        display: block;
        margin-top: 30px;
        background: var(--surface);
        border-top: 1px solid var(--border);
        padding: 26px 0;
    }
    .foot-cols { display: flex; gap: 34px; }
    .foot-col { flex: 1; min-width: 0; }
    .foot-col-title { font-size: 13px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
    .foot-col-title i { color: var(--accent); margin-right: 6px; }
    .foot-col .menu, .foot-col .cats-list, .foot-col .searches-list { padding: 0; }
    .foot-col .menu li a { height: 34px; font-size: 14px; padding: 0 8px; text-transform: none; }
    .foot-col .cats-list li a { height: 32px; font-size: 14px; padding: 0 8px; }
    .foot-col .searches-list li a { font-size: 13px; padding: 6px 8px; }
    .foot { margin-top: 0; border-top: 0 none; }

    .list ul { column-count: 3; }
    .full-wrap { margin: 16px auto 0; max-width: 1280px; }
    .full-meta-wr { padding: 14px; }
}

@media all and (min-width:1260px) {
    .previews-block { grid-template-columns: repeat(5, 1fr); }
    .br-3 { display: inline-block; }
    .list ul { column-count: 4; }
    .full-bns-block { width: 320px; }
}

@media all and (min-width:1590px) {
    .previews-block { grid-template-columns: repeat(6, 1fr); }
    .br-4 { display: inline-block; }
    .list ul { column-count: 5; }
    h2 { font-size: 22px; }
}

@media all and (min-width:1650px) {
    .full-bn-3 { display: inline-block; }
}

@media all and (min-width:1850px) {
    .br-5 { display: inline-block; }
    .list ul { column-count: 6; }
}
