body{
    background:#0f172a;
    color:white;
}

a{
    text-decoration: none;
}
label{
    color: white;
}

.hero{
    min-height:90vh;
}

.profile-box{

    position:relative;
}

html .text-muted {
    --bs-text-opacity: 1;
    color: rgb(156 168 180 / 75%) !important;
}
.profile-img{

    width:450px;
    height:450px;

    border-radius:50%;

    object-fit:cover;

    border:8px solid rgba(255,255,255,.1);

    box-shadow:
    0 0 50px rgba(13,110,253,.5);

}


.project-card{

    background:#1e293b;

    color:white;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;
}

.project-card:hover{

    transform:translateY(-10px);

}

.card-img-top{

    height:220px;

    object-fit:cover;

}

.skill-progress{

    height:12px;

    border-radius:30px;

    background:#1e293b;

}

.progress-bar{

    border-radius:30px;

}

.btn{

    border-radius:30px;

}

.badge{

    font-size:14px;
}

.glass-card{

backdrop-filter:blur(20px);
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.1);



}

.profile-img{

width:420px;
height:420px;
border-radius:50%;
object-fit:cover;
border:5px solid rgba(255,255,255,.1);

}

.search-box{

display:flex;
background:#1f1f1f;
padding:10px;
border-radius:50px;
align-items:center;

}

.search-box input{

flex:1;
border:none;
background:none;
outline:none;
color:white;
padding:10px;

}

.search-box button{

border:none;
padding:10px 30px;
border-radius:50px;

}

.project-card{

overflow:hidden;
transition:.4s;

}

.project-card:hover{

transform:translateY(-10px);

}

.project-img{

height:250px;
object-fit:cover;

}

.skill-progress{

height:12px;
border-radius:20px;

}

.progress-bar{

border-radius:20px;

}

.navbar{

    padding:15px 0;

}


.navbar-brand{

    font-size:24px;

}


.nav-link{

    transition:.3s;
}


.nav-link:hover{

    color:#0d6efd !important;

    transform:translateY(-2px);

}


.navbar .form-control{

    border-radius:20px;

}


.navbar .btn{

    border-radius:20px;

}

@media (max-width: 765px) {
    .profile-img {
        width: 100%;
        height: auto;
    }

}

.stories-container{
    width:100%;
    overflow:hidden;
    padding:10px 0;
}

.stories-slider{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:0 10px;
}

.stories-slider::-webkit-scrollbar{
    display:none;
}

.story-item{
    min-width:80px;
    text-align:center;
    cursor:pointer;
    user-select:none;
}

/* RING */

.story-ring{
    width:74px;
    height:74px;
    border-radius:50%;
    padding:3px;
    background:linear-gradient(
        45deg,
        #ff00cc,
        #ff6600,
        #ffcc00,
        #ff00cc
    );
}

.story-ring img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #111;
}

/* NAME */

.story-name{
    display:block;
    margin-top:6px;
    color:white;
    font-size:12px;
    white-space:nowrap;
}

/* ========================= */
/* STORY VIEWER */
/* ========================= */

.story-viewer{
    position:fixed;
    inset:0;
    background: #000000d6;
    z-index: 99999;
    backdrop-filter: blur(5px);
    z-index:99999;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* TOP */

.story-top{
    position:absolute;
    top:20px;
    width:100%;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:20;
}

.story-user{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
}

.story-user img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
}

.story-close{
    background:none;
    border:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}

/* PROGRESS */

.story-progress{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:rgba(255,255,255,0.2);
}

.story-progress-bar{
    width:0%;
    height:100%;
    background:white;
    transition:width 5s linear;
}

/* CONTENT */

.story-content{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.story-content img,
.story-content video{
    width:100%;
    height:100%;
    object-fit:contain;
    display:none;
}

/* LINK */

.story-link{
    position:absolute;
    bottom:30px;
    background:white;
    color:black;
    text-decoration:none;
    padding:12px 26px;
    border-radius:40px;
    font-weight:bold;
}

