/* NGOMA STREAM Enhanced Design System */
:root {
    /* NGOMA STREAM Brand Colors - SynthWave '84 */
    --ngoma-red: #fe4450;
    --ngoma-red-dark: #c72d38;
    --ngoma-red-light: #ff7edb;
    
    /* SynthWave '84 Dark Theme Colors */
    --ngoma-black: #1a1528;
    --ngoma-black-light: #241b2f;
    --ngoma-dark-gray: #262335;
    --ngoma-gray: #34294f;
    --ngoma-medium-gray: #4d3d75;
    --ngoma-light-gray: #d1c7e8;
    --ngoma-white: #FFFFFF;
    --ngoma-off-white: #f5f3fa;
    
    /* Accent Colors - SynthWave '84 Expanded */
    --ngoma-green: #72f1b8;
    --ngoma-green-light: #9dfcd1;
    --ngoma-blue: #36f9f6;
    --ngoma-blue-light: #70faf8;
    --ngoma-purple: #b893ff;
    --ngoma-purple-light: #d4bfff;
    --ngoma-orange: #f97e72;
    --ngoma-orange-light: #ff9b91;
    --ngoma-yellow: #fede5d;
    --ngoma-yellow-light: #ffe685;
    --ngoma-teal: #36f9f6;
    --ngoma-teal-light: #70faf8;
    --ngoma-pink: #ff7edb;
    --ngoma-pink-light: #ffa3e5;
    
    /* Spacing */
    --ngoma-xs: 4px;
    --ngoma-sm: 8px;
    --ngoma-md: 16px;
    --ngoma-lg: 24px;
    --ngoma-xl: 32px;
    --ngoma-2xl: 48px;
    
    /* Border Radius */
    --ngoma-radius-sm: 4px;
    --ngoma-radius-md: 8px;
    --ngoma-radius-lg: 12px;
    --ngoma-radius-full: 50%;
    
    /* Transitions - Optimized for performance */
    --ngoma-transition-fast: 0.1s ease;
    --ngoma-transition-normal: 0.2s ease;
    --ngoma-transition-slow: 0.3s ease;
    
    /* Shadows */
    --ngoma-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --ngoma-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --ngoma-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --ngoma-shadow-glow: 0 0 20px rgba(229, 9, 20, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--ngoma-black);
    color: var(--ngoma-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Navigation */
.ngoma-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    transition: background-color var(--ngoma-transition-normal), backdrop-filter var(--ngoma-transition-normal);
    backdrop-filter: blur(10px);
}

.ngoma-navbar.scrolled {
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--ngoma-shadow-md);
}

.ngoma-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--ngoma-lg);
    height: 72px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.ngoma-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 8px;
    transition: transform var(--ngoma-transition-normal);
}

.ngoma-logo:hover {
    transform: scale(1.03);
}

.logo-ngoma {
    color: #fe4450;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 42, 133, 0.7), 0 0 30px rgba(255, 126, 219, 0.4);
}

.logo-stream {
    color: #36f9f6;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(54, 249, 246, 0.6);
}

.ngoma-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--ngoma-lg);
    margin: 0;
}

/* Hide desktop nav menu on mobile/tablet */
@media (max-width: 1023px) {
    .ngoma-nav-menu {
        display: none;
    }
}

.ngoma-nav-link {
    color: var(--ngoma-light-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--ngoma-transition-fast);
    position: relative;
}

.ngoma-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ngoma-white);
    transition: width var(--ngoma-transition-normal);
}

.ngoma-nav-link:hover,
.ngoma-nav-link.active {
    color: var(--ngoma-white);
}

.ngoma-nav-link:hover::after,
.ngoma-nav-link.active::after {
    width: 100%;
}

.ngoma-nav-right {
    display: flex;
    align-items: center;
    gap: var(--ngoma-md);
}

/* Icon Buttons */
.ngoma-icon-btn {
    background: transparent;
    border: none;
    color: var(--ngoma-white);
    font-size: 20px;
    cursor: pointer;
    padding: var(--ngoma-sm);
    border-radius: var(--ngoma-radius-full);
    transition: all var(--ngoma-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.ngoma-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.ngoma-icon-btn.has-badge {
    position: relative;
}

.ngoma-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--ngoma-red);
    color: var(--ngoma-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--ngoma-radius-full);
    min-width: 18px;
    text-align: center;
}

/* Mobile Menu Button */
.ngoma-mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--ngoma-white);
    font-size: 24px;
    cursor: pointer;
    padding: var(--ngoma-sm);
    min-width: 44px;
    min-height: 44px;
}

/* Show mobile menu button on mobile/tablet */
@media (max-width: 1023px) {
    .ngoma-mobile-menu-btn {
        display: block;
    }
}

/* Enhanced Hero Section */
.ngoma-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ngoma-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(30, 30, 30, 0.1) 0%, 
        rgba(30, 30, 30, 0.4) 50%, 
        var(--ngoma-black) 100%);
    z-index: 1;
}

.ngoma-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(30, 30, 30, 0.8) 0%, 
        rgba(30, 30, 30, 0.4) 40%, 
        transparent 70%);
    z-index: 2;
}

