    /* ===== MENU PRINCIPAL ===== */
    .netflix-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.85) 60%, transparent 100%);
        padding: 0 3%;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    .netflix-menu.scrolled {
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
    }

    [data-theme="light"] .netflix-menu {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 60%, transparent 100%);
    }

    [data-theme="light"] .netflix-menu.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(8px);
    }

    .netflix-menu .menu-left {
        display: flex;
        align-items: center;
        gap: 30px;
        flex: 1;
        min-width: 0;
    }

    .netflix-menu .menu-logo {
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .netflix-menu .menu-logo .logo-icon {
        font-size: 28px;
        color: #e50914;
        font-weight: 900;
        letter-spacing: -1px;
    }

    .netflix-menu .menu-logo .logo-text {
        font-size: 22px;
        font-weight: 800;
        color: #e50914;
        letter-spacing: -0.5px;
        font-family: 'Inter', sans-serif;
    }

    .netflix-menu .menu-logo .logo-dot {
        width: 6px;
        height: 6px;
        background: #e50914;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.4;
            transform: scale(0.7);
        }
    }

    .netflix-menu .menu-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .netflix-menu .menu-nav li {
        position: relative;
        flex-shrink: 0;
    }

    .netflix-menu .menu-nav a {
        color: #b3b3b3;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 4px;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        position: relative;
    }

    .netflix-menu .menu-nav a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.06);
    }

    .netflix-menu .menu-nav a.active {
        color: #ffffff;
        font-weight: 600;
    }

    .netflix-menu .menu-nav a.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
        background: #e50914;
        border-radius: 2px;
    }

    .netflix-menu .menu-nav a .nav-badge {
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 1px 8px;
        border-radius: 10px;
        background: var(--netflix-red);
        color: white;
        margin-left: 2px;
    }

    [data-theme="light"] .netflix-menu .menu-nav a {
        color: #5f6368;
    }

    [data-theme="light"] .netflix-menu .menu-nav a:hover {
        color: #1a1a1a;
        background: rgba(0, 0, 0, 0.04);
    }

    [data-theme="light"] .netflix-menu .menu-nav a.active {
        color: #1a1a1a;
    }

    [data-theme="light"] .netflix-menu .menu-nav a.active::after {
        background: #e50914;
    }

    .netflix-menu .menu-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .netflix-menu .menu-right .menu-btn {
        background: transparent;
        border: none;
        color: #b3b3b3;
        font-size: 18px;
        cursor: pointer;
        padding: 6px 8px;
        border-radius: 4px;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .netflix-menu .menu-right .menu-btn:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.06);
    }

    [data-theme="light"] .netflix-menu .menu-right .menu-btn {
        color: #5f6368;
    }

    [data-theme="light"] .netflix-menu .menu-right .menu-btn:hover {
        color: #1a1a1a;
        background: rgba(0, 0, 0, 0.04);
    }

    .netflix-menu .menu-right .menu-btn .badge {
        position: absolute;
        top: -2px;
        right: -2px;
        background: #e50914;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
        border: 2px solid #000;
    }

    [data-theme="light"] .netflix-menu .menu-right .menu-btn .badge {
        border-color: #fff;
    }

    .netflix-menu .user-profile {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        padding: 4px 8px 4px 4px;
        border-radius: 4px;
        transition: all 0.25s ease;
        position: relative;
        text-decoration: none;
        flex-shrink: 0;
    }

    .netflix-menu .user-profile:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    [data-theme="light"] .netflix-menu .user-profile:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .netflix-menu .user-profile .avatar {
        width: 32px;
        height: 32px;
        border-radius: 4px;
        background: linear-gradient(135deg, #e50914, #b20710);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
        text-transform: uppercase;
    }

    .netflix-menu .user-profile .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .netflix-menu .user-profile .user-name {
        color: #b3b3b3;
        font-size: 13px;
        font-weight: 500;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    [data-theme="light"] .netflix-menu .user-profile .user-name {
        color: #5f6368;
    }

    .netflix-menu .user-profile .profile-arrow {
        color: #b3b3b3;
        font-size: 10px;
        transition: transform 0.25s ease;
    }

    [data-theme="light"] .netflix-menu .user-profile .profile-arrow {
        color: #5f6368;
    }

    .netflix-menu .user-profile .profile-arrow.open {
        transform: rotate(180deg);
    }

    /* Dropdown Profile */
    .netflix-menu .profile-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 8px 0;
        min-width: 220px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.96);
        transition: all 0.25s ease;
        z-index: 1001;
        pointer-events: none;
    }

    [data-theme="light"] .netflix-menu .profile-dropdown {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .netflix-menu .profile-dropdown.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

    .netflix-menu .profile-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        color: #b3b3b3;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.2s ease;
        cursor: pointer;
        border: none;
        background: transparent;
        width: 100%;
        text-align: left;
        font-family: inherit;
    }

    .netflix-menu .profile-dropdown .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    [data-theme="light"] .netflix-menu .profile-dropdown .dropdown-item {
        color: #5f6368;
    }

    [data-theme="light"] .netflix-menu .profile-dropdown .dropdown-item:hover {
        background: rgba(0, 0, 0, 0.04);
        color: #1a1a1a;
    }

    .netflix-menu .profile-dropdown .dropdown-item i {
        width: 20px;
        text-align: center;
        font-size: 15px;
    }

    .netflix-menu .profile-dropdown .dropdown-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.06);
        margin: 6px 12px;
    }

    [data-theme="light"] .netflix-menu .profile-dropdown .dropdown-divider {
        background: rgba(0, 0, 0, 0.06);
    }

    .netflix-menu .profile-dropdown .dropdown-item.danger {
        color: #e50914;
    }

    .netflix-menu .profile-dropdown .dropdown-item.danger:hover {
        background: rgba(229, 9, 20, 0.08);
        color: #e50914;
    }

    /* ============================================
       BARRA DE BUSCA - ESTILO NETFLIX
       ============================================ */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(8px);
        z-index: 9997;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 80px;
    }

    .search-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .search-container {
        width: 100%;
        max-width: 800px;
        padding: 0 24px;
    }

    .search-input-wrapper {
        display: flex;
        align-items: center;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 12px;
        transition: border-color 0.3s ease;
    }

    .search-input-wrapper:focus-within {
        border-color: #e50914;
    }

    .search-input-wrapper .search-icon {
        color: #8a929f;
        font-size: 24px;
        margin-right: 16px;
    }

    .search-input-wrapper input {
        flex: 1;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 28px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        outline: none;
        padding: 8px 0;
    }

    .search-input-wrapper input::placeholder {
        color: #5e6673;
        font-weight: 400;
    }

    .search-input-wrapper .search-close {
        background: none;
        border: none;
        color: #8a929f;
        font-size: 28px;
        cursor: pointer;
        padding: 4px;
        transition: color 0.3s ease;
    }

    .search-input-wrapper .search-close:hover {
        color: #fff;
    }

    .search-results {
        margin-top: 24px;
        max-height: 60vh;
        overflow-y: auto;
    }

    .search-results::-webkit-scrollbar {
        width: 4px;
    }

    .search-results::-webkit-scrollbar-track {
        background: transparent;
    }

    .search-results::-webkit-scrollbar-thumb {
        background: #e50914;
        border-radius: 4px;
    }

    .search-results .result-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s ease;
        text-decoration: none;
        color: #b3b3b3;
    }

    .search-results .result-item:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    .search-results .result-item .thumb {
        width: 120px;
        height: 68px;
        border-radius: 4px;
        background: #1a1f26;
        flex-shrink: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-results .result-item .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .search-results .result-item .thumb .placeholder {
        color: #5e6673;
        font-size: 24px;
    }

    .search-results .result-item .info {
        flex: 1;
        min-width: 0;
    }

    .search-results .result-item .info .title {
        font-weight: 600;
        font-size: 15px;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-results .result-item .info .sub {
        font-size: 12px;
        color: #8a929f;
        margin-top: 2px;
    }

    .search-results .result-item .info .tags {
        display: flex;
        gap: 6px;
        margin-top: 4px;
        flex-wrap: wrap;
    }

    .search-results .result-item .info .tags span {
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 1px 8px;
        border-radius: 3px;
        background: rgba(229, 9, 20, 0.15);
        color: #e50914;
    }

    .search-results .result-item .info .tags span.temporada {
        background: rgba(240, 185, 11, 0.15);
        color: #f0b90b;
    }

    .search-results .result-item .info .tags .access-badge {
        font-size: 9px;
        font-weight: 700;
        padding: 1px 8px;
        border-radius: 10px;
    }

    .search-results .result-item .info .tags .access-badge.free {
        background: rgba(14, 203, 129, 0.15);
        color: #0ecb81;
    }

    .search-results .result-item .info .tags .access-badge.premium {
        background: rgba(246, 70, 93, 0.15);
        color: #f6465d;
    }

    .search-results .result-item .info .tags .access-badge.available {
        background: rgba(14, 203, 129, 0.15);
        color: #0ecb81;
    }

    .search-empty {
        text-align: center;
        padding: 40px 0;
        color: #5e6673;
    }

    .search-empty i {
        font-size: 48px;
        margin-bottom: 16px;
        display: block;
        color: #2b3139;
    }

    .search-empty p {
        font-size: 18px;
    }

    [data-theme="light"] .search-overlay {
        background: rgba(255, 255, 255, 0.95);
    }

    [data-theme="light"] .search-input-wrapper {
        border-color: rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .search-input-wrapper input {
        color: #1a1a1a;
    }

    [data-theme="light"] .search-input-wrapper input::placeholder {
        color: #9aa0a6;
    }

    [data-theme="light"] .search-results .result-item {
        color: #5f6368;
    }

    [data-theme="light"] .search-results .result-item:hover {
        background: rgba(0, 0, 0, 0.04);
        color: #1a1a1a;
    }

    [data-theme="light"] .search-results .result-item .info .title {
        color: #1a1a1a;
    }

    [data-theme="light"] .search-results .result-item .info .sub {
        color: #5f6368;
    }

    [data-theme="light"] .search-empty {
        color: #9aa0a6;
    }

    [data-theme="light"] .search-empty i {
        color: #dadce0;
    }

    /* ============================================
       MINHA LISTA - ESTILO NETFLIX (COM CONTROLE DE ACESSO)
       ============================================ */
    .minha-lista-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(8px);
        z-index: 9997;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 24px 40px;
    }

    .minha-lista-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .minha-lista-container {
        width: 100%;
        max-width: 1100px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .minha-lista-container::-webkit-scrollbar {
        width: 4px;
    }

    .minha-lista-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .minha-lista-container::-webkit-scrollbar-thumb {
        background: #e50914;
        border-radius: 4px;
    }

    .minha-lista-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 16px;
    }

    .minha-lista-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .minha-lista-header h2 i {
        color: #e50914;
    }

    .minha-lista-header .close-btn {
        background: none;
        border: none;
        color: #8a929f;
        font-size: 28px;
        cursor: pointer;
        padding: 4px 8px;
        transition: color 0.3s ease;
    }

    .minha-lista-header .close-btn:hover {
        color: #fff;
    }

    .minha-lista-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .minha-lista-item {
        background: var(--bg-card);
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        position: relative;
    }

    .minha-lista-item:hover {
        transform: translateY(-4px) scale(1.02);
        border-color: #e50914;
        box-shadow: 0 12px 40px rgba(229, 9, 20, 0.15);
    }

    .minha-lista-item.locked {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .minha-lista-item.locked:hover {
        transform: none;
        border-color: transparent;
        box-shadow: none;
    }

    .minha-lista-item .thumb {
        position: relative;
        padding-bottom: 56.25%;
        background: #0b0e11;
        overflow: hidden;
    }

    .minha-lista-item .thumb img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
        transition: opacity 0.3s;
    }

    .minha-lista-item:hover .thumb img {
        opacity: 1;
    }

    .minha-lista-item .thumb .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);
        transition: var(--transition);
    }

    .minha-lista-item:hover .thumb .play-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .minha-lista-item .thumb .play-overlay i {
        font-size: 36px;
        color: white;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        opacity: 0.7;
        transition: var(--transition);
    }

    .minha-lista-item:hover .thumb .play-overlay i {
        opacity: 1;
        transform: scale(1.1);
    }

    .minha-lista-item .thumb .remove-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        cursor: pointer;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        opacity: 0;
        transform: scale(0.8);
    }

    .minha-lista-item:hover .thumb .remove-btn {
        opacity: 1;
        transform: scale(1);
    }

    .minha-lista-item .thumb .remove-btn:hover {
        background: #e50914;
        transform: scale(1.1);
    }

    .minha-lista-item .thumb .lock-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #f6465d;
    }

    .minha-lista-item .info {
        padding: 10px 12px;
    }

    .minha-lista-item .info .title {
        font-weight: 600;
        font-size: 13px;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .minha-lista-item .info .sub {
        font-size: 11px;
        color: #8a929f;
        margin-top: 2px;
    }

    .minha-lista-item .info .access-badge {
        font-size: 9px;
        font-weight: 700;
        padding: 1px 8px;
        border-radius: 10px;
        display: inline-block;
        margin-top: 4px;
    }

    .minha-lista-item .info .access-badge.free {
        background: rgba(14, 203, 129, 0.15);
        color: #0ecb81;
    }

    .minha-lista-item .info .access-badge.locked {
        background: rgba(246, 70, 93, 0.15);
        color: #f6465d;
    }

    .minha-lista-item .info .access-badge.premium {
        background: rgba(240, 185, 11, 0.15);
        color: #f0b90b;
    }

    .minha-lista-empty {
        text-align: center;
        padding: 60px 20px;
        color: #5e6673;
    }

    .minha-lista-empty i {
        font-size: 64px;
        margin-bottom: 16px;
        display: block;
        color: #2b3139;
    }

    .minha-lista-empty h3 {
        font-size: 24px;
        color: #b3b3b3;
        margin-bottom: 8px;
    }

    .minha-lista-empty p {
        font-size: 16px;
    }

    [data-theme="light"] .minha-lista-overlay {
        background: rgba(255, 255, 255, 0.95);
    }

    [data-theme="light"] .minha-lista-header h2 {
        color: #1a1a1a;
    }

    [data-theme="light"] .minha-lista-header .close-btn {
        color: #5f6368;
    }

    [data-theme="light"] .minha-lista-header .close-btn:hover {
        color: #1a1a1a;
    }

    [data-theme="light"] .minha-lista-item .info .title {
        color: #1a1a1a;
    }

    [data-theme="light"] .minha-lista-empty h3 {
        color: #1a1a1a;
    }

    [data-theme="light"] .minha-lista-empty i {
        color: #dadce0;
    }

    /* ============================================
       MOBILE MENU
       ============================================ */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 340px;
        max-width: 88vw;
        background: #0b0e11;
        z-index: 9999;
        transform: translateX(-110%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        border-right: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5);
        padding: 0;
    }

    [data-theme="light"] .mobile-menu-container {
        background: #ffffff;
        border-right: 1px solid rgba(0, 0, 0, 0.04);
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.08);
    }

    .mobile-menu-container.active {
        transform: translateX(0);
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background: #0b0e11;
        position: sticky;
        top: 0;
        z-index: 5;
    }

    [data-theme="light"] .mobile-header {
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .mobile-header .brand {
        font-size: 22px;
        font-weight: 800;
        color: #e50914;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-header .brand i {
        font-size: 20px;
    }

    .mobile-header .close-btn {
        width: 38px;
        height: 38px;
        border: none;
        background: rgba(255, 255, 255, 0.06);
        color: #b3b3b3;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
        flex-shrink: 0;
    }

    [data-theme="light"] .mobile-header .close-btn {
        background: rgba(0, 0, 0, 0.04);
        color: #5f6368;
    }

    .mobile-header .close-btn:hover {
        background: #e50914;
        color: #fff;
    }

    .mobile-user-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 24px;
        margin: 10px 16px 6px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    [data-theme="light"] .mobile-user-card {
        background: rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .mobile-user-card .user-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, #e50914, #b20710);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        flex-shrink: 0;
        text-transform: uppercase;
    }

    .mobile-user-card .user-details {
        flex: 1;
        min-width: 0;
    }

    .mobile-user-card .user-details .name {
        font-weight: 600;
        font-size: 15px;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    [data-theme="light"] .mobile-user-card .user-details .name {
        color: #1a1a1a;
    }

    .mobile-user-card .user-details .status {
        font-size: 12px;
        color: #8a929f;
        margin-top: 1px;
    }

    .mobile-user-card .user-details .status.premium {
        color: #f0b90b;
    }

    .mobile-user-card .logout-link {
        color: #5e6673;
        font-size: 16px;
        flex-shrink: 0;
        text-decoration: none;
        transition: color 0.2s;
        padding: 4px;
    }

    .mobile-user-card .logout-link:hover {
        color: #e50914;
    }

    .mobile-nav-list {
        padding: 8px 0 16px;
    }

    .mobile-nav-list .section-label {
        padding: 14px 24px 6px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: #5e6673;
    }

    .mobile-nav-list .nav-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 12px 24px;
        color: #b3b3b3;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s ease;
        cursor: pointer;
        border-left: 3px solid transparent;
        min-height: 48px;
    }

    [data-theme="light"] .mobile-nav-list .nav-link {
        color: #3c4043;
    }

    .mobile-nav-list .nav-link:hover {
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        border-left-color: #e50914;
    }

    [data-theme="light"] .mobile-nav-list .nav-link:hover {
        background: rgba(0, 0, 0, 0.04);
        color: #1a1a1a;
    }

    .mobile-nav-list .nav-link.active {
        color: #fff;
        border-left-color: #e50914;
    }

    [data-theme="light"] .mobile-nav-list .nav-link.active {
        color: #1a1a1a;
    }

    .mobile-nav-list .nav-link .icon {
        width: 24px;
        text-align: center;
        font-size: 17px;
        flex-shrink: 0;
        color: #5e6673;
    }

    [data-theme="light"] .mobile-nav-list .nav-link .icon {
        color: #9aa0a6;
    }

    .mobile-nav-list .nav-link .label {
        flex: 1;
    }

    .mobile-nav-list .nav-link .tag {
        background: #e50914;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 2px 12px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .mobile-nav-list .nav-link .tag.primary {
        background: #f0b90b;
        color: #0b0e11;
    }

    .mobile-nav-list .nav-link .tag.success {
        background: #0ecb81;
        color: #0b0e11;
    }

    .mobile-nav-list .divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.06);
        margin: 4px 24px;
    }

    [data-theme="light"] .mobile-nav-list .divider {
        background: rgba(0, 0, 0, 0.06);
    }

    .mobile-footer {
        padding: 12px 24px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    [data-theme="light"] .mobile-footer {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .mobile-footer .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #5e6673;
        transition: all 0.25s ease;
        text-decoration: none;
        font-size: 16px;
        flex-shrink: 0;
    }

    [data-theme="light"] .mobile-footer .social-link {
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-footer .social-link:hover {
        border-color: #e50914;
        color: #e50914;
        background: rgba(229, 9, 20, 0.06);
        transform: translateY(-2px);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 768px) {
        .netflix-menu .menu-nav {
            display: none;
        }

        .netflix-menu .menu-right .menu-btn.hide-mobile {
            display: none;
        }

        .netflix-menu .user-profile .user-name {
            display: none;
        }

        .netflix-menu .user-profile .profile-arrow {
            display: none;
        }

        .netflix-menu {
            padding: 0 4%;
            height: 60px;
        }

        .netflix-menu .menu-logo .logo-text {
            font-size: 18px;
        }

        .netflix-menu .menu-logo .logo-icon {
            font-size: 22px;
        }

        .netflix-menu .menu-right .menu-btn {
            padding: 4px 6px;
            font-size: 16px;
        }

        .netflix-menu .menu-right .menu-btn .badge {
            font-size: 9px;
            min-width: 16px;
            height: 16px;
            top: -3px;
            right: -3px;
            border-width: 1.5px;
        }

        .netflix-menu .user-profile .avatar {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }

        .mobile-menu-container {
            width: 320px;
            max-width: 90vw;
        }

        .search-overlay {
            padding-top: 60px;
        }

        .search-input-wrapper input {
            font-size: 20px;
        }

        .search-results .result-item .thumb {
            width: 80px;
            height: 45px;
        }

        .minha-lista-overlay {
            padding-top: 60px;
            padding-left: 16px;
            padding-right: 16px;
        }

        .minha-lista-header h2 {
            font-size: 22px;
        }

        .minha-lista-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
        }
    }

    @media (min-width: 769px) {
        .netflix-menu .mobile-menu-toggle {
            display: none;
        }

        .mobile-overlay,
        .mobile-menu-container {
            display: none !important;
        }
    }

    @media (max-width: 480px) {
        .netflix-menu .menu-right .menu-btn {
            padding: 3px 4px;
            font-size: 14px;
        }

        .netflix-menu .menu-logo .logo-text {
            font-size: 15px;
        }

        .netflix-menu .menu-logo .logo-icon {
            font-size: 18px;
        }

        .netflix-menu .user-profile .avatar {
            width: 24px;
            height: 24px;
            font-size: 10px;
        }

        .netflix-menu .menu-right .menu-btn .badge {
            font-size: 8px;
            min-width: 14px;
            height: 14px;
            top: -4px;
            right: -4px;
            border-width: 1.5px;
        }

        .mobile-menu-container {
            width: 290px;
            max-width: 92vw;
        }

        .mobile-header {
            padding: 12px 18px 10px;
        }

        .mobile-header .brand {
            font-size: 18px;
        }

        .mobile-header .close-btn {
            width: 32px;
            height: 32px;
            font-size: 15px;
        }

        .mobile-user-card {
            padding: 12px 16px;
            margin: 8px 12px 4px;
        }

        .mobile-user-card .user-avatar {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }

        .mobile-user-card .user-details .name {
            font-size: 13px;
        }

        .mobile-user-card .user-details .status {
            font-size: 11px;
        }

        .mobile-nav-list .nav-link {
            padding: 10px 18px;
            font-size: 14px;
            min-height: 42px;
            gap: 12px;
        }

        .mobile-nav-list .nav-link .icon {
            font-size: 15px;
            width: 20px;
        }

        .mobile-nav-list .section-label {
            padding: 10px 18px 4px;
            font-size: 10px;
        }

        .mobile-nav-list .divider {
            margin: 2px 18px;
        }

        .mobile-footer {
            padding: 10px 18px 18px;
            gap: 8px;
        }

        .mobile-footer .social-link {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }

        .search-input-wrapper input {
            font-size: 16px;
        }

        .search-results .result-item .thumb {
            width: 60px;
            height: 34px;
        }

        .minha-lista-grid {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
        }

        .minha-lista-header h2 {
            font-size: 18px;
        }
    }