/* WXPorn - Beeg Style Theme */

/* ========================================
   Reset & Base
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-sidebar: #111111;
    --bg-card: #1a1a1a;
    --bg-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent-orange: #ff6600;
    --accent-red: #e53935;
    --border-color: #222222;
    --sidebar-width-collapsed: 70px;
    --sidebar-width-expanded: 240px;
    --header-height: 56px;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

/* ========================================
   WordPress Admin Bar Fix
======================================== */
body.admin-bar .beeg-header {
    top: 32px;
}

body.admin-bar .beeg-sidebar {
    top: 32px;
    padding-top: calc(var(--header-height) + 1rem);
}

body.admin-bar .beeg-layout {
    padding-top: calc(var(--header-height) + 32px);
}

body.admin-bar .sidebar-toggle {
    top: calc(var(--header-height) + 32px + 1rem);
}

@media screen and (max-width: 782px) {
    body.admin-bar .beeg-header {
        top: 46px;
    }
    
    body.admin-bar .beeg-sidebar {
        top: 46px;
    }
    
    body.admin-bar .beeg-layout {
        padding-top: calc(var(--header-height) + 46px);
    }
    
    body.admin-bar .sidebar-toggle {
        top: calc(var(--header-height) + 46px + 1rem);
    }
}

/* ========================================
   Header
======================================== */
.beeg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(18, 18, 20, 0.95) 0%, rgba(18, 18, 20, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
}

.beeg-header__inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.5rem 0 0;
    gap: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.beeg-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    flex-shrink: 0;
    text-transform: lowercase;
    width: var(--sidebar-width-collapsed);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beeg-logo__img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.beeg-logo span {
    color: var(--accent-orange);
}