.ngoma-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--ngoma-lg);
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.ngoma-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--ngoma-sm);
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.9), rgba(255, 149, 0, 0.8));
    backdrop-filter: blur(10px);
    padding: var(--ngoma-sm) var(--ngoma-md);
    border-radius: var(--ngoma-radius-sm);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: var(--ngoma-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.ngoma-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: var(--ngoma-md);
    line-height: 1.1;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.ngoma-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: var(--ngoma-lg);
    color: var(--ngoma-off-white);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.ngoma-hero-meta {
    display: flex;
    align-items: center;
    gap: var(--ngoma-md);
    margin-bottom: var(--ngoma-lg);
    font-size: 15px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.ngoma-match-score {
    color: var(--ngoma-green);
    font-weight: 700;
}

.ngoma-rating-badge {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 2px 8px;
    border-radius: var(--ngoma-radius-sm);
    font-weight: 700;
    font-size: 13px;
}

.ngoma-premium-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--ngoma-white);
    padding: 4px 12px;
    border-radius: var(--ngoma-radius-sm);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--ngoma-xs);
}

.ngoma-hero-buttons {
    display: flex;
    gap: var(--ngoma-md);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Enhanced Buttons */
.ngoma-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--ngoma-sm);
    padding: var(--ngoma-md) var(--ngoma-xl);
    border-radius: var(--ngoma-radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ngoma-transition-fast);
    border: none;
    text-decoration: none;
}

.ngoma-btn-primary {
    background-color: var(--ngoma-white);
    color: var(--ngoma-black);
}

.ngoma-btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
    box-shadow: var(--ngoma-shadow-md);
}

.ngoma-btn-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    backdrop-filter: blur(10px);
    color: var(--ngoma-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ngoma-btn-secondary:hover {
    background-color: rgba(109, 109, 110, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ngoma-btn-accent {
    background-color: var(--ngoma-red);
    color: var(--ngoma-white);
}

.ngoma-btn-accent:hover {
    background-color: var(--ngoma-red-light);
    transform: translateY(-2px);
    box-shadow: var(--ngoma-shadow-glow);
}

.ngoma-btn-green {
    background-color: var(--ngoma-green);
    color: var(--ngoma-white);
}

.ngoma-btn-green:hover {
    background-color: var(--ngoma-green-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(70, 211, 105, 0.3);
}

.ngoma-btn-blue {
    background-color: var(--ngoma-blue);
    color: var(--ngoma-white);
}

.ngoma-btn-blue:hover {
    background-color: var(--ngoma-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 113, 235, 0.3);
}

.ngoma-btn-purple {
    background-color: var(--ngoma-purple);
    color: var(--ngoma-white);
}

.ngoma-btn-purple:hover {
    background-color: var(--ngoma-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}

.ngoma-btn-orange {
    background-color: var(--ngoma-orange);
    color: var(--ngoma-white);
}

.ngoma-btn-orange:hover {
    background-color: var(--ngoma-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.3);
}

.ngoma-btn-teal {
    background-color: var(--ngoma-teal);
    color: var(--ngoma-white);
}

.ngoma-btn-teal:hover {
    background-color: var(--ngoma-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.3);
}

/* Content Sections */
.ngoma-main {
    min-height: 100vh;
    padding-top: 72px;
}

.ngoma-section {
    padding: var(--ngoma-xl) 0;
    margin: 0 var(--ngoma-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ngoma-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.ngoma-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ngoma-lg);
    gap: var(--ngoma-md);
}

.ngoma-header-left {
    display: flex;
    align-items: center;
    gap: var(--ngoma-md);
}

.ngoma-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ngoma-white);
}

.ngoma-section-link {
    color: var(--ngoma-light-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--ngoma-xs);
    transition: color var(--ngoma-transition-fast);
}

.ngoma-section-link:hover {
    color: var(--ngoma-white);
}

/* Enhanced Carousel */
.ngoma-carousel {
    display: flex;
    gap: var(--ngoma-md);
    overflow-x: auto;
    padding: var(--ngoma-lg) 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ngoma-carousel::-webkit-scrollbar {
    display: none;
}

/* Enhanced Cards */
.ngoma-card {
    flex: 0 0 auto;
    width: 280px;
    transition: transform var(--ngoma-transition-fast), 
                z-index var(--ngoma-transition-fast),
                box-shadow var(--ngoma-transition-fast);
    cursor: pointer;
    position: relative;
    border-radius: var(--ngoma-radius-md);
    overflow: hidden;
    will-change: transform;
}

/* Desktop-specific card sizing */
@media (min-width: 1024px) {
    .ngoma-card {
        width: 280px;
    }
}

/* Ensure carousel cards have proper sizing */
.carousel-card {
    flex: 0 0 auto;
    width: 280px;
}

@media (min-width: 1024px) {
    .carousel-card {
        width: 280px;
    }
}

/* Card title visible below image - not in overlay */
.ngoma-card-info {
    padding: var(--ngoma-md) 0;
    position: relative;
    z-index: 1;
    background: var(--ngoma-black);
}

.ngoma-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--ngoma-xs);
    color: var(--ngoma-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ngoma-card-meta {
    font-size: 13px;
    color: var(--ngoma-light-gray);
    display: flex;
    gap: var(--ngoma-sm);
    align-items: center;
}

/* Card actions only in overlay (hidden by default) */
.ngoma-card-actions {
    display: flex;
    gap: var(--ngoma-sm);
    opacity: 0;
    transition: opacity var(--ngoma-transition-fast);
}

.ngoma-card:hover .ngoma-card-actions {
    opacity: 1;
}

.ngoma-card:hover {
    transform: scale(1.05) translateY(-4px);
    z-index: 10;
    box-shadow: var(--ngoma-shadow-lg);
}

.ngoma-card-image {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: var(--ngoma-radius-md);
    background-color: var(--ngoma-gray);
    transition: transform var(--ngoma-transition-fast);
}

.ngoma-card:hover .ngoma-card-image {
    transform: scale(1.02);
}

.ngoma-card-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background-color: var(--ngoma-gray);
    border-radius: var(--ngoma-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ngoma-light-gray);
    font-size: 32px;
}

.ngoma-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    padding: var(--ngoma-lg) var(--ngoma-md) var(--ngoma-md);
    opacity: 0;
    transition: opacity var(--ngoma-transition-fast), transform var(--ngoma-transition-fast);
    transform: translateY(10px);
}

.ngoma-card:hover .ngoma-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.ngoma-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--ngoma-xs);
    color: var(--ngoma-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive card title */
@media (max-width: 767px) {
    .ngoma-card-title {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .ngoma-card-title {
        font-size: 15px;
    }
}

.ngoma-card-meta {
    font-size: 13px;
    color: var(--ngoma-light-gray);
    display: flex;
    gap: var(--ngoma-sm);
    align-items: center;
    margin-bottom: var(--ngoma-sm);
}

.ngoma-card-actions {
    display: flex;
    gap: var(--ngoma-sm);
}

.ngoma-card-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--ngoma-radius-full);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.6);
    color: var(--ngoma-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ngoma-transition-fast);
    font-size: 14px;
}

