/* ============================================================
   🔥 KDS WORLD — LIGHT PINK & BLACK THEME 🔥
   Redesigned with dark yellow and sleek black aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    /* === Yellow Palette === */
    --yellow-50:  #fffde7;
    --yellow-100: #fff9c4;
    --yellow-200: #fff59d;
    --yellow-300: #fff176;
    --yellow-400: #ffee58;
    --yellow-500: #ffd1dc;
    --yellow-600: #ff7d00;
    --yellow-700: #ff7d00;
    --yellow-800: #e085a8;
    --yellow-900: #d47094;

    /* === Dark Backgrounds (Sleek Black) === */
    --bg-primary: #ff7d00;
    --bg-secondary: #e6b800;
    --bg-tertiary: #e085a8;
    --bg-hover:     #24242a;
    --bg-card: rgba(0, 0, 0, 0.95);
    --bg-glass: rgba(0, 0, 0, 0.85);

    /* === Text === */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* === Accent Colors === */
    --accent:          #ff7d00;
    --accent-hover:    #ffaa44;
    --accent-dark:     #e085a8;
    --accent-glow:     rgba(255, 125, 0, 0.45);
    --accent-glow-sm:  rgba(255, 125, 0, 0.22);
    --accent-soft:     rgba(255, 125, 0, 0.12);

    /* === Gold for premium === */
    --gold: #ff7d00;
    --gold-glow: rgba(255, 125, 0, 0.4);

    /* === Borders === */
    --border-color:  rgba(255, 125, 0, 0.25);
    --border-hover:  rgba(255, 125, 0, 0.55);

    /* === Layout === */
    --card-radius:   14px;
    --nav-height:    70px;
    --sidebar-width: 240px;

    /* === Transitions === */
    --transition-fast:   0.18s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* === Type Scale === */
    --fs-xs:   12px;
    --fs-sm:   14px;
    --fs-base: 16px;
    --fs-md:   20px;
    --fs-lg:   24px;
    --fs-xl:   32px;

    /* === Semantic Aliases === */
    --primary: #ff7d00;
    --primary-hover: #ffaa44;
    --primary-glow: rgba(255, 125, 0, 0.45);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* scrollbar-width NOT set globally — only on body to avoid double scrollbars */
}

html {
    overflow-x: hidden;
    /* overflow-y removed */
    max-width: 100vw;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 125, 0,0.3) #09090b;
}

body {
    background: #09090b !important;
    background-image: none !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #09090b !important;
    background-color: #09090b !important;
    background-image: none !important;
    color: var(--text-primary);
    animation: pageFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}

@media (max-width: 768px) {
    body {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* ============================================================
   PAGE FADE
   ============================================================ */
@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
body.page-leaving {
    animation: pageFadeOut 0.15s ease forwards !important;
}
@keyframes pageFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
/* Only page-level scrollbar (html/body) should be visible on desktop */
::-webkit-scrollbar { width: 0px; height: 0px; display: none; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: transparent; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: transparent; }

@media (min-width: 769px) {
    
    
    
    
}

/* ============================================================
   AMBIENT GLOW BACKGROUND (DISABLED)
   ============================================================ */
body::before,
body::after {
    display: none !important;
    content: none !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    height: var(--nav-height);
    background: #0e0e12 !important;
    border-bottom: 1px solid #1a1a22 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar::after {
    display: none !important;
    content: none !important;
}

.navbar.scrolled {
    background: #0e0e12 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #1a1a22 !important;
}

/* ============================================================
   LOGO
   ============================================================ */
.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.03em;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: var(--transition-fast);
    animation: logoGlow 1.2s ease forwards;
}

.logo:hover {
    text-shadow: none;
}

@keyframes logoGlow {
    0%   { text-shadow: none; filter: brightness(1); }
    40%  { text-shadow: none; filter: brightness(1.3); }
    100% { text-shadow: none; filter: brightness(1); }
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 125, 0, 0.05);
    border: 1px solid rgba(255, 125, 0, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    width: 350px;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: rgba(255, 125, 0, 0.55) !important;
    box-shadow: none;
}

.search-bar button:hover {
    color: var(--accent) !important;
}

.search-input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    padding: 6px 8px !important;
    color: var(--text-primary) !important;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.search-input::placeholder {
    color: rgba(255, 125, 0, 0.4) !important;
    opacity: 0.8;
}

.search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================================
   USER MENU
   ============================================================ */
.user-menu {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    background: transparent;
    position: relative;
}

.btn-icon:hover {
    background: rgba(255, 125, 0, 0.12);
    color: var(--accent);
}

.btn-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(20, 8, 15, 0.95);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2000;
    border: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-icon:not([data-tooltip])::after {
    display: none;
}

.user-dropdown-wrapper {
    background: transparent !important;
}

.avatar {
    width: 36px;
    height: 36px;
    background: #ff7d00 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border: none !important;
}

.avatar:hover {
    transform: scale(1.08);
    box-shadow: none;
}

a.hero-btn.nav-signup {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    background: #ff7d00;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-fast);
    box-shadow: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

a.hero-btn.nav-signup:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

a.nav-item.nav-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 1rem;
    transition: var(--transition-fast);
}

a.nav-item.nav-login:hover {
    color: var(--accent);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.app-container {
    display: flex;
    padding-top: var(--nav-height);
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    width: var(--sidebar-width);
    background: #0d0d11 !important;
    border-right: 1px solid #1a1a22 !important;
    bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    scrollbar-width: none;
    padding: calc(var(--nav-height) + 1.2rem) 0.6rem 1.5rem;
    z-index: 900;
    box-shadow: none !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Hide sidebar internal scrollbar on all browsers */
.sidebar::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
}

.nav-section {
    margin-bottom: 1.2rem;
    padding: 0 0.2rem;
}

.nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    margin-top: 0.6rem;
    padding-left: 0.65rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.42rem 0.65rem;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 2px;
    border: 1px solid transparent;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.01em;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

.nav-item::after {
    display: none;
}

.nav-item:hover::before,
.nav-item.active::before {
    transform: translateY(-50%) scaleY(1);
    opacity: 1;
}

.nav-item:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    transform: none !important;
}

.nav-item.active {
    background: rgba(255, 125, 0, 0.12);
    color: #ff7d00;
    font-weight: 600;
    transform: none !important;
    border-color: rgba(255, 125, 0, 0.2);
}

.nav-item i {
    width: 16px;
    text-align: center;
    font-size: 0.88rem;
    color: #64748b;
    transition: color 0.15s ease;
}

.nav-item:hover i {
    color: #ffffff !important;
    transform: none !important;
}

.nav-item.active i {
    color: #ff7d00 !important;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 1rem 1.5rem;
    width: calc(100% - var(--sidebar-width));
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--nav-height));
    position: relative;
}