.beeg-search {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.beeg-search i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.beeg-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.beeg-search input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.beeg-search input::placeholder {
    color: var(--text-muted);
}

.beeg-header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.beeg-header__user {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.beeg-header__user:hover {
    color: var(--text-primary);
}

/* ========================================
   Layout
======================================== */
.beeg-layout {
    display: flex;
    min-height: 100vh;
    padding-top: var(--header-height);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: calc(var(--header-height) + 1rem);
    left: 1rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    background-color: var(--bg-sidebar);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-toggle:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

/* ========================================
   Sidebar
======================================== */
.beeg-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width-collapsed);
    background: linear-gradient(180deg, 
        rgba(30, 25, 22, 0.95) 0%,
        rgba(24, 24, 27, 0.98) 40%,
        rgba(24, 24, 27, 1) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: calc(var(--header-height) + 1rem) 0 1rem 0;
    z-index: 900;
    transition: width 0.25s ease;
}

.beeg-sidebar:hover,
.beeg-sidebar.expanded {
    width: var(--sidebar-width-expanded);
}

.beeg-sidebar:hover .sidebar-nav__item span,
.beeg-sidebar.expanded .sidebar-nav__item span {
    opacity: 1;
    width: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-nav__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.sidebar-nav__item:hover,
.sidebar-nav__item.active {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.sidebar-nav__item.active {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 0 25px 25px 0;
    margin-right: 0.5rem;
}

.sidebar-nav__item i {
    width: 24px;
    text-align: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sidebar-nav__item span {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, width 0.2s ease;
}

.sidebar-nav__divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.75rem 1.25rem;
}

.sidebar-nav__label {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ========================================
   Main Content
======================================== */
.beeg-main {
    flex: 1;
    margin-left: var(--sidebar-width-collapsed);
    padding: 1.5rem 2rem;
    min-width: 0;
    transition: margin-left 0.25s ease;
}

/* Top Blur Section - Models, Channels, Categories */
.top-blur-section {
    position: relative;
    margin: -1.5rem -2rem 1.5rem calc(-2rem - var(--sidebar-width-collapsed));
    padding: 1.5rem 2rem 2rem calc(2rem + var(--sidebar-width-collapsed));
    background: linear-gradient(180deg, 
        rgba(255, 120, 50, 0.12) 0%,
        rgba(180, 80, 30, 0.08) 30%,
        rgba(40, 30, 25, 0.3) 60%,
        transparent 100%
    );
}

/* ========================================
   Models Row (Horizontal Scroll)
======================================== */
.models-row {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.models-row::-webkit-scrollbar {
    display: none;
}

.models-row__inner {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.model-avatar-link {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.model-avatar-link__img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.model-avatar-link:hover .model-avatar-link__img {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.model-avatar-link__name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    max-width: 72px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-avatar-link:hover .model-avatar-link__name {
    color: var(--text-primary);
}

/* Beeg card model avatar styles */
.model-avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.model-avatar-link:hover .model-avatar-circle {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.model-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-avatar-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    max-width: 72px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-avatar-link:hover .model-avatar-name {
    color: var(--text-primary);
}

.models-row__scroll {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.models-row__scroll::-webkit-scrollbar {
    display: none;
}

/* ========================================
   Channels Row (Horizontal) - Pill Style
======================================== */
.channels-row {
    margin-bottom: 1.5rem;
}

.channels-row__inner {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0;
}

.channels-row__inner::-webkit-scrollbar {
    display: none;
}

.channel-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: background-color 0.2s, border-color 0.2s;
}

.channel-pill:hover {
    background: var(--bg-hover);
    border-color: var(--text-muted);
}

.channel-pill__logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-secondary);
}

.channel-pill__initial {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.channel-pill__name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

/* ========================================
   Category Pills
======================================== */
.category-pills {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.category-pills__inner {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.category-pill {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background-color: var(--bg-card);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.2s;
    white-space: nowrap;
}

.category-pill:hover,
.category-pill.active {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.category-pill.active {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

/* ========================================
   Video Grid
======================================== */
.beeg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ========================================
   Video Card (Beeg Style)
======================================== */
.beeg-card {
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.beeg-card:hover {
    transform: translateY(-2px);
}

.beeg-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-card);
}

.beeg-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.beeg-card__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
    background: #000;
    pointer-events: none;
}

/* Hide video controls on preview video */
.preview-video::-webkit-media-controls {
    display: none !important;
}

.preview-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.preview-video::-webkit-media-controls-panel {
    display: none !important;
}

.preview-video::-webkit-media-controls-play-button,
.preview-video::-webkit-media-controls-volume-slider,
.preview-video::-webkit-media-controls-mute-button,
.preview-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

video::-moz-media-controls {
    display: none !important;
}

.beeg-card:hover .beeg-card__thumb img {
    transform: scale(1.05);
}

.beeg-card.previewing .beeg-card__thumb img {
    opacity: 0;
}

.beeg-card.previewing .beeg-card__preview {
    opacity: 1;
}

.beeg-card__duration {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.75);
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    font-style: italic;
}

.beeg-card__quality {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--accent-orange);
    color: var(--text-primary);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.beeg-card__channel {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    overflow: hidden;
    transition: transform 0.2s ease;
    z-index: 15;
}

.beeg-card__channel:hover {
    transform: scale(1.1);
}

.beeg-card__channel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beeg-card__info {
    padding: 0.75rem 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.beeg-card__model-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.beeg-card__details {
    flex: 1;
    min-width: 0;
}

.beeg-card__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.beeg-card__title a {
    color: inherit;
}

.beeg-card__title a:hover {
    color: var(--text-primary);
}

.beeg-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.beeg-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.beeg-card__meta .separator {
    color: var(--text-muted);
}

/* Beeg Card extended styles */
.beeg-card__link {
    display: block;
}

.beeg-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    color: var(--text-muted);
    font-size: 2rem;
}

.beeg-card__meta-row {
    margin-bottom: 0.5rem;
}

.beeg-card__model {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.beeg-card__model:hover {
    color: var(--accent-orange);
}

.beeg-card__model-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.beeg-card__model-initial {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.beeg-card__model-name {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.beeg-card__stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.beeg-card__views::after {
    content: none;
}

.beeg-card__likes i {
    margin-right: 0.25rem;
}

.beeg-card__channel {
    margin-left: auto;
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background-color 0.2s;
    z-index: 99999;
}


/* Channel badge on thumbnail - bottom right */
.beeg-card__channel-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    max-width: 80px;
    max-height: 32px;
    z-index: 5;
}

.beeg-card__channel-badge img {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.beeg-card__channel-badge span {
    display: block;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Author/Model row */
.beeg-card__author {
    margin-bottom: 0.25rem;
}

.beeg-card__author-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.beeg-card__author-link:hover {
    color: var(--text-primary);
}

.beeg-card__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.beeg-card__author-initial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-hover);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.beeg-card__author-name {
    font-weight: 500;
}

.beeg-card__model-name {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.beeg-card__model-name:hover {
    color: var(--accent-orange);
}

/* ========================================
   Pagination
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background-color: var(--bg-card);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.pagination a:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.pagination .current {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

/* Beeg Pagination */
.beeg-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.beeg-pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.beeg-pagination li {
    display: inline-flex;
}

.beeg-pagination a,
.beeg-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background-color: var(--bg-card);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.beeg-pagination a:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.beeg-pagination .current {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

/* Empty State (Beeg Style) */
.beeg-empty {
    text-align: center;
    padding: 6rem 2rem;
}

.beeg-empty i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.beeg-empty h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.beeg-empty p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   Single Video Page
======================================== */
.single-video {
    max-width: 1200px;
    margin: 0 auto;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.video-player-wrapper video,
.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1rem 0;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.video-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.video-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: var(--bg-card);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.video-action-btn:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

.video-action-btn.liked {
    color: var(--accent-red);
}

.video-action-btn.active {
    color: var(--accent-blue);
    background-color: rgba(59, 130, 246, 0.15);
}

.video-action-btn.active:hover {
    background-color: rgba(59, 130, 246, 0.25);
}

@keyframes animate-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.animate-bounce {
    animation: animate-bounce 0.3s ease;
}

/* ========================================
   Model Page
======================================== */
.model-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.model-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.model-info h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.model-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.model-stat {
    display: flex;
    flex-direction: column;
}

.model-stat__value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.model-stat__label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.model-bio {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Archive Pages
======================================== */
.archive-header {
    margin-bottom: 2rem;
}

.archive-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.archive-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ========================================
   Footer
======================================== */
.beeg-footer {
    margin-left: var(--sidebar-width-collapsed);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
    border-top: 1px solid var(--border-color);
    transition: margin-left 0.25s ease;
}

.beeg-footer a {
    color: var(--text-secondary);
}

.beeg-footer a:hover {
    color: var(--text-primary);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .beeg-sidebar {
        width: var(--sidebar-width-collapsed);
    }
    
    .beeg-sidebar:hover {
        width: var(--sidebar-width-expanded);
    }
    
    .beeg-main {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 50px;
    }
    
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .beeg-sidebar {
        transform: translateX(-100%);
        width: var(--sidebar-width-expanded);
    }
    
    .beeg-sidebar.expanded {
        transform: translateX(0);
    }
    
    .beeg-sidebar.expanded .sidebar-nav__item span {
        opacity: 1;
        width: auto;
    }
    
    .beeg-main {
        margin-left: 0;
    }
    
    .beeg-footer {
        margin-left: 0;
    }
    
    /* Overlay when sidebar is open on mobile */
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 899;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .beeg-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .beeg-header__inner {
        gap: 0.75rem;
    }
    
    .beeg-logo {
        font-size: 1.25rem;
    }
    
    .model-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .model-avatar-large {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .beeg-grid {
        grid-template-columns: 1fr;
    }
    
    .model-avatar-link__img {
        width: 56px;
        height: 56px;
    }
    
    .models-row__inner {
        gap: 0.875rem;
    }
}

/* ========================================
   Channels
======================================== */
/* Channels Row (Horizontal Scroll) */
.channels-row {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.channels-row::-webkit-scrollbar {
    display: none;
}

.channels-row__inner {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.channel-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background-color: var(--bg-card);
    border-radius: 30px;
    transition: all 0.2s;
    white-space: nowrap;
}

.channel-pill:hover {
    background-color: var(--bg-hover);
}

.channel-pill__logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-pill__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-pill__initial {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.channel-pill__name {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Channels Grid (Archive) */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--bg-card);
    border-radius: 12px;
    transition: all 0.2s;
}

.channel-card:hover {
    background-color: var(--bg-hover);
    transform: translateY(-2px);
}

.channel-card__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.channel-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-card__initial {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.channel-card__name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.channel-card__videos {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Channel Profile Page - Beeg Style */
.channel-profile {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.channel-profile__logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 50%, #ffcc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3px;
}

.channel-profile__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.channel-profile__initial {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: var(--bg-primary);
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-profile__info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.channel-profile__header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.channel-profile__name {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.channel-profile__verified {
    flex-shrink: 0;
}

.channel-profile__stats {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.channel-profile__stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.channel-profile__stat span {
    color: var(--text-muted);
}

.channel-profile__actions {
    display: flex;
    gap: 0.75rem;
}

.channel-profile__follow,
.channel-profile__more {
    height: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.channel-profile__more {
    width: 40px;
    padding: 0;
    border-radius: 50%;
}

.channel-profile__follow:hover,
.channel-profile__more:hover {
    background: var(--bg-hover);
    border-color: var(--text-muted);
}

.channel-profile__follow.following {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.channel-profile__follow.following:hover {
    background: #cc5200;
    border-color: #cc5200;
}

.channel-profile__follow:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.channel-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.channel-description p {
    margin: 0;
}

.channel-links-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.channel-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.channel-link-pill:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.channel-profile-link {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.channel-profile-link a {
    color: var(--accent-orange);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.channel-profile-link a:hover {
    text-decoration: underline;
}

/* Video Card Channel Logo */
.beeg-card__channel-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}

.beeg-card__channel-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beeg-card__channel-initial {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.beeg-card__channel-name {
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 500;
}

.beeg-card__meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .channel-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .channel-profile__logo {
        width: 80px;
        height: 80px;
    }
    
    .channel-profile__initial {
        width: 74px;
        height: 74px;
        font-size: 1.5rem;
    }
    
    .channel-profile__info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .channel-profile__header {
        align-items: center;
    }
    
    .channel-links-row {
        justify-content: center;
    }
    
    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* ========================================
   Utility Classes
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   Plyr Video Player Override
======================================== */
.plyr--video {
    border-radius: 8px;
}

.plyr__control--overlaid {
    background: var(--accent-orange);
}

.plyr--full-ui input[type=range] {
    color: var(--accent-orange);
}

/* ========================================
   Lightbox (for model galleries)
======================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 1rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ========================================
   Models Grid (Archive)
======================================== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.model-card {
    text-align: center;
}

.model-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--border-color);
    transition: border-color 0.2s;
}

.model-card:hover .model-card__avatar {
    border-color: var(--accent-orange);
}

.model-card__name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.model-card__videos {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Models Filters */
.models-filters {
    margin-bottom: 1.5rem;
}

.models-filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.models-search-inline {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.models-search-inline i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.models-search-inline input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.models-search-inline input:focus {
    outline: none;
    border-color: var(--text-muted);
}

.models-search-inline input::placeholder {
    color: var(--text-muted);
}

.models-sort select {
    padding: 0.625rem 2rem 0.625rem 1rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.models-sort select:focus {
    outline: none;
    border-color: var(--text-muted);
}

/* ========================================
   Search Results
======================================== */
.search-results-header {
    margin-bottom: 2rem;
}

.search-results-header h1 {
    font-size: 1.25rem;
    font-weight: 500;
}

.search-results-header span {
    color: var(--accent-orange);
}

/* ========================================
   No Results / Empty State
======================================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state__icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state__title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.empty-state__text {
    color: var(--text-secondary);
}

/* ========================================
   Loading States
======================================== */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-muted);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   Single Video Page Additional Styles
======================================== */
.video-model-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.video-model-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background-color: var(--bg-card);
    border-radius: 30px;
    transition: background-color 0.2s;
}

.video-model-link:hover {
    background-color: var(--bg-hover);
}

.video-model-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.video-model-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.video-model-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.video-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.related-videos {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* ========================================
   Model Page Additional Styles
======================================== */
.model-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.model-social__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.2s;
}

.model-social__link:hover {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

.model-view-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.model-view-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.model-view-btn:hover {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.model-view-btn.active {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}

/* Model Gallery */
.model-gallery {
    margin-bottom: 2rem;
}

.model-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.model-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-card);
}

.model-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.model-gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Orientation Dropdown
======================================== */
.orientation-dropdown {
    position: relative;
    flex-shrink: 0;
}

.orientation-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.orientation-dropdown__toggle:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.orientation-dropdown__arrow {
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.orientation-dropdown.open .orientation-dropdown__arrow {
    transform: rotate(180deg);
}

.orientation-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background-color: rgba(30, 30, 35, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.orientation-dropdown.open .orientation-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.orientation-dropdown__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.orientation-dropdown__item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.orientation-dropdown__item.active {
    background-color: rgba(255, 255, 255, 0.12);
}

.orientation-dropdown__item span {
    flex: 1;
}

/* Orientation Icons */
.orientation-icon {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.1rem;
}

.orientation-icon.straight i:first-child {
    color: #e91e63; /* Pink for Venus */
}

.orientation-icon.straight i:last-child {
    color: #2196f3; /* Blue for Mars */
}

.orientation-icon.gay i {
    color: #2196f3; /* Blue for Mars */
}

.orientation-icon.trans i {
    color: #e91e63; /* Pink/Magenta for transgender */
}

/* Mobile adjustments for orientation dropdown */
@media screen and (max-width: 768px) {
    .orientation-dropdown__toggle {
        padding: 0.5rem;
    }
    
    .orientation-dropdown__menu {
        left: auto;
        right: 0;
    }
}

/* ========================================
   Account Page Styles
======================================== */
.account-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Account Alerts */
.account-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.account-alert--success {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.account-alert--error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Auth Card */
.account-auth {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
}

.account-auth__card {
    width: 100%;
    max-width: 420px;
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.account-auth__header {
    text-align: center;
    margin-bottom: 2rem;
}

.account-auth__header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.account-auth__header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.account-auth__footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.account-auth__footer a {
    color: var(--accent-orange);
    font-weight: 500;
    margin-left: 0.25rem;
}

.account-auth__footer a:hover {
    text-decoration: underline;
}

/* Form Styles */
.account-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group--inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent-orange);
}

.forgot-link {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.forgot-link:hover {
    color: var(--text-primary);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--accent-orange);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #e55c00;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* Account Dashboard */
.account-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Account Tabs */
.account-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.account-tabs::-webkit-scrollbar {
    display: none;
}

.account-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.account-tab:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.account-tab.active {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.account-tab i {
    font-size: 1rem;
}

/* Account Content */
.account-content {
    min-height: 400px;
}

.account-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.account-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.account-section__header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.account-section__header h2 i {
    color: var(--text-secondary);
}

/* Empty State */
.account-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.account-empty i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.account-empty p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Account Cards */
.account-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.account-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.account-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.account-card--form {
    margin-bottom: 1.5rem;
}

/* Profile Header */
.profile-header {
    position: relative;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
}

.profile-header__overlay {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    height: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.profile-header__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    object-fit: cover;
}

.profile-avatar-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.profile-upload-btn {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    backdrop-filter: blur(6px);
    transition: transform 120ms ease, background 120ms ease;
    cursor: pointer;
}

.profile-upload-btn:hover {
    background: rgba(255, 255, 255, 0.12);

}

.profile-upload-btn--avatar {
    bottom: 0;
    right: 0;
    transform: translate(25%, 25%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.profile-upload-btn--cover {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.profile-upload-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.profile-header__info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-header__info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.profile-header__joined {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* Account Actions List */
.account-actions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-action-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.account-action-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Playlist Grid */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
}

.playlist-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.playlist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.playlist-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    background-color: rgba(255, 255, 255, 0.05);
}

.playlist-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2rem;
    color: var(--text-muted);
}

.playlist-card__count {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-primary);
}

.playlist-card__info {
    padding: 1rem;
}

.playlist-card__info h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.playlist-card__visibility {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Models Grid for Saved Content */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .account-auth__card {
        padding: 1.5rem;
    }
    
    .account-tabs {
        gap: 0.25rem;
        padding: 0.375rem;
    }
    
    .account-tab {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .account-tab span {
        display: none;
    }
    
    .account-tab i {
        font-size: 1.125rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        height: 160px;
    }
    
    .profile-header__avatar {
        width: 70px;
        height: 70px;
    }
    
    .profile-header__info h1 {
        font-size: 1.125rem;
    }
    
    .account-cards {
        grid-template-columns: 1fr;
    }
    
    .playlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* ============================================
   TUBESITE CUSTOM VIDEO PLAYER
   ============================================ */

/* Custom player inside video-player wrapper */
.video-player-wrapper .ts-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
}

.ts-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    user-select: none;
}

.ts-player.ts-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    border-radius: 0 !important;
    aspect-ratio: unset !important;
}

.ts-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Loading Spinner */
.ts-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}

.ts-player.ts-loading .ts-loader {
    display: block;
}

.ts-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: ts-spin 0.8s linear infinite;
}

@keyframes ts-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Play Overlay */
.ts-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: opacity 0.3s, visibility 0.3s;
}

.ts-player.ts-playing .ts-play-overlay,
.ts-player.ts-loading .ts-play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ts-big-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.ts-big-play:hover {
    transform: scale(1.1);
    background: #ef4444;
}

.ts-big-play i {
    font-size: 32px;
    color: #fff;
    margin-left: 4px;
}

/* Controls Container */
.ts-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 16px 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 20;
}

.ts-player:hover .ts-controls,
.ts-player.ts-paused .ts-controls,
.ts-player:not(.ts-playing) .ts-controls,
.ts-player.ts-controls-visible .ts-controls {
    opacity: 1;
    visibility: visible;
}

/* Progress Bar */
.ts-progress-container {
    position: relative;
    margin-bottom: 12px;
    padding: 8px 0;
    cursor: pointer;
}

.ts-progress-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: height 0.15s;
}

.ts-progress-container:hover .ts-progress-bar {
    height: 6px;
}

.ts-progress-buffered {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    width: 0%;
}

.ts-progress-played {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 2px;
    width: 0%;
}

.ts-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.ts-progress-container:hover .ts-progress-handle {
    transform: translate(-50%, -50%) scale(1);
}

/* Preview Tooltip */
.ts-preview-tooltip {
    position: absolute;
    bottom: 24px;
    left: 0;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 30;
}

.ts-progress-container:hover .ts-preview-tooltip {
    display: flex;
}

.ts-preview-thumb {
    width: 160px;
    height: 90px;
    background: #0a0a0a;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    margin-bottom: 6px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.ts-preview-time {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Bottom Controls */
.ts-controls-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ts-controls-left,
.ts-controls-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Buttons */
.ts-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
}

.ts-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ts-btn i {
    font-size: 16px;
}

.ts-skip-back,
.ts-skip-forward {
    font-size: 14px;
}

.ts-skip-back span,
.ts-skip-forward span {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
}

/* Volume Control */
.ts-volume-control {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ts-volume-slider {
    width: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    transition: width 0.2s;
    cursor: pointer;
}

.ts-volume-control:hover .ts-volume-slider {
    width: 70px;
}

.ts-volume-level {
    height: 100%;
    background: #fff;
    width: 100%;
    border-radius: 2px;
}

/* Time Display */
.ts-time {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap;
}

.ts-current-time {
    color: #fff;
}

.ts-duration {
    color: rgba(255, 255, 255, 0.6);
}

/* Settings Menu */
.ts-settings-menu {
    position: relative;
}

.ts-settings-panel {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 10px;
    padding: 12px;
    min-width: 180px;
    display: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.ts-settings-menu.ts-open .ts-settings-panel {
    display: block;
}

.ts-settings-group {
    margin-bottom: 12px;
}

.ts-settings-group:last-child {
    margin-bottom: 0;
}

.ts-settings-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ts-speed-options,
.ts-quality-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ts-speed-options button,
.ts-quality-options button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.ts-speed-options button:hover,
.ts-quality-options button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ts-speed-options button.ts-active,
.ts-quality-options button.ts-active {
    background: #ef4444;
}

/* Mobile Double Tap Seek Indicator */
.ts-seek-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 25;
}

.ts-seek-indicator.ts-show {
    opacity: 1;
}

.ts-seek-indicator i {
    font-size: 32px;
    animation: seekPulse 0.4s ease-out;
}

.ts-seek-left {
    left: 15%;
}

.ts-seek-right {
    right: 15%;
}

@keyframes seekPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fullscreen adjustments */
.ts-player.ts-fullscreen .ts-controls {
    padding: 60px 24px 20px;
}

.ts-player.ts-fullscreen .ts-btn {
    width: 48px;
    height: 48px;
}

.ts-player.ts-fullscreen .ts-btn i {
    font-size: 20px;
}

.ts-player.ts-fullscreen .ts-time {
    font-size: 15px;
}

.ts-player.ts-fullscreen .ts-preview-thumb {
    width: 200px;
    height: 112px;
}

/* iOS Video Fullscreen */
.ts-video::-webkit-media-controls {
    display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .ts-controls {
        padding: 16px 8px 6px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    }
    
    .ts-controls-bottom {
        padding: 0 4px;
        gap: 4px;
    }
    
    .ts-controls-left,
    .ts-controls-right {
        gap: 2px;
    }

    .ts-btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .ts-btn i {
        font-size: 11px;
    }
    
    .ts-skip-back,
    .ts-skip-forward {
        display: none !important;
    }
    
    .ts-time {
        font-size: 9px;
    }
    
    .ts-volume-slider {
        display: none;
    }
    
    .ts-progress-container {
        padding: 16px 0 12px;
        margin-bottom: 4px;
        touch-action: none;
    }
}

/* ========================================
   Categories Page
======================================== */
.categories-page {
    min-height: 100vh;
}

.archive-hero {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-sidebar) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.archive-hero__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.archive-hero__eyebrow {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.archive-hero__eyebrow a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.archive-hero__eyebrow a:hover {
    color: var(--accent-orange);
}

.archive-hero__eyebrow .sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.archive-hero__eyebrow .current {
    color: var(--text-primary);
}

.archive-hero__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.archive-hero__subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.archive-hero__highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-card__thumb {
    aspect-ratio: 16/9;
    background-color: var(--bg-hover);
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.category-card__body {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-card__body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-card__body .count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.category-card:hover .category-card__body h3 {
    color: var(--accent-orange);
}

/* Empty State */
.models-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.models-empty__card {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 12px;
}

.models-empty__card i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.models-empty__card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.models-empty__card p {
    color: var(--text-secondary);
}

/* ========================================
   SEO Content Sections
======================================== */
.seo-content {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.seo-content__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.seo-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.seo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.seo-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem 1.5rem;
    margin: 1rem 0;
}

.seo-content ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.seo-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.seo-content__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-orange);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.seo-content__cta:hover {
    background: #ff7722;
    transform: translateY(-2px);
}

.seo-content__stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.seo-content__stat {
    text-align: center;
}

.seo-content__stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.seo-content__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   SEO Footer
======================================== */
.seo-footer {
    background: #080808;
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.seo-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.seo-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.seo-footer__section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-footer__section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seo-footer__section ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.seo-footer__section ul li a:hover {
    color: var(--accent-orange);
}

.seo-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.seo-footer__copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.seo-footer__links {
    display: flex;
    gap: 1.5rem;
}

.seo-footer__links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.seo-footer__links a:hover {
    color: var(--text-primary);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 768px) {
    .archive-hero {
        padding: 1.5rem 1rem;
    }
    
    .archive-hero__title {
        font-size: 1.5rem;
    }
    
    .categories-container {
        padding: 1rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.75rem;
    }
    
    .category-card__body {
        padding: 0.65rem 0.75rem;
    }
    
    .category-card__body h3 {
        font-size: 0.85rem;
    }
    
    /* SEO Content Responsive */
    .seo-content {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.35rem;
    }
    
    .seo-content h3 {
        font-size: 1.1rem;
    }
    
    .seo-content ul {
        grid-template-columns: 1fr;
    }
    
    .seo-content__stats {
        gap: 1rem;
    }
    
    .seo-content__stat-number {
        font-size: 1.5rem;
    }
    
    /* SEO Footer Responsive */
    .seo-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .seo-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Static Pages (DMCA, Terms, 2257, etc.)
======================================== */
.static-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.static-page__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.static-page__header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.static-page__content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.static-page__content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.static-page__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.static-page__content p {
    margin-bottom: 1rem;
}

.static-page__content ul,
.static-page__content ol {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.static-page__content ul li,
.static-page__content ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.static-page__content a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.static-page__content a:hover {
    color: #ff7722;
}

.static-page__content strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .static-page {
        padding: 1.5rem 1rem;
    }
    
    .static-page__header h1 {
        font-size: 1.5rem;
    }
    
    .static-page__content h2 {
        font-size: 1.25rem;
    }
    
    .static-page__content h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   Toast Notifications
======================================== */
.wxporn-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.wxporn-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.wxporn-toast.success {
    border-color: var(--accent-orange);
}

.wxporn-toast.error {
    border-color: var(--accent-red);
}

/* ========================================
   Watched Badge on Video Cards
======================================== */
.beeg-card__watched {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    backdrop-filter: blur(4px);
}

/* ========================================
   Followed Channels Grid
======================================== */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.channel-card:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.channel-card__logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-card__initial {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
}

.channel-card__info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.channel-card__info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .channel-card {
        padding: 0.75rem;
    }
    
    .channel-card__logo {
        width: 50px;
        height: 50px;
    }
}