.ngoma-card-btn:hover {
    border-color: var(--ngoma-white);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.ngoma-card-btn.primary {
    background: var(--ngoma-white);
    color: var(--ngoma-black);
    border-color: var(--ngoma-white);
}

.ngoma-card-btn.green {
    background: var(--ngoma-green);
    border-color: var(--ngoma-green);
}

.ngoma-card-btn.blue {
    background: var(--ngoma-blue);
    border-color: var(--ngoma-blue);
}

.ngoma-card-btn.purple {
    background: var(--ngoma-purple);
    border-color: var(--ngoma-purple);
}

.ngoma-card-btn.orange {
    background: var(--ngoma-orange);
    border-color: var(--ngoma-orange);
}

/* Special Card Variants */
.ngoma-new-card {
    position: relative;
}

.ngoma-new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ngoma-red);
    color: var(--ngoma-white);
    padding: 4px 10px;
    border-radius: var(--ngoma-radius-sm);
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.ngoma-top-10-card {
    position: relative;
}

.ngoma-top-10-number {
    position: absolute;
    bottom: -15px;
    left: -15px;
    font-size: 140px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px var(--ngoma-black);
    z-index: 5;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Progress Bar */
.ngoma-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 5;
}

.ngoma-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ngoma-red), var(--ngoma-orange));
    transition: width var(--ngoma-transition-normal);
}

.ngoma-progress-badge {
    background-color: var(--ngoma-red);
    color: var(--ngoma-white);
    padding: 2px 6px;
    border-radius: var(--ngoma-radius-sm);
    font-size: 11px;
    font-weight: 700;
}

/* Section Badge */
.ngoma-section-badge {
    background: var(--ngoma-red);
    color: var(--ngoma-white);
    padding: 4px 12px;
    border-radius: var(--ngoma-radius-sm);
    font-size: 12px;
    font-weight: 700;
    margin-left: var(--ngoma-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.ngoma-section-badge.green {
    background: var(--ngoma-green);
}

.ngoma-section-badge.blue {
    background: var(--ngoma-blue);
}

.ngoma-section-badge.purple {
    background: var(--ngoma-purple);
}

.ngoma-section-badge.orange {
    background: var(--ngoma-orange);
}

.ngoma-section-badge.teal {
    background: var(--ngoma-teal);
}

/* Enhanced Grid */
.ngoma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--ngoma-lg);
    padding: var(--ngoma-lg) 0;
}

.ngoma-grid-card {
    cursor: pointer;
    transition: transform var(--ngoma-transition-normal);
}

.ngoma-grid-card:hover {
    transform: scale(1.05);
}

.ngoma-grid-card-image {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: var(--ngoma-radius-md);
    overflow: hidden;
    background: var(--ngoma-black-light);
}

.ngoma-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ngoma-transition-normal);
}

.ngoma-grid-card:hover .ngoma-grid-card-image img {
    transform: scale(1.05);
}

.ngoma-grid-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--ngoma-transition-normal);
}

.ngoma-grid-card:hover .ngoma-grid-card-overlay {
    opacity: 1;
}

.ngoma-grid-card-actions {
    display: flex;
    gap: var(--ngoma-sm);
}

.ngoma-grid-card-info {
    padding: var(--ngoma-md) 0;
}