.content-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.centralized-page {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    min-height: calc(100vh - var(--nav-height));
}

.centralized-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid rgba(255, 125, 0, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-banner::before {
    content: '🧸';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    opacity: 0.15;
    pointer-events: none;
    animation: floatBear 4s ease-in-out infinite;
}

@keyframes floatBear {
    0%, 100% { transform: translateY(-50%) rotate(-5deg); }
    50%       { transform: translateY(calc(-50% - 12px)) rotate(5deg); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: none;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 2rem;
    line-height: 1.7;
    z-index: 1;
    font-weight: 600;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #ff7d00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: none;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: none;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e4e4e7;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.3px;
    text-shadow: none !important;
}

.section-title i {
    color: var(--accent);
}

.view-all-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.view-all-link:hover {
    color: var(--accent);
    text-decoration: none;
}

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

/* ============================================================
   VIDEO CARD
   ============================================================ */
.video-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: transparent;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 0 280px;
}

.video-card.will-reveal,
.video-card.revealed,
.video-card.no-reveal {
    opacity: 1 !important;
    transform: none !important;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    z-index: 10;
}

.video-card:hover .thumbnail-wrapper {
    box-shadow: none;
    border-color: rgba(255, 125, 0, 0.5) !important;
}

.video-card:hover .video-title {
    color: var(--accent) !important;
}

/* ============================================================
   THUMBNAIL
   ============================================================ */
.thumbnail-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #ff7d00;
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: none;
    border: 1px solid rgba(255, 125, 0, 0.1);
    transition: all var(--transition-smooth);
}

.thumbnail-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #ff7d00;
    z-index: 1;
    pointer-events: none;
}

.thumbnail-wrapper::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: #ff7d00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: none;
    padding-left: 4px;
    z-index: 5;
}

.video-card:hover .thumbnail-wrapper::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* play button hidden when using card-hover-play */
.video-card:hover .thumbnail-wrapper::after {
    opacity: 0 !important;
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    opacity: 0.95;
}

img:not(.thumbnail-img), video { max-width: 100%; }

.video-card:hover .thumbnail-img {
    transform: scale(1.07);
    filter: brightness(0.72);
}

.thumbnail-img.is-placeholder {
    object-fit: contain !important;
    opacity: 0.15;
    filter: grayscale(1) brightness(0.6) !important;
}

.premium-bg-blur {
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.2);
    opacity: 0.4;
    background-color: #000;
}

.premium-bg-blur.is-placeholder { opacity: 0; visibility: hidden; }

/* ============================================================
   DURATION BADGE
   ============================================================ */
.duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(15, 5, 12, 0.9);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
    font-variant-numeric: tabular-nums;
    border: 1px solid rgba(255, 125, 0,0.2);
    letter-spacing: 0.5px;
}

