.bio-container {
    max-width: 40%;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #000000;
    min-height: 90vh;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    border-radius: 50px
}

.bio-header {
    text-align: center;
    margin-bottom: 25px
}

.bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    transition: transform .3s ease
}

.bio-avatar:hover {
    transform: scale(1.05)
}

.bio-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff
}

.bio-description {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 20px
}

.bio-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px
}

.bio-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    border-radius: 50%;
    color: #ffffff;
    transition: all .3s ease
}

.bio-social a:hover {
    background: #4299e1;
    color: #fff;
    transform: translateY(-3px)
}

.bio-social svg {
    width: 20px;
    height: 20px
}

.bio-search {
    margin-bottom: 25px;
    position: relative
}

.bio-search input {
    width: 100% !important;
    padding: 22px !important;
    border: 1px solid #333333 !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    outline: none;
    transition: all .3s ease !important;
    box-sizing: border-box !important;
    background-color: #1a1a1a;
    color: #ffffff
}

.bio-search input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, .15)
}

.bio-search svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #a0aec0
}

.bio-videos {
    margin-top: 20px;
    max-height: 900px;
    overflow-y: auto;
    padding-right: 5px
}

.bio-videos::-webkit-scrollbar {
    width: 5px
}

.bio-videos::-webkit-scrollbar-track {
    background: #333333;
    border-radius: 10px
}

.bio-videos::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 10px
}

.bio-videos::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a
}

.video-item {
    display: flex;
    margin: 0 20px 20px 0;
    padding: 20px;
    border: 2px solid #333333;
    border-radius: 8px;
    transition: transform .3s ease;
    cursor: pointer
}

.video-item:hover {
    transform: translateX(5px)
}

.video-item:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.video-thumb {
    width: 80px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
    cursor: pointer
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    opacity: 0;
    transition: opacity .3s ease
}

.video-thumb:hover::after {
    opacity: 1
}

.video-thumb svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    color: #fff;
    opacity: .8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
    transition: all .3s ease
}

.video-thumb:hover svg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1)
}

.video-content {
    flex: 1;
    min-width: 0
}

.video-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.video-meta {
    font-size: 12px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: flex;
    align-items: center
}

.video-meta svg {
    width: 14px;
    height: 14px;
    margin-right: 5px
}

.video-view-btn {
    margin-top: 10px
}

.view-video-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #4299e1;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease
}

.view-video-btn:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.view-video-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 5px
}

.no-results {
    text-align: center;
    padding: 30px 0;
    color: #d1d5db;
    font-size: 16px
}

@media (max-width:1500px) {
    .bio-container {
        max-width: 65%;
    }
}

@media (max-width:992px) {
    .bio-container {
        max-width: 80%;
    }
}

@media (max-width:768px) {
    .bio-container {
        max-width: 90%
    }
}

@media (max-width:480px) {
    .bio-container {
        max-width: 90%;
        padding: 20px 15px;
    }

    .video-thumb {
        width: 100px;
        height: 150px
    }
}