.ngoma-grid-card-title {
    color: var(--ngoma-white);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: var(--ngoma-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* Responsive grid card title */
@media (max-width: 374px) {
    .ngoma-grid-card-title {
        font-size: 12px;
    }
}

@media (min-width: 375px) and (max-width: 767px) {
    .ngoma-grid-card-title {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .ngoma-grid-card-title {
        font-size: 15px;
    }
}

.ngoma-grid-card-meta {
    display: flex;
    gap: var(--ngoma-sm);
    color: var(--ngoma-light-gray);
    font-size: 13px;
    margin-bottom: var(--ngoma-sm);
}

.ngoma-match-score {
    color: var(--ngoma-green);
    font-weight: 600;
}

.ngoma-content-year {
    color: var(--ngoma-light-gray);
}

.ngoma-content-rating {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 4px;
    font-size: 11px;
    border-radius: var(--ngoma-radius-sm);
}

.ngoma-grid-card-genres {
    display: flex;
    gap: var(--ngoma-xs);
    flex-wrap: wrap;
}

.ngoma-genre-tag {
    color: var(--ngoma-light-gray);
    font-size: 12px;
    background: var(--ngoma-gray);
    padding: 2px 8px;
    border-radius: var(--ngoma-radius-sm);
}

/* Content Page Styles */
.ngoma-content-page {
    min-height: 100vh;
    padding-top: 72px;
}

/* Add bottom padding for mobile navigation */
@media (max-width: 1023px) {
    .ngoma-content-page {
        padding-bottom: 80px;
    }
    
    .netflix-main {
        padding-bottom: 80px;
    }
}

.ngoma-page-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.9), var(--ngoma-black));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -72px -20px 40px -20px;
}

.ngoma-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.2) 0%, transparent 70%);
}

.ngoma-hero-content {
    text-align: center;
    color: var(--ngoma-white);
    z-index: 1;
}

.ngoma-page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: var(--ngoma-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--ngoma-md);
}

.ngoma-page-subtitle {
    font-size: 18px;
    color: var(--ngoma-light-gray);
}

/* Filter Bar */
.ngoma-filter-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--ngoma-lg);
    margin-bottom: var(--ngoma-xl);
    border-radius: var(--ngoma-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ngoma-filter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--ngoma-lg);
}

.ngoma-filter-tabs {
    display: flex;
    gap: var(--ngoma-sm);
    flex-wrap: wrap;
}

.ngoma-filter-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ngoma-white);
    padding: var(--ngoma-sm) var(--ngoma-md);
    border-radius: var(--ngoma-radius-full);
    cursor: pointer;
    transition: all var(--ngoma-transition-fast);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--ngoma-xs);
}

.ngoma-filter-tab:hover,
.ngoma-filter-tab.active {
    background: var(--ngoma-white);
    color: var(--ngoma-black);
    border-color: var(--ngoma-white);
}

.ngoma-filter-actions {
    display: flex;
    align-items: center;
    gap: var(--ngoma-md);
}

.ngoma-filter-sort {
    position: relative;
}

.ngoma-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ngoma-white);
    padding: var(--ngoma-sm) var(--ngoma-md);
    border-radius: var(--ngoma-radius-sm);
    cursor: pointer;
    font-size: 14px;
    transition: all var(--ngoma-transition-fast);
}

.ngoma-select:hover {
    border-color: var(--ngoma-white);
    background: rgba(255, 255, 255, 0.15);
}

.ngoma-select:focus {
    outline: none;
    border-color: var(--ngoma-red);
}

.ngoma-select option {
    background: var(--ngoma-dark-gray);
    color: var(--ngoma-white);
}

/* Advanced Filters */
.ngoma-advanced-filters {
    display: none;
    margin-top: var(--ngoma-lg);
    padding-top: var(--ngoma-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ngoma-advanced-filters.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.advanced-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--ngoma-lg);
    margin-bottom: var(--ngoma-lg);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--ngoma-xs);
}

.filter-label {
    color: var(--ngoma-light-gray);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Avatar */
.nav-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--ngoma-transition-fast);
}

.ngoma-icon-btn:hover .nav-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Mobile Avatar */
.mobile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.advanced-filter-actions {
    display: flex;
    gap: var(--ngoma-md);
    justify-content: flex-end;
}

/* Pagination */
.ngoma-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--ngoma-lg);
    padding: var(--ngoma-2xl) 0;
}

.ngoma-pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ngoma-white);
    padding: var(--ngoma-md) var(--ngoma-xl);
    border-radius: var(--ngoma-radius-sm);
    cursor: pointer;
    transition: all var(--ngoma-transition-fast);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--ngoma-xs);
    font-weight: 500;
}

.ngoma-pagination-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--ngoma-white);
    transform: translateY(-2px);
}

.ngoma-pagination-info {
    color: var(--ngoma-light-gray);
    font-size: 14px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Skeleton Loading */
.ngoma-skeleton {
    background: linear-gradient(90deg, 
        var(--ngoma-gray) 0%, 
        var(--ngoma-medium-gray) 50%, 
        var(--ngoma-gray) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--ngoma-radius-sm);
}

/* Toast Notifications */
.ngoma-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--ngoma-dark-gray);
    color: var(--ngoma-white);
    padding: var(--ngoma-md) var(--ngoma-lg);
    border-radius: var(--ngoma-radius-md);
    box-shadow: var(--ngoma-shadow-lg);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: var(--ngoma-md);
    transform: translateX(120%);
    transition: transform var(--ngoma-transition-normal);
    max-width: 400px;
}

.ngoma-toast.show {
    transform: translateX(0);
}

.ngoma-toast-success {
    border-left: 4px solid var(--ngoma-green);
}

.ngoma-toast-error {
    border-left: 4px solid var(--ngoma-red);
}

