/* Mobile Profile Full-Screen Modal - Pure Black Theme */
.mobile-profile-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-profile-fullscreen.active {
    display: block;
}

.mobile-profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 0; */
    /* margin-bottom: 10px; */
}

.mobile-profile-logo {
    display: flex;
    align-items: center;
}

.mobile-profile-logo img {
    height: 20px;
    width: auto;
}

.mobile-profile-close {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
}

.mobile-profile-close:hover {
    color: #E50914;
}

.mobile-profile-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
}

.mobile-user-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
}

.mobile-user-number span[uk-icon] {
    width: 20px;
    height: 20px;
}

.mobile-subscribe-btn {
    display: inline-block;
    background: #E50914;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-subscribe-btn:hover {
    background: #b2070f;
    color: #fff;
}

.mobile-profile-fullscreen .ott-profile-wrapper {
    padding: 10px;
    width: 280px;
    max-width: 100%;
    background: #000000;
}

.mobile-profile-fullscreen .uk-navbar-dropdown-nav {
    padding-left: 0;
    background: #000000;
    border-radius: 12px;
    padding: 8px 0;
}

.mobile-profile-fullscreen .uk-navbar-dropdown-nav > li > a {
    padding: 14px 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: #ffffff;
    background: transparent;
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

.mobile-profile-fullscreen .uk-navbar-dropdown-nav > li > a:hover {
    background: rgba(255,255,255,0.08);
}

.mobile-profile-fullscreen .uk-navbar-dropdown-nav > li:last-child > a {
    border-bottom: none;
}

.mobile-profile-fullscreen .uk-navbar-dropdown-nav > li > a span[uk-icon] {
    width: 22px;
    height: 22px;
}

.ott-profile-dropdown{
    width:280px;
    background:#000000;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.1);
    padding:10px;
}

/* Profile Row Container */
.ott-profile-wrapper .uk-grid-small{
    display:flex;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:center;
    gap:10px;
    margin:0;
    padding:10px 0;
    overflow-x: scroll;
    scrollbar-width: none; 
  -ms-overflow-style: none;
}
.ott-hide-scrollbar::-webkit-scrollbar {
  display: none; 
}

.ott-profile-wrapper .uk-grid-small > *{
    padding:0;
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Profile Circle Box */
.ott-profile-box{
    width:36px;
    height:36px;
    border-radius:50px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#000000;
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.ott-profile-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ott-profile-box:hover{
    transform:scale(1.08);
    border:2px solid #fff;
}

.ott-profile-box.uk-active{
    border:2px solid #00a8e1;
}

/* Label */
.ott-profile-label{
    font-size:11px;
    margin-top:6px;
    color:#bbb;
}