/* ============================================================
   PREMIUM BADGE
   ============================================================ */
.premium-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff7d00 !important;
    color: #121215 !important;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: none;
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* ============================================================
   NEW BADGE
   ============================================================ */
.new-badge {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    background: #ff7d00 !important;
    color: #ffffff !important;
    font-size: 0.6rem !important;
    font-weight: 900 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    box-shadow: none;
    border: none !important;
    animation: none;
    z-index: 2 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}



/* ============================================================
   VIDEO INFO
   ============================================================ */
.video-info { padding: 0 0.4rem; }

.video-title {
    font-size: var(--fs-sm) !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: calc(var(--fs-sm) * 1.45 * 2) !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.1px !important;
    transition: color var(--transition-fast);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 0.4rem;
}

.video-meta { color: #333333 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.video-meta span::after {
    content: '•';
    margin-left: 8px;
    opacity: 0.4;
}

.video-meta span:last-child::after { content: none; }

/* ============================================================
   CARD HOVER INFO (Netflix style)
   ============================================================ */
.video-card .card-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff7d00;
    padding: 2.5rem 0.8rem 0.7rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 8;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
}

.video-card:hover .card-hover-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-hover-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.card-hover-meta {
    font-size: 0.7rem;
    color: rgba(255,180,210,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-hover-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 46px;
    height: 46px;
    background: #ff7d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9;
    pointer-events: none;
    box-shadow: none;
}

.card-hover-play i {
    color: #fff;
    font-size: 1rem;
    margin-left: 3px;
}

.video-card:hover .card-hover-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .card-hover-play { display: none !important; }
}

/* ============================================================
   DELETE BUTTON
   ============================================================ */
.delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 5, 12, 0.75);
    color: var(--primary);
    border: 1px solid rgba(255, 100, 160, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.delete-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
    box-shadow: none;
}

/* ============================================================
   CHANNEL HEADER
   ============================================================ */
.channel-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.channel-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
    color: var(--accent);
}

/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.dropdown-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 125, 0, 0.2);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: none;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
}

.dropdown-menu.show { display: block; }