.ngoma-toast-warning {
    border-left: 4px solid var(--ngoma-yellow);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: var(--ngoma-sm);
    flex: 1;
}

.toast-content i {
    font-size: 18px;
}

.ngoma-toast-success .toast-content i {
    color: var(--ngoma-green);
}

.ngoma-toast-error .toast-content i {
    color: var(--ngoma-red);
}

.ngoma-toast-warning .toast-content i {
    color: var(--ngoma-yellow);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--ngoma-light-gray);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ngoma-radius-sm);
    transition: all var(--ngoma-transition-fast);
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ngoma-white);
}

/* Modal Styles */
.ngoma-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: var(--ngoma-lg);
}

.ngoma-modal-content {
    background: var(--ngoma-dark-gray);
    border-radius: var(--ngoma-radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--ngoma-shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ngoma-modal-close {
    position: absolute;
    top: var(--ngoma-md);
    right: var(--ngoma-md);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: var(--ngoma-white);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: var(--ngoma-radius-full);
    cursor: pointer;
    z-index: 10;
    transition: all var(--ngoma-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ngoma-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.ngoma-modal-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--ngoma-radius-lg) var(--ngoma-radius-lg) 0 0;
}

.ngoma-modal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(20, 20, 20, 0.3) 0%, 
        rgba(20, 20, 20, 0.9) 100%);
}

.ngoma-modal-hero-content {
    position: relative;
    z-index: 1;
    padding: var(--ngoma-2xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ngoma-modal-hero-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: var(--ngoma-md);
    color: var(--ngoma-white);
}

.ngoma-modal-hero-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--ngoma-light-gray);
    margin-bottom: var(--ngoma-lg);
    max-width: 600px;
}

.ngoma-modal-buttons {
    display: flex;
    gap: var(--ngoma-md);
}

.ngoma-modal-details {
    padding: var(--ngoma-2xl);
}

.ngoma-modal-meta {
    display: flex;
    gap: var(--ngoma-lg);
    margin-bottom: var(--ngoma-lg);
    font-size: 14px;
    color: var(--ngoma-light-gray);
}

.ngoma-modal-genres {
    display: flex;
    gap: var(--ngoma-sm);
    flex-wrap: wrap;
}

/* Mobile Menu */
.ngoma-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--ngoma-black);
    z-index: 2000;
    transition: left var(--ngoma-transition-normal);
    box-shadow: var(--ngoma-shadow-lg);
    overflow-y: auto;
}

.ngoma-mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ngoma-lg);
    border-bottom: 1px solid var(--ngoma-gray);
}

.mobile-menu-nav {
    list-style: none;
    padding: var(--ngoma-lg);
    margin: 0;
}

.mobile-nav-link {
    display: block;
    color: var(--ngoma-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: var(--ngoma-md) 0;
    border-bottom: 1px solid var(--ngoma-gray);
    transition: color var(--ngoma-transition-fast);
}

.mobile-nav-link:hover {
    color: var(--ngoma-red);
}

.mobile-menu-user {
    padding: var(--ngoma-lg);
    border-top: 1px solid var(--ngoma-gray);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: var(--ngoma-md);
    margin-bottom: var(--ngoma-lg);
    font-size: 16px;
    font-weight: 600;
}

.mobile-user-info i {
    font-size: 32px;
    color: var(--ngoma-red);
}

.mobile-menu-link {
    display: block;
    color: var(--ngoma-light-gray);
    text-decoration: none;
    font-size: 15px;
    padding: var(--ngoma-md) 0;
    transition: color var(--ngoma-transition-fast);
}

.mobile-menu-link:hover {
    color: var(--ngoma-white);
}

.mobile-menu-auth {
    padding: var(--ngoma-lg);
    border-top: 1px solid var(--ngoma-gray);
    display: flex;
    flex-direction: column;
    gap: var(--ngoma-md);
}

/* Overlay for mobile menu */
.ngoma-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ngoma-transition-normal), visibility var(--ngoma-transition-normal);
}

.ngoma-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Dropdown */
.ngoma-dropdown {
    background-color: var(--ngoma-dark-gray);
    border: 1px solid var(--ngoma-gray);
    min-width: 220px;
    margin-top: var(--ngoma-sm);
    border-radius: var(--ngoma-radius-md);
    box-shadow: var(--ngoma-shadow-lg);
    overflow: hidden;
}

.ngoma-dropdown .dropdown-item {
    color: var(--ngoma-light-gray);
    padding: 12px 20px;
    font-size: 14px;
    transition: all var(--ngoma-transition-fast);
    display: flex;
    align-items: center;
    gap: var(--ngoma-sm);
}

.ngoma-dropdown .dropdown-item:hover {
    background-color: var(--ngoma-gray);
    color: var(--ngoma-white);
}

.ngoma-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

.ngoma-dropdown .dropdown-divider {
    border-color: var(--ngoma-gray);
    margin: var(--ngoma-xs) 0;
}

/* Netflix-Authentic Profile Dropdown & Switcher */
.nav-profile-trigger {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background var(--ngoma-transition-fast);
}

.nav-profile-trigger.dropdown-toggle::after,
.nav-profile-trigger::after {
    display: none !important;
    content: none !important;
}

.nav-profile-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-profile-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    position: relative;
    flex-shrink: 0;
    background: #1f222e;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-avatar-initial {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e50914, #b20710);
}

