    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
        background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
        color: #fff;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 120px;
        overflow-x: auto;
    }
        
    /* Ultra Premium Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }
    
    .logo-gradient {
        font-size: 20px;
        font-weight: 800;
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
    }
    
    .logo-premium {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        opacity: 0.8;
    }
    
    .logo-badge {
        display: flex;
        align-items: center;
        gap: 4px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .logo-badge i {
        font-size: 10px;
    }
    
    .nav-icons {
        display: flex;
        gap: 25px;
        align-items: center;
    }
    
    .nav-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 12px;
        position: relative;
    }
    
    .nav-icon:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.1);
        color: #e1306c;
    }
    
    .nav-icon .icon-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .nav-icon:hover .icon-container {
        background: rgba(225, 48, 108, 0.2);
        transform: scale(1.1);
    }
    
    .nav-icon i {
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .nav-icon:hover i {
        transform: scale(1.1);
    }
    
    .nav-label {
        font-size: 10px;
        font-weight: 500;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .nav-icon:hover .nav-label {
        opacity: 1;
        color: #e1306c;
    }
    
    /* Fixed Content Container */
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
    }
    
    .section-title {
        text-align: center;
        margin: 15px 0 25px;
        font-size: 28px;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        letter-spacing: 0.5px;
    }
        
    .row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
        gap: 15px;
    }
    
    .three-column {
        width: calc(33.333% - 10px);
        flex-shrink: 0;
    }
    
    .full-width {
        width: 100%;
        max-height: 300px;
    }
        
    .content-box {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        min-height:170px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        overflow: hidden;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
    .content-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .full-box {
        height: 250px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
    }
    
    .full-content {
        text-align: center;
        padding: 20px;
        z-index: 2;
        max-width: 800px;
    }
    
    
        
        /* Ultra Premium Footer */
    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .footer-top {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .search-container {
        width: 100%;
        max-width: 500px;
        position: relative;
    }
    
    .search-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 4px;
        transition: all 0.3s ease;
    }
    
    .search-wrapper:focus-within {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
    }
    
    .search-input {
        flex: 1;
        padding: 12px 15px 12px 45px;
        border-radius: 25px;
        border: none;
        background: transparent;
        color: white;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .search-input:focus {
        outline: none;
    }
    
    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .search-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        z-index: 2;
    }
    
    .search-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 4px;
    }
    
    .search-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    
    .search-btn i {
        font-size: 12px;
    }
    
    .footer-bottom {
        height: 60px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 20px;
    }
            
    .footer-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 16px;
        position: relative;
        flex: 1;
        max-width: 20%;
    }
    
    .footer-tab .tab-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .footer-tab .upload-icon {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .footer-tab i {
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .footer-tab .tab-label {
        font-size: 10px;
        font-weight: 500;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .footer-tab.active,
    .footer-tab:hover {
        color: #e1306c;
        transform: translateY(-3px);
    }
    
    .footer-tab.active .tab-icon,
    .footer-tab:hover .tab-icon {
        background: rgba(225, 48, 108, 0.2);
        transform: scale(1.1);
    }
    
    .footer-tab.active i,
    .footer-tab:hover i {
        transform: scale(1.1);
    }
    
    .footer-tab.active .tab-label,
    .footer-tab:hover .tab-label {
        opacity: 1;
        color: #e1306c;
    }
    
    /* Search Results Styles */
    .search-results-fullscreen {
        position: fixed;
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 140px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 9999;
        display: none;
        overflow-y: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .search-results-fullscreen.active {
        display: block;
    }
    
    .search-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 20px 20px 15px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .search-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .search-title i {
        color: #667eea;
    }
    
    .search-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .search-close:hover {
        background: #f0f0f0;
        color: #333;
    }
    
    .search-content {
        padding: 0 20px 20px;
    }
    
    .search-section {
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .section-title i {
        color: #667eea;
    }
    
    .search-result-item {
        display: flex;
        align-items: center;
        padding: 15px;
        border-radius: 15px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    
    .search-result-item:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }
    
    .search-result-item:hover .search-result-name,
    .search-result-item:hover .search-result-type,
    .search-result-item:hover .search-result-stats {
        color: white;
    }
    
    .search-result-avatar-container {
        position: relative;
        margin-right: 15px;
    }
    
    .search-result-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f0f0f0;
    }
    
    .search-result-item:hover .search-result-avatar {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .online-indicator {
        position: absolute;
        bottom: 2px;
        right: 2px;
        width: 12px;
        height: 12px;
        background: #4CAF50;
        border-radius: 50%;
        border: 2px solid white;
    }
    
    .search-result-content {
        flex: 1;
    }
    
    .search-result-name {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .search-result-type {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 3px;
    }
    
    .search-result-stats {
        font-size: 0.8rem;
        color: #999;
    }
    
    .search-result-stats span {
        margin-right: 8px;
    }
    
    .no-results {
        text-align: center;
        padding: 40px;
        color: #666;
        font-size: 1.1rem;
    }
    
    .copyright {
        position: fixed;
        bottom: 12px;
        right: 20px;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.5);
    }
    
    /* Non-responsive layout - fixed sizes */
    .content-box, .full-box, .navbar, .footer, .row, .three-column, .full-width {
        box-sizing: border-box;
    }
        
        /* Ensure layout doesn't change on any screen size */
        @media (max-width: 1100px) {
        .container {
            padding: 20px 15px;
        }
        
        .row {
            gap: 12px;
        }
        
        .three-column {
            width: calc(33.333% - 8px);
        }
    }
    
    @media (max-width: 768px) {
        body {
            padding-top: 70px;
            padding-bottom: 110px;
        }
        
        .navbar {
            height: 70px;
        }
        
        .nav-container {
            padding: 0 15px;
        }
        
        .logo-gradient {
            font-size: 18px;
        }
        
        .logo-premium {
            font-size: 12px;
        }
        
        .logo-badge {
            padding: 4px 8px;
            font-size: 10px;
        }
        
        .nav-icons {
            gap: 15px;
        }
        
        .nav-icon {
            padding: 6px 8px;
        }
        
        .nav-icon .icon-container {
            width: 32px;
            height: 32px;
        }
        
        .nav-icon i {
            font-size: 16px;
        }
        
        .nav-label {
            font-size: 9px;
        }
    
    .section-title {
        font-size: 24px;
        margin: 10px 0 20px;
    }
    
    .content-box {
        min-height: 250px;
        padding: 15px;
    }

    
    .full-box {
        height: 200px;
    }
        
    .full-content h2 {
        font-size: 26px;
    }
        
    .full-content p {
        font-size: 14px;
    }
    
    .footer {
        height: 110px;
    }
    
    .footer-top {
        height: 55px;
    }
    
    .footer-bottom {
        height: 55px;
        gap: 15px;
    }
    
    .footer-tab {
        padding: 6px 8px;
    }
    
    .footer-tab .tab-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-tab i {
        font-size: 16px;
    }
    
    .footer-tab .tab-label {
        font-size: 9px;
    }
            
        
        }
.col{
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    background: blue;
    margin: 10px 0!important;
    border-radius: 12px;

}

@media (max-width: 500px) {
    .full-width{
        max-height: 160px;
    }
}
@media (max-width: 768px){
    .full-width{
        max-height: 260px;
    }
}
/*slider*/
   
                        .carousel-container {
                            position: relative;
                            padding: 20px 0;
                        }
                        
                        .swiper {
                            width: 100%;
                            height: 450px;
                        }
                        
                        .swiper-wrapper {
                            align-items: center;
                        }
                        
                        .swiper-slide {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            perspective: 1000px;
                            height: auto;
                        }
                        
                        .swiper-slide a {
                            display: block;
                            width: 100%;
                            height: 0;
                            padding-bottom: 100%;
                            border-radius: 50%;
                            overflow: hidden;
                            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
                            transform: scale(0.85);
                            transition: transform 0.5s ease, box-shadow 0.5s ease;
                            position: relative;
                        }
                        
                        .swiper-slide-active a {
                            transform: scale(1);
                            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
                            z-index: 10;
                        }
                        
                        .swiper-slide img {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 0.5s ease;
                        }
                        
                        .swiper-slide a:hover img {
                            transform: scale(1.1);
                        }
                        
                        .image-info {
                            position: absolute;
                            bottom: -60px;
                            left: 0;
                            right: 0;
                            color: white;
                            text-align: center;
                            opacity: 0;
                            transition: opacity 0.3s ease;
                            font-weight: 600;
                            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
                        }
                        
                        .swiper-slide-active .image-info {
                            opacity: 1;
                        }
                        
                        .footer {
                            margin-top: 40px;
                            color: rgba(255,255,255,0.8);
                            font-size: 0.9rem;
                        }
                        
                        /* Responsive adjustments */
                        @media (max-width: 1199px) {
                            .swiper {
                                height: 380px;
                            }
                        }
                        
                        @media (max-width: 767px) {
                            .swiper {
                                height: 320px;
                            }
                            
                            .header h1 {
                                font-size: 2.2rem;
                            }
                            
                            .header p {
                                font-size: 1rem;
                            }
                        }
                        
                        @media (max-width: 480px) {
                            .swiper {
                                height: 280px;
                            }
                        }
                        
                        .responsive-info {
                            background: rgba(255, 255, 255, 0.15);
                            border-radius: 10px;
                            padding: 15px;
                            margin: 20px auto;
                            max-width: 600px;
                            color: white;
                            font-weight: 500;
                            backdrop-filter: blur(5px);
                            border: 1px solid rgba(255, 255, 255, 0.2);
                        }
                        
                        .info-grid {
                            display: grid;
                            grid-template-columns: repeat(3, 1fr);
                            gap: 10px;
                            margin-top: 10px;
                        }
                        
                        .info-item {
                            padding: 8px;
                            border-radius: 6px;
                            background: rgba(0, 0, 0, 0.2);
                        }

/* Premium Nav Items */
.premium-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #fff;
    min-width: 80px;
}

.premium-nav-item:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.premium-nav-item .nav-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.premium-nav-item:hover .nav-label {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.premium-nav-item i {
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.premium-nav-item:hover i {
    transform: scale(1.2);
    color: #f09433;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-nav-item {
        min-width: 70px;
        padding: 6px 8px;
    }
    
    .premium-nav-item .nav-label {
        font-size: 9px;
    }
    
    .premium-nav-item i {
        font-size: 16px;
    }
}

/* Message Badge */
.icon-container {
    position: relative;
    display: inline-block;
}

.message-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    }
}

.premium-nav-item:hover .message-badge {
    animation: none;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.8);
}

/* Responsive badge */
@media (max-width: 768px) {
    .message-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #2ed573, #1e90ff);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
    animation: cartPulse 2s infinite;
    z-index: 10;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(46, 213, 115, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
    }
}

.premium-nav-item:hover .cart-badge {
    animation: none;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(46, 213, 115, 0.8);
}

/* Responsive cart badge */
@media (max-width: 768px) {
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

/* Language Dropdown */
.lang-dropdown-trigger {
    position: relative;
    cursor: pointer;
    outline: none;
}
.lang-dropdown {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    min-width: 160px;
    background: rgba(30, 30, 40, 0.98);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 2px rgba(255,255,255,0.05);
    padding: 10px 0;
    z-index: 1001;
    animation: fadeInLang 0.3s cubic-bezier(.39,.575,.565,1.000);
}
.lang-dropdown.show {
    display: block;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: none;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    border-left: 4px solid transparent;
}
.lang-option span {
    font-size: 1.2rem;
}
.lang-option:hover, .lang-option.active {
    background: linear-gradient(90deg, #f09433 0%, #e6683c 50%, #dc2743 100%);
    color: #fff;
    border-left: 4px solid #fff;
    padding-left: 28px;
}
@keyframes fadeInLang {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .lang-dropdown {
        min-width: 120px;
        top: 40px;
    }
    .lang-option {
        font-size: 0.95rem;
        padding: 8px 14px;
    }
}

/* Sign Out Button */
.sign-out-btn {
    background: linear-gradient(135deg, rgba(255,71,87,0.1), rgba(255,71,87,0.05)) !important;
    border: 1px solid rgba(255,71,87,0.2) !important;
}

.sign-out-btn:hover {
    background: linear-gradient(135deg, rgba(255,71,87,0.3), rgba(255,71,87,0.2)) !important;
    border: 1px solid rgba(255,71,87,0.5) !important;
    box-shadow: 0 8px 25px rgba(255,71,87,0.3), 0 0 20px rgba(255,71,87,0.1) !important;
}

.sign-out-btn .nav-label {
    background: linear-gradient(45deg, #ff4757, #ff3742) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.sign-out-btn:hover .nav-label {
    background: linear-gradient(45deg, #ff3742, #ff4757) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.sign-out-btn i {
    color: #ff4757 !important;
    transition: all 0.3s ease !important;
}

.sign-out-btn:hover i {
    color: #ff3742 !important;
    transform: scale(1.2) rotate(5deg) !important;
    filter: drop-shadow(0 4px 8px rgba(255,71,87,0.4)) !important;
}

/* Instagram Post Styles - Clean & Functional */
.instagram-post-container {
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    overflow: hidden;
}

.post-card {
    width: 100%;
}

/* Post Header */
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #dbdbdb;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.user-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
    text-decoration: none;
}

.location {
    font-size: 12px;
    color: #8e8e8e;
}

.post-options {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.post-options:hover {
    background: #fafafa;
}

/* Post Image */
.post-image-container {
    width: 100%;
    background: #000;
}

.post-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Actions */
.post-actions {
    padding: 12px 16px;
    border-bottom: 1px solid #dbdbdb;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #262626;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #fafafa;
    transform: scale(1.1);
}

.like-btn {
    transition: all 0.2s;
}

.save-btn {
    margin-left: auto;
}

/* Post Info */
.post-info {
    padding: 12px 16px;
    border-bottom: 1px solid #dbdbdb;
}

.likes-count {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 8px;
}

.post-caption {
    margin-bottom: 8px;
    line-height: 1.4;
}

.caption-text {
    font-size: 14px;
    color: #262626;
}

.post-time {
    font-size: 12px;
    color: #8e8e8e;
    text-transform: uppercase;
}

/* Comments Section */
.comments-section {
    padding: 12px 16px;
    border-bottom: 1px solid #dbdbdb;
}

.comment {
    margin-bottom: 8px;
    line-height: 1.4;
}

.comment-text {
    font-size: 14px;
    color: #262626;
}

.view-comments {
    font-size: 14px;
    color: #8e8e8e;
    cursor: pointer;
    margin-top: 8px;
}

.view-comments:hover {
    color: #262626;
}

/* Add Comment */
.add-comment {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.comment-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #262626;
    background: transparent;
}

.comment-input::placeholder {
    color: #8e8e8e;
}

.post-comment-btn {
    background: none;
    border: none;
    color: #8e8e8e;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.post-comment-btn:disabled {
    cursor: not-allowed;
}

.post-comment-btn:not(:disabled) {
    color: #0095f6;
}

.post-comment-btn:not(:disabled):hover {
    color: #00376b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .instagram-post-container {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .post-header {
        padding: 12px 16px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .action-btn {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .post-header {
        padding: 10px 12px;
    }
    
    .post-actions {
        padding: 10px 12px;
    }
    
    .post-info {
        padding: 10px 12px;
    }
    
    .comments-section {
        padding: 10px 12px;
    }
    
    .add-comment {
        padding: 12px;
    }
}

/* Ultra Pro Instagram Post Styles */
.ultra-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Stories Bar */
.stories-bar {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.story-item.active {
    transform: scale(1.1);
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f09433;
    padding: 2px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

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

.story-item span {
    font-size: 12px;
    color: white;
    font-weight: 500;
    text-align: center;
}

/* Enhanced Post Header */
.user-avatar-container {
    position: relative;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #44b700;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.post-time-header {
    font-size: 11px;
    color: #8e8e8e;
}

/* Options Menu */
.options-menu {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.options-menu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #262626;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #fafafa;
}

.dropdown-item i {
    width: 16px;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.post-image.active {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

/* Music Player */
.music-player {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    z-index: 10;
}

.music-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.music-btn:hover {
    background: rgba(255,255,255,0.2);
}

.progress-bar {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #f09433;
    width: 0%;
    transition: width 0.1s ease;
}

/* Enhanced Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.like-count, .comment-count {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tag {
    color: #0095f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.tag:hover {
    color: #00376b;
}

/* Enhanced Comments */
.comment {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

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

.comment-content {
    flex: 1;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.comment-time {
    font-size: 12px;
    color: #8e8e8e;
}

.like-comment, .reply-comment {
    background: none;
    border: none;
    font-size: 12px;
    color: #8e8e8e;
    cursor: pointer;
    transition: color 0.2s;
}

.like-comment:hover, .reply-comment:hover {
    color: #262626;
}

/* Enhanced Add Comment */
.add-comment {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #dbdbdb;
}

.emoji-picker {
    position: relative;
}

.emoji-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #8e8e8e;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
}

.emoji-btn:hover {
    background: #fafafa;
    color: #262626;
}

.comment-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #262626;
    background: transparent;
    padding: 8px 0;
}

.post-comment-btn {
    background: none;
    border: none;
    color: #0095f6;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.2s;
    padding: 8px 16px;
    border-radius: 8px;
}

.post-comment-btn.active {
    opacity: 1;
    background: rgba(0,149,246,0.1);
}

.post-comment-btn:disabled {
    cursor: not-allowed;
}

/* Responsive Design for Ultra Pro */
@media (max-width: 768px) {
    .ultra-pro {
        padding: 10px;
    }
    
    .stories-bar {
        padding: 10px;
        gap: 10px;
    }
    
    .story-avatar {
        width: 50px;
        height: 50px;
    }
    
    .image-carousel {
        height: 300px;
    }
    
    .music-player {
        padding: 8px 15px;
    }
    
    .music-info span {
        font-size: 12px;
    }
    
    .progress-bar {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .stories-bar {
        gap: 8px;
    }
    
    .story-item {
        min-width: 60px;
    }
    
    .story-avatar {
        width: 40px;
        height: 40px;
    }
    
    .image-carousel {
        height: 250px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .music-player {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Post Container - Simple */
.post-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.post-container h2 {
    color: #262626;
    margin-bottom: 10px;
}

.post-container p {
    color: #8e8e8e;
    font-size: 16px;
}

/* Order Badge */
.order-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ffa502, #ff6348);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(255, 165, 2, 0.4);
    animation: orderPulse 2s infinite;
    z-index: 10;
}

@keyframes orderPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 165, 2, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 165, 2, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 165, 2, 0.4);
    }
}

.premium-nav-item:hover .order-badge {
    animation: none;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 165, 2, 0.8);
}

/* Responsive order badge */
@media (max-width: 768px) {
    .order-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

@media (min-width: 351px) and (max-width: 600px) {
    .nav-icons {
        gap: 10px !important;
    }
    .premium-nav-item,
    .nav-icon {
        min-width: 48px !important;
        padding: 4px 4px !important;
    }
    .premium-nav-item .nav-label {
        font-size: 8px !important;
    }
    .premium-nav-item i,
    .nav-icon i {
        font-size: 14px !important;
    }
}

/* ===== INBOX / MESSAGING STYLES ===== */
.inbox-container {
    max-width: 1200px;
    margin: 0 auto;
    height: calc(100vh - 170px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sol Panel - Söhbətlər Siyahısı */
.conversations-panel {
    width: 350px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.conversations-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.conversations-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.conversations-search {
    margin-top: 15px;
    position: relative;
}

.conversations-search input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.conversations-search input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.3);
}

.conversations-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.conversation-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.conversation-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.conversation-item.active {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(220, 39, 67, 0.3));
    border-left: 4px solid #e1306c;
}

.conversation-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.conversation-content {
    flex: 1;
    min-width: 0;
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.conversation-username {
    font-weight: 600;
    font-size: 14px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.conversation-message {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-type-icon {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.unread-badge {
    background: linear-gradient(45deg, #e1306c, #c13584);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Sağ Panel - Mesajlaşma */
.chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.chat-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-user-info {
    flex: 1;
}

.chat-username {
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 2px;
}

.chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.chat-actions {
    display: flex;
    gap: 10px;
}

.chat-action-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    max-width: 70%;
    animation: messageSlideIn 0.3s ease;
}

.message.sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message.received {
    align-self: flex-start;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message.sent .message-content {
    background: linear-gradient(135deg, #e1306c, #c13584);
    border: none;
}

.message-text {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.message-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    text-align: right;
}

.message-status {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
    justify-content: flex-end;
}

.status-icon {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.status-icon.read {
    color: #25d366; /* WhatsApp yaşıl rəngi */
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-style: italic;
}

.typing-dots {
    display: flex;
    gap: 2px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.chat-input {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-actions {
    display: flex;
    gap: 5px;
    padding: 0 10px;
}

.input-action-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: scale(1.1);
}

.message-input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    padding: 10px 15px;
    outline: none;
    resize: none;
    max-height: 100px;
    min-height: 20px;
}

.message-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #e1306c, #c13584);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.send-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    transform: none;
}

/* Boş vəziyyət */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 40px;
}

.empty-state i {
    font-size: 60px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.empty-state p {
    font-size: 14px;
    line-height: 1.5;
}

/* Animasiyalar */
@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Scrollbar stilləri */
.conversations-list::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.conversations-list::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.conversations-list::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.conversations-list::-webkit-scrollbar-thumb:hover,
.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Inbox */
@media (max-width: 768px) {
    .inbox-container {
        height: calc(100vh - 140px);
        border-radius: 0;
        flex-direction: column;
    }

    .conversations-panel {
        width: 100%;
        height: 40%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chat-panel {
        height: 60%;
    }

    .conversation-item {
        padding: 12px 15px;
    }

    .conversation-avatar {
        width: 40px;
        height: 40px;
    }

    .message {
        max-width: 85%;
    }

    .chat-header {
        padding: 15px;
    }

    .chat-messages {
        padding: 15px;
    }

    .chat-input {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .conversations-header {
        padding: 15px;
    }

    .conversations-header h2 {
        font-size: 20px;
    }

    .conversation-item {
        padding: 10px 12px;
    }

    .conversation-avatar {
        width: 35px;
        height: 35px;
    }

    .message {
        max-width: 90%;
    }

    .message-content {
        padding: 10px 14px;
    }

    .input-container {
        padding: 3px;
    }

    .input-action-btn {
        width: 30px;
        height: 30px;
    }

    .send-btn {
        width: 35px;
        height: 35px;
    }
}

.role-badge.pro-user {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    border-radius: 8px;
    padding: 3px 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 114, 255, 0.15);
}
.role-badge.premium-user {
    background: linear-gradient(90deg, #f7971e, #ffd200);
    color: #fff;
    border-radius: 8px;
    padding: 3px 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 210, 0, 0.15);
}

/* Video Layout Styles */
.action-center {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 320px;
}
.video-full {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 0;
}
.video-row {
    display: flex;
    gap: 0;
}
.video-half {
    width: 50%;
    aspect-ratio: 16/9;
}

/* --- Instagram Ultra Premium Chat --- */
.ig-chat-body {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ig-chat-container {
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    background: rgba(255,255,255,0.12);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    display: flex;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.ig-chat-sidebar {
    width: 320px;
    background: rgba(255,255,255,0.18);
    border-right: 1.5px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: width 0.3s;
}
.ig-chat-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ig-chat-sidebar-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.ig-chat-new {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.ig-chat-new:hover {
    background: linear-gradient(45deg, #fd1d1d, #fcb045);
    transform: scale(1.08);
}
.ig-chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 10px 0;
}
.ig-chat-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    position: relative;
    background: transparent;
}
.ig-chat-list-item.active, .ig-chat-list-item:hover {
    background: rgba(255,255,255,0.10);
}
.ig-chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 8px rgba(131,58,180,0.12);
}
.ig-chat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ig-chat-username {
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
}
.ig-chat-lastmsg {
    color: #e0e0e0;
    font-size: 0.95rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ig-chat-time {
    font-size: 0.85rem;
    color: #fcb045;
    font-weight: 500;
    margin-left: 8px;
}
.ig-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.10);
    position: relative;
}
.ig-chat-main-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.08);
}
.ig-chat-main-userinfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ig-chat-main-username {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}
.ig-chat-main-status {
    color: #4cd964;
    font-size: 0.95rem;
    font-weight: 500;
}
.ig-chat-main-actions {
    margin-left: auto;
    display: flex;
    gap: 12px;
}
.ig-chat-main-actions button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    opacity: 0.85;
}
.ig-chat-main-actions button:hover {
    color: #fd1d1d;
    opacity: 1;
}
.ig-chat-messages {
    flex: 1;
    padding: 32px 28px 24px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: transparent;
}
.ig-chat-message {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    animation: chatMsgIn 0.4s cubic-bezier(.4,2,.6,1) both;
}
.ig-chat-message-me {
    flex-direction: row-reverse;
}
.ig-chat-bubble {
    max-width: 60%;
    padding: 14px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    position: relative;
    word-break: break-word;
    transition: background 0.3s;
}
.ig-chat-message-me .ig-chat-bubble {
    background: linear-gradient(135deg, #fcb045, #fd1d1d, #833ab4);
    align-self: flex-end;
}
.ig-chat-input-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.08);
}
.ig-chat-input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 22px;
    border: none;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.05rem;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ig-chat-input:focus {
    background: rgba(255,255,255,0.28);
    box-shadow: 0 4px 16px rgba(252,176,69,0.15);
}
.ig-chat-attach, .ig-chat-send {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.ig-chat-attach:hover, .ig-chat-send:hover {
    background: linear-gradient(135deg, #fd1d1d, #fcb045);
    transform: scale(1.08);
}
@media (max-width: 900px) {
    .ig-chat-container {
        flex-direction: column;
        height: 100vh;
        width: 100vw;
        min-width: 0;
        min-height: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .ig-chat-sidebar {
        width: 100vw;
        min-height: 70px;
        max-height: 120px;
        border-radius: 0;
        border-right: none;
        border-bottom: 1.5px solid rgba(255,255,255,0.12);
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
    }
    .ig-chat-list {
        display: flex;
        flex-direction: row;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    .ig-chat-list-item {
        min-width: 120px;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 4px;
    }
    .ig-chat-avatar {
        width: 32px;
        height: 32px;
    }
    .ig-chat-main-header, .ig-chat-input-area {
        padding: 10px 6px;
    }
    .ig-chat-messages {
        padding: 10px 6px 8px 6px;
        gap: 10px;
    }
    .ig-chat-bubble {
        font-size: 0.95rem;
        padding: 8px 10px;
        max-width: 80vw;
    }
    .ig-chat-main {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        background: rgba(0,0,0,0.10);
        position: relative;
    }
    .ig-chat-main-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: rgba(0,0,0,0.12);
        border-radius: 0;
    }
    .ig-chat-input-area {
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: rgba(0,0,0,0.12);
        border-radius: 0;
    }
    .ig-chat-input {
        font-size: 1rem;
        padding: 10px 12px;
    }
    .ig-chat-attach, .ig-chat-send {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}
@media (max-width: 600px) {
    .ig-chat-container {
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }
    .ig-chat-sidebar {
        width: 100vw;
        min-height: 60px;
        max-height: 90px;
        border-radius: 0;
        padding: 0;
    }
    .ig-chat-main {
        border-radius: 0;
    }
    .ig-chat-main-header, .ig-chat-input-area {
        padding: 8px 4px;
    }
    .ig-chat-messages {
        padding: 8px 4px 6px 4px;
        gap: 8px;
    }
    .ig-chat-avatar {
        width: 28px;
        height: 28px;
    }
    .ig-chat-list-item {
        min-width: 90px;
        padding: 6px 2px;
    }
    .ig-chat-bubble {
        font-size: 0.90rem;
        padding: 7px 8px;
        max-width: 90vw;
    }
    .ig-chat-main-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: rgba(0,0,0,0.14);
        border-radius: 0;
    }
    .ig-chat-input-area {
        position: sticky;
        bottom: 0;
        z-index: 2;
        background: rgba(0,0,0,0.14);
        border-radius: 0;
    }
    .ig-chat-input {
        font-size: 0.98rem;
        padding: 8px 8px;
    }
    .ig-chat-attach, .ig-chat-send {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}
@media (min-width: 601px) and (max-width: 1100px) {
    .ig-chat-container {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }
    .ig-chat-sidebar {
        width: 260px;
        min-width: 180px;
        max-width: 320px;
        border-radius: 0;
    }
    .ig-chat-main {
        border-radius: 0;
    }
    .ig-chat-main-header, .ig-chat-input-area {
        padding: 14px 10px;
    }
    .ig-chat-messages {
        padding: 18px 10px 12px 10px;
        gap: 12px;
    }
    .ig-chat-avatar {
        width: 36px;
        height: 36px;
    }
    .ig-chat-list-item {
        min-width: 120px;
        padding: 8px 4px;
    }
    .ig-chat-bubble {
        font-size: 0.98rem;
        padding: 10px 14px;
        max-width: 70vw;
    }
}
@keyframes chatMsgIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
/* --- END Instagram Ultra Premium Chat --- */

/* --- Instagram Ultra Premium Mobile Chat Home --- */
.ig-chat-mobile {
    background: #18181c;
    min-height: 100vh;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.ig-chat-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px 10px 16px;
    background: #18181c;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ig-chat-back, .ig-chat-edit {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s;
}
.ig-chat-back:hover, .ig-chat-edit:hover {
    opacity: 1;
}
.ig-chat-profile-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
}
.ig-chat-profile-dot {
    color: #fd1d1d;
    font-size: 0.7rem;
    margin-left: 4px;
    margin-right: 8px;
}
.ig-chat-mobile-search {
    padding: 10px 16px 6px 16px;
    background: #18181c;
}
.ig-chat-mobile-search input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 18px;
    border: none;
    background: #23232a;
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}
.ig-chat-mobile-search input:focus {
    background: #282834;
}
.ig-chat-mobile-stories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 0 10px 12px;
    background: #18181c;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    scrollbar-width: none;
}
.ig-chat-mobile-stories::-webkit-scrollbar {
    display: none;
}
.ig-chat-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 68px;
    max-width: 68px;
    position: relative;
}
.ig-chat-story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: #23232a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.ig-chat-story .ig-chat-story-avatar {
    border: 3px solid #35353c;
}
.ig-chat-story-status.online {
    position: absolute;
    bottom: 12px;
    right: 8px;
    width: 13px;
    height: 13px;
    background: #4cd964;
    border: 2px solid #18181c;
    border-radius: 50%;
    z-index: 2;
}
.ig-chat-story-username {
    font-size: 0.92rem;
    color: #fff;
    text-align: center;
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ig-chat-story-note {
    font-size: 0.85rem;
    color: #bdbdbd;
    margin-bottom: 2px;
    text-align: center;
}
.ig-chat-mobile-messages {
    background: #18181c;
    padding-bottom: 16px;
}
.ig-chat-mobile-messages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 8px 16px;
}
.ig-chat-mobile-messages-header span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.ig-chat-requests {
    color: #fcb045;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.ig-chat-requests:hover {
    color: #fd1d1d;
}
.ig-chat-message-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 0 0 0;
}
.ig-chat-message-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 10px 16px;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
}
.ig-chat-message-item:hover {
    background: rgba(255,255,255,0.03);
}
.ig-chat-message-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #23232a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.ig-chat-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.ig-chat-message-avatar.story {
    border: 2.5px solid;
    border-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) 1;
}
.ig-chat-message-avatar.online::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 13px;
    height: 13px;
    background: #4cd964;
    border: 2px solid #18181c;
    border-radius: 50%;
    z-index: 2;
}
.ig-chat-message-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ig-chat-message-username {
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ig-chat-message-last {
    color: #bdbdbd;
    font-size: 0.95rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ig-chat-message-status.online {
    width: 10px;
    height: 10px;
    background: #4cd964;
    border-radius: 50%;
    margin-left: 6px;
    display: inline-block;
}
.ig-chat-message-icon {
    color: #bdbdbd;
    font-size: 1.2rem;
    margin-left: 8px;
    opacity: 0.8;
}
.emoji {
    font-size: 1.1em;
    vertical-align: middle;
}
@media (max-width: 600px) {
    .ig-chat-mobile-header, .ig-chat-mobile-search, .ig-chat-mobile-stories, .ig-chat-mobile-messages {
        padding-left: 0;
        padding-right: 0;
    }
    .ig-chat-mobile-header {
        padding: 14px 8px 8px 8px;
    }
    .ig-chat-mobile-search {
        padding: 8px 8px 4px 8px;
    }
    .ig-chat-mobile-stories {
        gap: 10px;
        padding: 8px 0 8px 6px;
    }
    .ig-chat-story {
        min-width: 54px;
        max-width: 54px;
    }
    .ig-chat-story-avatar {
        width: 44px;
        height: 44px;
    }
    .ig-chat-message-avatar {
        width: 40px;
        height: 40px;
    }
    .ig-chat-message-item {
        padding: 8px 8px 8px 8px;
    }
}
/* --- END Instagram Ultra Premium Mobile Chat Home --- */

/* --- Instagram Ultra Premium Mobile Message Home --- */
.message-mobile {
    background: #18181c;
    min-height: 100vh;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px 10px 16px;
    background: #18181c;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.message-back, .message-edit {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s;
}
.message-back:hover, .message-edit:hover {
    opacity: 1;
}
.message-profile-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
}
.message-profile-dot {
    color: #fd1d1d;
    font-size: 0.7rem;
    margin-left: 4px;
    margin-right: 8px;
}
.message-search {
    padding: 10px 16px 6px 16px;
    background: #18181c;
}
.message-search input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 18px;
    border: none;
    background: #23232a;
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}
.message-search input:focus {
    background: #282834;
}
.message-messages {
    background: #18181c;
    padding-bottom: 16px;
}
.message-messages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 8px 16px;
}
.message-messages-header span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.message-requests {
    color: #fcb045;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.message-requests:hover {
    color: #fd1d1d;
}
.message-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 0 0 0;
}
.message-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 10px 16px;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
}
.message-item:hover {
    background: rgba(255,255,255,0.03);
}
.message-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #23232a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.message-avatar.story {
    border: 2.5px solid;
    border-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) 1;
}
.message-avatar.online::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 13px;
    height: 13px;
    background: #4cd964;
    border: 2px solid #18181c;
    border-radius: 50%;
    z-index: 2;
}
.message-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.message-username {
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.message-last {
    color: #bdbdbd;
    font-size: 0.95rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.message-status.online {
    width: 10px;
    height: 10px;
    background: #4cd964;
    border-radius: 50%;
    margin-left: 6px;
    display: inline-block;
}
.message-icon {
    color: #bdbdbd;
    font-size: 1.2rem;
    margin-left: 8px;
    opacity: 0.8;
}
.emoji {
    font-size: 1.1em;
    vertical-align: middle;
}
@media (max-width: 600px) {
    .message-header, .message-search, .message-messages {
        padding-left: 0;
        padding-right: 0;
    }
    .message-header {
        padding: 14px 8px 8px 8px;
    }
    .message-search {
        padding: 8px 8px 4px 8px;
    }
    .message-avatar {
        width: 40px;
        height: 40px;
    }
    .message-item {
        padding: 8px 8px 8px 8px;
    }
}
/* --- END Instagram Ultra Premium Mobile Message Home --- */

@media (max-width: 500px) {
    .navbar {
        height: 54px;
    }
    .nav-container {
        padding: 0 6px;
    }
    .logo-gradient {
        font-size: 13px;
    }
    .logo-premium {
        font-size: 9px;
    }
    .logo-badge {
        padding: 2px 5px;
        font-size: 8px;
    }
    .nav-icons {
        gap: 7px;
    }
    .nav-icon {
        padding: 2px 3px;
    }
    .nav-icon .icon-container {
        width: 22px;
        height: 22px;
    }
    .nav-icon i {
        font-size: 11px;
    }
    .nav-label {
        font-size: 7px;
    }
}