@keyframes dropdownFade {
    from { opacity: 0; transform: scale(0.95) translateY(-4px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.dropdown-header {
    padding: 1rem 1rem 0.8rem;
    border-bottom: 1px solid rgba(255, 125, 0, 0.1);
    margin-bottom: 0.5rem;
}

.user-name {
    display: block;
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.user-email {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.dropdown-item:hover {
    background: rgba(255, 125, 0, 0.1);
    color: var(--accent);
    transform: translateX(3px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    transition: color 0.2s;
}

.dropdown-item:hover i {
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 125, 0, 0.1);
    margin: 0.4rem 0;
}

.item-danger { color: #ffaa44; }
.item-danger:hover { background: rgba(255, 125, 0, 0.1); color: #ffaa44; }
.item-danger i { color: #ffaa44; }
.item-danger:hover i { color: #ffaa44; }

/* ============================================================
   SHIMMER (loading)
   ============================================================ */
.thumbnail-wrapper.loading {
    background: #ff7d00;
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

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

.video-card.skeleton .thumbnail-wrapper {
    background: #ff7d00 !important;
    background-size: 200% 100% !important;
    animation: shimmer 1.4s infinite !important;
}

.video-card.skeleton .video-title { color: #000000 !important;
    background: #ff7d00;
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
    color: transparent !important;
    height: 14px;
    margin-bottom: 6px;
}

.video-card.skeleton .video-meta { color: #333333 !important;
    background: #ff7d00;
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
    color: transparent !important;
    height: 12px;
    width: 60%;
}

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

.skeleton-card { border-radius: var(--card-radius); overflow: hidden; }

.skeleton-thumb {
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--card-radius);
    background: #ff7d00;
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    margin-bottom: 0.8rem;
}

.skeleton-title {
    height: 14px;
    width: 80%;
    border-radius: 6px;
    background: #ff7d00;
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    margin-bottom: 8px;
}

.skeleton-meta {
    height: 11px;
    width: 50%;
    border-radius: 6px;
    background: #ff7d00;
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

/* ============================================================
   PREVIEW VIDEO
   ============================================================ */
.preview-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease !important;
    z-index: 3;
    pointer-events: none;
}

.preview-video.playing { opacity: 1 !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    width: 100%;
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    margin-top: auto;
    border-top: 1px solid rgba(255, 125, 0, 0.08);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-links a:hover { color: var(--accent); }
.footer-links a i { font-size: 0.9rem; color: var(--text-muted); }
.footer-divider { color: rgba(255, 125, 0,0.2); font-weight: bold; font-size: 0.8rem; }
.footer-copyright {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

footer a:hover { color: var(--accent) !important; }

/* ============================================================
   NAVBAR GLASSMORPHISM ON SCROLL
   ============================================================ */
.navbar {
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ============================================================
   BOTTOM NAV (mobile)
   ============================================================ */
.bottom-nav { display: none; }

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 62px;
        background: rgba(18, 18, 21, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid rgba(255, 125, 0, 0.15);
        z-index: 1200;
        align-items: center;
        justify-content: space-around;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: rgba(255, 125, 0, 0.4);
        text-decoration: none;
        font-size: 0.58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex: 1;
        height: 100%;
        transition: color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }

    .bottom-nav-item i {
        font-size: 1.2rem;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .bottom-nav-item.active,
    .bottom-nav-item:active {
        color: var(--accent);
    }

    .bottom-nav-item.active i {
        transform: scale(1.15);
        filter: none;
    }

    .main-content {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .global-floating-buttons { display: none !important; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #ff7d00;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: none;
    pointer-events: none;
}

#backToTop.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#backToTop:hover {
    box-shadow: none;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    #backToTop { bottom: 72px; right: 12px; width: 40px; height: 40px; }
}

/* ============================================================
   PREMIUM EXPIRY BANNER
   ============================================================ */
.premium-expiry-banner {
    background: #ff7d00 !important;
    color: white !important;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#toast-container {
    position: fixed;
    top: 82px;
    right: 16px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 340px;
    width: calc(100vw - 32px);
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(20, 8, 15, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 125, 0, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 600;
    pointer-events: auto;
    animation: toastSlideIn 0.35s cubic-bezier(0.2, 0, 0.2, 1);
    transition: opacity 0.3s, transform 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.toast.hiding {
    opacity: 0;
    transform: translateX(30px);
}

.toast-icon { font-size: 1rem; flex-shrink: 0; }
.toast-success .toast-icon { color: #5bcc78; }
.toast-error   .toast-icon { color: var(--accent); }
.toast-info    .toast-icon { color: #74b9ff; }
.toast-success { border-left: 3px solid #5bcc78; }
.toast-error   { border-left: 3px solid var(--accent); }
.toast-info    { border-left: 3px solid #74b9ff; }

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    #toast-container { top: auto; bottom: 72px; right: 8px; left: 8px; max-width: none; width: auto; }
}

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple-btn { position: relative; overflow: hidden; }

.ripple-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 125, 0, 0.3);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   HORIZONTAL ROWS (Netflix style)
   ============================================================ */
.hrow-section { margin-bottom: 2rem; }

.hrow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.hrow-see-more {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hrow-see-more:hover { color: var(--accent); }

.hrow-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hrow-scroll::-webkit-scrollbar { display: none; }

.hrow-card {
    flex-shrink: 0;
    width: 200px;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.hrow-card:hover {
    transform: scale(1.06);
    box-shadow: none;
    z-index: 5;
}

.hrow-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.hrow-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hrow-card:hover .hrow-thumb img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.hrow-card:hover .card-hover-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hrow-info { padding: 0.5rem 0.3rem; }

.hrow-info h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 2px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hrow-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    .hrow-card { width: 160px; }
    .hrow-card:hover { transform: none; }
    .hrow-card .card-hover-play { display: none; }
}

/* ============================================================
   HORIZONTAL ROW SCROLL ARROWS
   ============================================================ */
.hrow-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 125, 0,0.08);
    border: 1px solid rgba(255, 125, 0,0.18);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.hrow-arrow:hover {
    background: rgba(255, 125, 0, 0.22);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

@media (max-width: 768px) { .hrow-arrow { display: none; } }

/* ============================================================
   CONTINUE WATCHING ROW
   ============================================================ */
.cw-section { margin-bottom: 1.5rem; }

.cw-section .section-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cw-section .section-title i { color: var(--accent); }

.cw-row {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.cw-card {
    flex-shrink: 0;
    width: 220px;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cw-card:hover {
    transform: scale(1.05);
    box-shadow: none;
    z-index: 5;
}

.cw-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.cw-thumb img { width: 100%; height: 100%; object-fit: cover; }

.cw-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #ff7d00;
    z-index: 2;
    box-shadow: none;
}

.cw-info { color: #000000 !important; padding: 0.5rem 0.4rem; background: var(--bg-secondary); }

.cw-info h4 { color: #000000 !important;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) { .cw-card { width: 180px; } }

/* ============================================================
   NOTIFICATION SYSTEM
   ============================================================ */
.notif-wrapper { position: relative; }

.notif-bell {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.notif-bell:hover { color: var(--accent); }

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    background: #ff7d00;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: none;
    animation: notifPulse 2s ease infinite;
}

@keyframes notifPulse {
    0%, 100% { box-shadow: none; }
    50%       { box-shadow: none; }
}

.notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    max-height: 420px;
    background: rgba(20, 8, 15, 0.98);
    border: 1px solid rgba(255, 125, 0, 0.12);
    border-radius: 16px;
    box-shadow: none;
    z-index: 2100;
    display: none;
    overflow: hidden;
    animation: notifSlideIn 0.2s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.notif-panel.show { display: block; }

@keyframes notifSlideIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 125, 0, 0.08);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notif-clear-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notif-clear-btn:hover { opacity: 0.7; }

.notif-panel-body {
    overflow-y: auto;
    max-height: 360px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 125, 0,0.2) transparent;
}

.notif-empty {
    padding: 2.5rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notif-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 125, 0, 0.06);
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.notif-item:hover { background: rgba(255, 125, 0, 0.05); }

.notif-item.unread {
    background: rgba(255, 125, 0, 0.06);
    border-left: 3px solid var(--accent);
}

.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.notif-icon.welcome  { background: rgba(91, 204, 120, 0.12); color: #5bcc78; }
.notif-icon.premium  { background: rgba(255, 125, 0, 0.12);  color: var(--gold); }
.notif-icon.expired  { background: rgba(255, 125, 0, 0.12); color: var(--accent); }
.notif-icon.info     { background: rgba(116, 185, 255, 0.12); color: #74b9ff; }

.notif-text { flex: 1; min-width: 0; }

.notif-text h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 3px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notif-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notif-time { font-size: 0.65rem; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 768px) {
    .notif-panel { width: calc(100vw - 24px); right: -60px; max-height: 380px; }
}

/* ============================================================
   BTN LOADING STATE
   ============================================================ */
.btn-loading { position: relative; pointer-events: none !important; opacity: 0.8 !important; }

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes btnSpin { to { transform: translateY(-50%) rotate(360deg); } }

/* ============================================================
   CINEMA MODE
   ============================================================ */
.cinema-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cinema-overlay.active { opacity: 1; pointer-events: auto; }
body.cinema-mode .navbar  { opacity: 0.3; transition: opacity 0.4s ease; }
body.cinema-mode .sidebar { opacity: 0.2; transition: opacity 0.4s ease; }
body.cinema-mode .player-wrapper { position: relative; z-index: 60; }
body.cinema-mode .navbar:hover { opacity: 1; }

/* ============================================================
   ONLINE COUNTER
   ============================================================ */
.online-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 125, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 125, 0, 0.1);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: #5bcc78;
    border-radius: 50%;
    box-shadow: none;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: none; }
    50%       { box-shadow: none; }
}

/* ============================================================
   FLOATING GLOBAL BUTTONS
   ============================================================ */
.global-floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.global-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.global-float-btn i { font-size: 0.65rem; }

.global-float-btn-primary {
    background: rgba(255, 125, 0, 0.12);
    color: var(--accent);
    border: 1px solid rgba(255, 125, 0, 0.3);
}

.global-float-btn-primary:hover {
    background: rgba(255, 125, 0, 0.25);
    border-color: rgba(255, 125, 0, 0.6);
    color: #fff;
    box-shadow: none;
    transform: translateY(-2px);
}

.global-float-btn-secondary {
    background: rgba(255, 125, 0, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 125, 0, 0.12);
}

.global-float-btn-secondary:hover {
    background: rgba(255, 125, 0, 0.12);
    border-color: rgba(255, 125, 0, 0.3);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================================
   CURSORS
   ============================================================ */
a, button, [role='button'], .video-card, .nav-item, .close, span.close { cursor: pointer; }

/* ============================================================
   REDUCED MOTION ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .sidebar {
        width: 72px;
        padding: 1rem 0.5rem;
    }

    .nav-label { display: none; }
    .nav-item span { display: none; }
    .nav-item { justify-content: center; padding: 0.8rem; }
    .nav-item i { font-size: 1.2rem; }
    .main-content { margin-left: 72px; width: calc(100% - 72px); }
    .hero-title { font-size: 2.2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        padding: 6px;
        min-width: 36px;
        min-height: 36px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }

    .hide-mobile { display: none !important; }

    .sidebar {
        display: block;
        position: fixed;
        left: 0;
        top: var(--nav-height);
        bottom: 0;
        height: auto;
        width: 260px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 1100;
        background: rgba(18, 18, 21, 0.98);
        border-right: 1px solid rgba(255, 125, 0, 0.15);
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.05);
    }

    .sidebar.show { transform: translateX(0); visibility: visible; }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 3, 8, 0.65);
        z-index: 1050;
        backdrop-filter: blur(4px);
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .sidebar-overlay.show { display: block; opacity: 1; pointer-events: auto; }
    .sidebar-overlay:not(.show) { pointer-events: none; }

    .nav-label, .nav-item span { display: block !important; }
    .sidebar { overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; }
    .nav-item { justify-content: flex-start; padding: 0.8rem 1rem; }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1rem 0.75rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
        min-height: calc(100vh - var(--nav-height));
    }

    .navbar {
        padding: 0 1rem;
        gap: 0.4rem;
        padding-left: env(safe-area-inset-left, 1rem);
        padding-right: env(safe-area-inset-right, 1rem);
    }

    .user-menu { gap: 0.25rem; flex-shrink: 0; }
    .user-menu .btn-icon { min-width: 30px; min-height: 30px; padding: 0.25rem; }

    .search-bar {
        min-width: 0;
        display: flex !important;
        margin: 0 0.4rem;
        padding: 4px 8px !important;
        max-width: 45%;
        width: auto;
        flex: 0 1 45%;
    }

    .search-input { padding: 6px 8px !important; font-size: 0.8rem; }

    .btn-icon { width: 30px; height: 30px; font-size: 0.85rem; }
    .avatar { min-width: 32px !important; min-height: 32px !important; width: 32px; height: 32px; font-size: 0.8rem; }

    .hero-banner { padding: 1.5rem; border-radius: 16px; margin-bottom: 2rem; }
    .hero-title { font-size: 1.8rem; }
    .logo { font-size: 1.3rem; }
    .logo span { display: none !important; }

    .video-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
    .thumbnail-wrapper { padding-top: 60% !important; }
    .video-title { color: #000000 !important; font-size: 0.88rem !important; }

    .section-header { flex-wrap: wrap; gap: 0.5rem; }
    .section-title { font-size: 1.1rem; }

    a.video-card, .nav-item { min-height: 44px; }

    .thumbnail-img {
        display: block;
        min-height: 100%;
        min-width: 100%;
        background: var(--bg-tertiary);
    }

    .thumbnail-wrapper img { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
    .thumb-lazy { min-height: 100%; min-width: 100%; opacity: 1; }

    .thumbnail-wrapper::before {
        content: '🌸 Tap to Watch';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 125, 0, 0.8);
        font-size: 0.85rem;
        font-weight: 700;
        z-index: 1;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    }

    .thumbnail-img { z-index: 2; background: transparent; }

    .navbar {
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        background: rgba(18, 18, 21, 0.98) !important;
    }

    .sidebar-overlay {
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
    }

    .preview-video { display: none !important; }
    .video-card, .thumbnail-wrapper { box-shadow: none !important; }

    .app-container { flex-direction: column; width: 100%; overflow-x: hidden; }
    .main-content, .watch-container {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .hero-banner { border-radius: 14px; margin: 0 0 1.5rem 0; width: 100%; }

    .footer { flex-direction: column; gap: 10px; padding: 1rem 0.75rem; padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
    .footer-copyright { font-size: 0.8rem; }
}

/* ============================================================
   RESPONSIVE — SMALL (480px)
   ============================================================ */
@media (max-width: 480px) {
    .video-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .thumbnail-wrapper { padding-top: 56.25% !important; }
    .hero-title { font-size: 1.4rem; }
    .hero-banner { padding: 1rem; }
    .hero-btn { width: 100%; justify-content: center; }
    .footer { padding: 0.75rem 0.5rem; padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   MOBILE: Safety overrides
   ============================================================ */
html, body { overflow-x: hidden !important; max-width: 100vw !important; }

/* ============================================================
   🎀 Purple GLOW EXTRAS — Special Purple Touches
   ============================================================ */

/* Decorative logo icon on desktop — removed emoji, clean icon only */
@media (min-width: 769px) {
    .logo::before {
        content: '';
        display: none;
    }
}

/* Section title cute emoji */
.section-title::after {
    content: '';
}

/* Purple gradient text for logo area */
.logo-text-Purple {
    background: #ff7d00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Purple glow for active nav */
.nav-item.active {
    box-shadow: none;
}

/* Cute heart sparkle animation for premium badge */


.premium-badge {
    animation: none;
}

/* Purple hover on view all link */
.view-all-link:hover {
    color: var(--accent) !important;
}

/* Cute typing animation for search placeholder */
.search-input:focus::placeholder {
    opacity: 0.3;
    transition: opacity 0.3s;
}

/* Purple section divider glow */
.section-header {
    position: relative;
}

/* Video title hover Purple */
.video-card:hover .video-title { color: #000000 !important;
    color: var(--accent) !important;
    text-shadow: none;
}

/* Purple tint to page on load */
@keyframes pageFadeIn {
    from { opacity: 0; filter: brightness(0.8); }
    to   { opacity: 1; filter: brightness(1); }
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
:root {
    --fs-xs:   12px;
    --fs-sm:   14px;
    --fs-base: 16px;
    --fs-md:   20px;
    --fs-lg:   24px;
    --fs-xl:   32px;
}

.nav-label,
.premium-badge,
.duration-badge {
    letter-spacing: 0.8px;
}

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
body {
    animation: pageFadeIn 0.3s ease forwards !important;
}

/* ============================================================
   🌸 CUTE LAYOUT STRUCTURE (HOMEPAGE REDESIGN)
   ============================================================ */

/* Cute Split Hero Banner */
.cute-hero {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: #09090b;
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: none;
}

.cute-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ff7d00;
    z-index: 0;
}

.cute-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    background: rgba(18, 18, 21, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05), inset 0 0 0 2px rgba(255,255,255,0.5);
}

.cute-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cute-hero-title span {
    color: var(--accent);
}

.cute-hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cute-hero {
        padding: 2rem;
        min-height: 350px;
    }
    .cute-hero-content { padding: 2rem 1.5rem; }
    .cute-hero-title { font-size: 2.2rem; }
}

/* Cute Bento Grid Layout */
.cute-section {
    margin-bottom: 4rem;
}

.cute-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

.cute-section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .cute-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

/* Soft Video Card */
.soft-card {
    display: block;
    background: rgba(18, 18, 21, 0.92);
    border: 1px solid rgba(255, 125, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.soft-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 125, 0, 0.4);
    box-shadow: none;
    background: rgba(24, 24, 28, 1);
}

.soft-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.soft-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.soft-card:hover .soft-card-thumb img {
    transform: scale(1.08);
}

.video-play-btn,
.soft-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 0.95rem;
    opacity: 0.9 !important;
    pointer-events: none;
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.video-play-btn i,
.soft-card-play i {
    margin-left: 2px;
    color: #ffffff !important;
}

.soft-card:hover .video-play-btn,
.video-card:hover .video-play-btn,
.soft-card:hover .soft-card-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
}

/* Circular Pink Lock Button for Premium Videos */
.video-lock-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: #ff7d00 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #121215 !important;
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 3;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
}

.video-lock-btn i {
    color: #121215 !important;
}

.soft-card:hover .video-lock-btn,
.video-card:hover .video-lock-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background: #ffaa44 !important;
    box-shadow: none;
}

.soft-card-info {
    padding: 0 4px;
}

.soft-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.soft-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.soft-card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(20, 8, 15, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 125, 0, 0.2);
}

/* Purple CTA Button */
.cute-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff7d00;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.cute-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: none;
    background: #ff7d00;
}

/* =========================================
   EMERGENCY LAYOUT & THEME FIXES 
   ========================================= */

html, body {
    background: #09090b;
    color: #ffffff !important;
}

/* Fix dual scrollbars — use overflow-x:clip not hidden (hidden creates scroll container) */
.app-container {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    min-height: 100vh !important;
    padding-top: var(--nav-height) !important;
    overflow: visible !important;
}

/* Fix Navbar */
.navbar {
    background: rgba(18, 18, 21, 0.95) !important;
    border-bottom: 1px solid rgba(255, 125, 0, 0.15) !important;
    backdrop-filter: blur(15px) !important;
}

/* Fix Left Sidebar — styled scrollbar */
.sidebar {
    background: rgba(18, 18, 21, 0.95) !important;
    border-right: 1px solid rgba(255, 125, 0, 0.15) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 125, 0, 0.5) transparent !important;
    bottom: 0 !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    box-sizing: border-box !important;
    width: var(--sidebar-width) !important;
    padding-top: calc(var(--nav-height) + 1.5rem) !important;
    box-shadow: none;
}
.sidebar::-webkit-scrollbar {
    width: 4px !important;
    display: block !important;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent !important;
}
.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 125, 0, 0.5) !important;
    border-radius: 10px !important;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 125, 0, 0.8) !important;
}

/* Fix invisible text in Sidebar */
.nav-item {
    color: var(--text-secondary) !important;
}
.nav-item:hover, .nav-item.active {
    color: var(--primary) !important;
    background: rgba(255, 125, 0, 0.08) !important;
}
.nav-item i {
    color: var(--text-muted) !important;
}
.nav-item:hover i, .nav-item.active i {
    color: var(--primary) !important;
}
.nav-label {
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

/* Fix Main Content layout — default browser scroll */
.main-content {
    margin-left: var(--sidebar-width) !important;
    width: calc(100vw - var(--sidebar-width)) !important;
    min-height: calc(100vh - var(--nav-height)) !important;
    padding: 2rem !important;
}

/* Fix dropdowns and notification panel (dark leftovers) */
#notifPanel, .dropdown-menu {
    background: rgba(18, 18, 21, 0.98) !important;
    border: 1px solid rgba(255, 125, 0, 0.15) !important;
    box-shadow: none;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%) !important; /* Hide sidebar correctly */
        background: rgba(18, 18, 21, 0.98) !important;
    }
    .sidebar.show {
        transform: translateX(0) !important;
    }
    .main-content {
        margin-left: 0 !important;
        width: 100vw !important;
        padding: 1rem !important;
    }
}

/* Verdade Popup Modal */
.verdade-popup-modal {
    background: rgba(18, 18, 21, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 125, 0, 0.2);
    border-radius: 24px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: none;
    animation: popupPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popupPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.verdade-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 125, 0, 0.1);
    border: none;
    color: #ff7d00;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.verdade-popup-close:hover {
    background: #ff7d00;
    color: #fff;
    transform: rotate(90deg);
}
.verdade-popup-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: none;
    margin-bottom: 10px;
}
.verdade-popup-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
}
.verdade-popup-handle {
    font-size: 0.9rem;
    color: #ffaa44;
    margin-bottom: 20px;
}
.verdade-popup-content-box {
    background: #09090b;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
}
.verdade-popup-content-box .box-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ff7d00;
    margin-bottom: 10px;
}
.verdade-popup-content-box p {
    margin-bottom: 8px;
}
.verdade-popup-content-box p:last-child {
    margin-bottom: 0;
}
.accent-Purple {
    color: #ff7d00;
    font-weight: 700;
}
.verdade-popup-actions .btn-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff7d00;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: none;
    transition: all 0.3s;
}
.verdade-popup-actions .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: none;
}
.verdade-popup-footer {
    margin-top: 15px;
    font-size: 0.85rem;
}
.verdade-popup-footer a {
    color: #ffaa44;
    text-decoration: none;
}
.verdade-popup-footer a:hover {
    text-decoration: underline;
    color: #ff7d00;
}

/* Welcome popup accessories */
.verdade-popup-account-info {
    background: #09090b;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-align: left;
}
.account-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 4px 0;
    color: #ffffff;
}
.account-info-label { color: #71717a; font-weight: 600; }
.account-info-value { color: #ffffff; font-weight: 800; }
.accent-pink {
    color: #ff7d00;
    font-weight: 700;
}


/* Video Cards - Dark Theme Matching Site Background */
.video-title, .soft-card-title, .card-title, .video-info-title, .cw-info h4, h1.video-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    text-shadow: none !important;
}

.soft-card, .video-card {
    background: #121215 !important;
    border: 1px solid rgba(255, 125, 0, 0.2) !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
    padding-bottom: 8px !important;
}

.soft-card:hover, .video-card:hover {
    background: #18181c !important;
    border-color: #ff7d00 !important;
    box-shadow: none;
    transform: translateY(-4px) !important;
}

.soft-card:hover .video-title, .soft-card:hover .soft-card-title, .video-card:hover .video-title {
    color: #ff7d00 !important;
}

.soft-card-meta, .video-meta, .video-stats, .video-author, .cw-info p {
    color: #a1a1aa !important;
    font-weight: 600 !important;
}

/* Ultimate Fix for Double Scrollbars v2 */
html { overflow-y: auto !important; overflow-x: hidden !important; }
body { overflow: visible !important; height: auto !important; min-height: 100vh !important; }
.app-container { overflow: visible !important; height: auto !important; min-height: 100vh !important; }
.main-content { overflow: visible !important; height: auto !important; min-height: 100vh !important; }
@media (min-width: 769px) {
    ::-webkit-scrollbar { width: 5px !important; height: 0px !important; display: block !important; }
    ::-webkit-scrollbar-track { background: #09090b; }
    ::-webkit-scrollbar-thumb { background: rgba(255, 125, 0,0.3) !important; border-radius: 10px !important; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255, 125, 0,0.6) !important; }
}


/* Ultimate Fix for White Bar at bottom */
html {
    background-color: #09090b !important;
    background: #09090b !important;
}

/* Hide navbar icons ONLY on /free */
body.free-page .user-menu a.btn-icon,
body.free-page .user-menu div:has(#notifPanel),
body.free-page .user-menu button[aria-label="Notifications"],
body.free-page .user-menu [onclick*="toggleNotifPanel"] {
    display: none !important;
}

/* Hide upload, store, and premium icons on /explore */
body.explore-page .user-menu a.btn-icon {
    display: none !important;
}

/* Tor (.onion) Purple Navigation Item */
.nav-item.nav-item-tor,
.nav-item.nav-item-tor span {
    color: #a855f7 !important;
}
.nav-item.nav-item-tor i {
    color: #a855f7 !important;
}
.nav-item.nav-item-tor:hover {
    color: #d8b4fe !important;
    background: rgba(168, 85, 247, 0.12) !important;
}
.nav-item.nav-item-tor:hover span,
.nav-item.nav-item-tor:hover i {
    color: #d8b4fe !important;
}