.nav-kids-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff9500;
    color: #000;
    font-size: 7px;
    font-weight: 900;
    padding: 0 3px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.nav-caret {
    color: #fff;
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-profile-trigger[aria-expanded="true"] .nav-caret {
    transform: rotate(180deg);
}

.ngoma-profile-dropdown {
    background: rgba(18, 20, 26, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255,255,255,0.06) !important;
    border-radius: 12px !important;
    min-width: 250px;
    padding: 8px 0 !important;
    margin-top: 10px !important;
}

.profile-dropdown-profiles {
    padding: 4px 0;
}

.profile-switch-form {
    margin: 0;
    padding: 0;
}

.profile-switcher-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.profile-switcher-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.profile-switcher-item.active {
    background: rgba(229, 9, 20, 0.08);
}

.switcher-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #2a2d39;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.switcher-pin-lock {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #e50914;
    border-radius: 50%;
    font-size: 8px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.switcher-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #CBD5E1;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-switcher-item:hover .switcher-name {
    color: #fff;
}

.switcher-badge {
    color: #2ed573;
    font-size: 11px;
    margin-left: auto;
}

.dropdown-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: #94A3B8;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dropdown-link-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.dropdown-link-item i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: #94A3B8;
    transition: color 0.15s ease;
}

.dropdown-link-item:hover i {
    color: #e50914;
}

.dropdown-link-item.manage-link {
    font-size: 13px;
    color: #CBD5E1;
    margin-top: 4px;
}

.dropdown-link-item.logout-link {
    color: #ff6b72;
}

.dropdown-link-item.logout-link:hover {
    background: rgba(229, 9, 20, 0.12);
    color: #e50914;
}

.dropdown-link-item.logout-link i {
    color: #ff6b72;
}

.dropdown-sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

/* Search Enhancement */
.ngoma-search-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ngoma-black);
    padding: var(--ngoma-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ngoma-transition-normal);
    transform: translateY(-20px);
}

.ngoma-search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ngoma-search-input-large {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ngoma-search-input-large input {
    width: 100%;
    background: var(--ngoma-gray);
    border: 2px solid var(--ngoma-medium-gray);
    color: var(--ngoma-white);
    padding: var(--ngoma-md) var(--ngoma-lg);
    border-radius: var(--ngoma-radius-md);
    font-size: 18px;
    transition: all var(--ngoma-transition-fast);
}

.ngoma-search-input-large input:focus {
    outline: none;
    border-color: var(--ngoma-red);
    background: var(--ngoma-dark-gray);
}

.ngoma-search-input-large input::placeholder {
    color: var(--ngoma-light-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ngoma-nav-menu {
        gap: var(--ngoma-md);
    }
    
    .ngoma-hero-title {
        font-size: 48px;
    }
    
    .ngoma-card {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .ngoma-nav-menu {
        display: none;
    }
    
    .ngoma-mobile-menu-btn {
        display: block;
    }
    
    .ngoma-hero-title {
        font-size: 36px;
    }
    
    .ngoma-hero-description {
        font-size: 16px;
    }
    
    .ngoma-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .ngoma-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ngoma-card {
        width: 180px;
    }
    
    .ngoma-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--ngoma-md);
    }
}

@media (max-width: 480px) {
    .ngoma-nav-container {
        padding: 0 var(--ngoma-md);
    }
    
    .ngoma-hero-title {
        font-size: 28px;
    }
    
    .ngoma-hero-description {
        font-size: 14px;
    }
    
    .ngoma-section {
        margin: 0 var(--ngoma-md);
    }
    
    .ngoma-card {
        width: 140px;
    }
    
    .ngoma-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

/* ==========================================================================
   NETFLIX-GRADE ENHANCEMENTS: CAROUSEL SLIDERS, SEARCH FLYOUT, QUICK MODAL
   ========================================================================== */

/* 1. Carousel Arrow Navigation */
.carousel-container-relative {
    position: relative;
    width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: calc(100% - 32px);
    max-height: 240px;
    background: rgba(8, 9, 12, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 6px;
}

.carousel-container-relative:hover .carousel-arrow {
    opacity: 0.85;
}

.carousel-arrow:hover {
    opacity: 1 !important;
    background: rgba(229, 9, 20, 0.85);
    border-color: #E50914;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.6);
}

.carousel-arrow-prev {
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.carousel-arrow-next {
    right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

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

/* 2. Continue Watching Progress Bar */
.watch-progress-bar-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    z-index: 4;
}

.watch-progress-bar-fill {
    height: 100%;
    background: #E50914;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px #E50914;
}

.resume-badge-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(8, 9, 12, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 9, 20, 0.5);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 3. Card Interactive Actions & Hover Popover */
.card-btn-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.card-btn-circle:hover {
    background: #FFFFFF;
    color: #000000;
    transform: scale(1.15);
    border-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.card-btn-circle.play {
    background: #FFFFFF;
    color: #000000;
}

.card-btn-circle.play:hover {
    background: #E50914;
    color: #FFFFFF;
    border-color: #E50914;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

.card-btn-circle.is-fav {
    background: rgba(70, 211, 105, 0.25);
    border-color: #46D369;
    color: #46D369;
}

.card-btn-circle.is-fav:hover {
    background: #46D369;
    color: #000;
}

/* 4. Navbar Live Search Flyout */
.navbar-live-search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.navbar-search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(25, 28, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 5px 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
}

.navbar-search-input-wrapper:focus-within {
    background: rgba(18, 20, 28, 0.95);
    border-color: #E50914;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.navbar-search-icon {
    color: #94A3B8;
    font-size: 14px;
    margin-right: 8px;
    cursor: pointer;
}

.navbar-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 13px;
    width: 200px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-search-input:focus {
    width: 200px;
}

.navbar-search-close {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 12px;
    cursor: pointer;
    display: none;
    padding: 0 4px;
}

.navbar-search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    max-height: 420px;
    overflow-y: auto;
    background: rgba(15, 17, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(229, 9, 20, 0.15);
    z-index: 1000;
    display: none;
}

.navbar-search-results-dropdown.active {
    display: block;
    animation: fadeInFlyout 0.25s ease-out;
}

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

.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    transition: background 0.2s ease;
}

.search-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-dropdown-thumb {
    width: 42px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    background: #202430;
    flex-shrink: 0;
}

.search-dropdown-info {
    flex: 1;
    min-width: 0;
}

.search-dropdown-title {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.search-dropdown-meta {
    font-size: 11px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 5. Quick Cinematic Details Modal */
.quick-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.quick-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    background: #141720;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(229, 9, 20, 0.2);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-modal-backdrop.active .quick-modal-dialog {
    transform: scale(1) translateY(0);
}

.quick-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(8, 9, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.quick-modal-close:hover {
    background: #E50914;
    border-color: #E50914;
    transform: rotate(90deg);
}

.quick-modal-hero {
    position: relative;
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.quick-modal-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #141720 0%, rgba(20, 23, 32, 0.4) 60%, transparent 100%);
}

.quick-modal-hero-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.quick-modal-body {
    padding: 24px 32px 32px;
}

.quick-modal-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.quick-modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.quick-modal-overview {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.quick-modal-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Toast feedback */
.ngoma-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(18, 20, 28, 0.95);
    border: 1px solid rgba(229, 9, 20, 0.5);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.ngoma-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PREMIUM NGOMA STREAM FOOTER
   ========================================================================== */
.ngoma-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(8, 9, 13, 0.4) 0%, rgba(6, 7, 10, 0.95) 25%, #050608 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 5% 45px;
    color: #8E95A5;
    font-size: 14px;
    z-index: 10;
}

@media (max-width: 768px) {
    .ngoma-footer {
        padding: 45px 5% 110px; /* Extra padding for mobile bottom bar */
    }
}

.ngoma-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* Brand Row */
.footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.footer-brand-info {
    max-width: 480px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-family: var(--font-display, 'Inter', sans-serif);
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    color: #8E95A5;
    margin: 0;
}

/* Social Buttons */
.footer-social-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.footer-social-btn:hover {
    background: #E50914;
    border-color: #E50914;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

/* Columns Grid */
.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 45px;
}

@media (max-width: 992px) {
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-col-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    color: #8E95A5;
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link-item:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

/* Divider */
.footer-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
    margin-bottom: 28px;
}

/* Bottom Sub-Footer */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-meta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #CBD5E1;
}

.footer-features-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #5A6275;
}

.footer-copyright-text {
    font-size: 13px;
    color: #6C7486;
    margin: 0;
}

/* ==========================================================================
   NETFLIX PROFILE NAVIGATION & INSTANT SWITCHER (1-CLICK HOUSEHOLD SWITCH)
   ========================================================================== */

.ngoma-profile-nav-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-profile-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 3px 6px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.nav-profile-trigger:hover,
.nav-profile-trigger:focus,
.ngoma-profile-nav-wrapper.show .nav-profile-trigger {
    background: rgba(255, 255, 255, 0.08);
}

.nav-profile-thumb-wrapper {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-profile-thumb {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.2s ease, transform 0.2s ease;
    background-color: #1a1d28;
}

.nav-profile-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 15px;
}

.nav-profile-trigger:hover .nav-profile-thumb,
.ngoma-profile-nav-wrapper.show .nav-profile-thumb {
    border-color: #FFFFFF;
    transform: scale(1.04);
}

.nav-kids-tag {
    position: absolute;
    bottom: -3px;
    right: -5px;
    background: #FF9900;
    color: #000000;
    font-size: 7.5px;
    font-weight: 900;
    padding: 1px 3px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-caret {
    color: #CBD5E1;
    font-size: 11px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.nav-profile-trigger:hover .nav-caret,
.ngoma-profile-nav-wrapper.show .nav-caret {
    color: #FFFFFF;
}

.ngoma-profile-nav-wrapper.show .nav-caret {
    transform: rotate(180deg);
}

/* Dropdown Menu Netflix */
.ngoma-profile-dropdown {
    min-width: 260px;
    max-width: 290px;
    background: rgba(14, 16, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 12px 0 8px 0;
    margin-top: 10px !important;
    animation: dropdownPop 0.2s ease-out;
}

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

.dropdown-profiles-section {
    padding: 4px 6px;
}

.dropdown-section-label {
    padding: 4px 12px 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748B;
}

.dropdown-profiles-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-profile-item {
    border-radius: 6px;
    transition: background 0.15s ease;
}

.dropdown-profile-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-profile-item.is-active {
    background: rgba(229, 9, 20, 0.12);
}

.profile-switch-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    color: #FFFFFF;
}

.switcher-thumb-wrap {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.switcher-thumb {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background-color: #1a1d28;
}

.switcher-kids-pill {
    position: absolute;
    bottom: -3px;
    right: -4px;
    background: #FF9900;
    color: #000;
    font-size: 7px;
    font-weight: 900;
    padding: 0 3px;
    border-radius: 2px;
    line-height: 1;
}

.switcher-name {
    flex: 1;
    font-size: 13.5px;
    font-weight: 600;
    color: #F1F5F9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-profile-indicator {
    color: #46D369;
    font-size: 13px;
    margin-left: auto;
}

.pin-locked-indicator {
    color: #64748B;
    font-size: 12px;
    margin-left: auto;
}

.dropdown-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-top: 4px;
    font-size: 13px;
    color: #94A3B8;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.dropdown-action-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(2px);
}

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

.dropdown-nav-section {
    display: flex;
    flex-direction: column;
    padding: 0 6px;
}

.dropdown-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.dropdown-nav-item i {
    width: 16px;
    text-align: center;
    font-size: 14px;
    color: #94A3B8;
    transition: color 0.15s ease;
}

.dropdown-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.dropdown-nav-item:hover i {
    color: #FFFFFF;
}

.dropdown-nav-item.is-admin {
    color: #FF5A60;
}

.dropdown-nav-item.is-admin i {
    color: #FF5A60;
}

.dropdown-logout-section {
    padding: 0 6px;
}

.dropdown-logout-btn {
    color: #EF4444 !important;
    font-weight: 600;
}

.dropdown-logout-btn i {
    color: #EF4444 !important;
}

.dropdown-logout-btn:hover {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #FF6B6B !important;
}

/* ==========================================================================
   PIN MODAL FOR SWITCHING
   ========================================================================== */

.navbar-pin-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pinBackdropFade 0.2s ease-out;
}

@keyframes pinBackdropFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.navbar-pin-modal-card {
    background: #141722;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 32px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    text-align: center;
    position: relative;
    animation: pinModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pinModalPop {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.navbar-pin-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.navbar-pin-close-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-pin-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.3);
    color: #E50914;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.navbar-pin-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.navbar-pin-modal-subtitle {
    font-size: 13.5px;
    color: #94A3B8;
    margin-bottom: 22px;
    line-height: 1.5;
}

.pin-digits-wrap {
    margin-bottom: 16px;
}

.navbar-pin-input {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
    font-size: 26px;
    letter-spacing: 12px;
    font-weight: 800;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-pin-input:focus {
    border-color: #E50914;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.navbar-pin-error-text {
    color: #EF4444;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.navbar-pin-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-pin-secondary {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #CBD5E1;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pin-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}

.btn-pin-primary {
    padding: 10px 24px;
    background: #E50914;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
}

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

/* ==========================================================================
   MOBILE PROFILE SPECIFICS
   ========================================================================== */

.mobile-bottom-avatar {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-user-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.mobile-profile-switcher {
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-switcher-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.mobile-profiles-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.mobile-profiles-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-prof-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    min-width: 60px;
}

.mobile-prof-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    background-color: #1a1d28;
}

.mobile-prof-btn.active .mobile-prof-thumb {
    border-color: #E50914;
}

.mobile-prof-name {
    font-size: 11.5px;
    color: #CBD5E1;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
    text-align: center;
}

/* ==========================================================================
   Navbar Login Button - Compact & Lifted
   ========================================================================== */
.navbar-login-btn {
    padding: 5px 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    height: 32px !important;
    min-height: 32px !important;
    line-height: 1 !important;
    border-radius: 9999px !important;
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
    margin-top: -3px !important;
    margin-bottom: 3px !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 3px 12px rgba(255, 42, 133, 0.45) !important;
    transition: all 0.2s ease !important;
}

.navbar-login-btn:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(255, 126, 219, 0.6) !important;
}

/* ==========================================================================
   Streamlined Compact Footer
   ========================================================================== */
.ngoma-footer.ngoma-footer-compact {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 21, 40, 0.95) 0%, #120e1c 100%) !important;
    border-top: 1px solid rgba(255, 126, 219, 0.2) !important;
    padding: 18px 4% !important;
    color: #9d95af !important;
    font-size: 13.5px !important;
    z-index: 10;
}

@media (max-width: 768px) {
    .ngoma-footer.ngoma-footer-compact {
        padding: 20px 4% 85px !important;
    }
}

.ngoma-footer-compact-inner {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-compact-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-compact-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    font-family: var(--font-display, 'Inter', sans-serif);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.footer-compact-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.footer-compact-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-compact-link {
    color: #b8b0c8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-compact-link:hover {
    color: #36f9f6 !important;
    text-shadow: 0 0 8px rgba(54, 249, 246, 0.6);
}

.footer-compact-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-btn.compact {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 126, 219, 0.2);
    color: #b8b0c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn.compact:hover {
    background: linear-gradient(135deg, #ff2a85, #fe4450);
    border-color: #ff7edb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 68, 80, 0.45);
}

@media (max-width: 900px) {
    .ngoma-footer-compact-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .footer-compact-brand {
        flex-direction: column;
        gap: 4px;
    }
    .footer-compact-nav {
        gap: 16px;
    }
}