.profile_hero {
    transition: 1s;
    background: rgba(255, 77, 148, 0.1);
    padding: 30px;
    margin-left: 500px;
    margin-right: 500px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 5px 10px 10px 10px rgb(121, 50, 131);

}


.hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}



.profile_hero_img {
    width: 200px;
    height: 200px;
    border-radius: 50%;

    border: 3px solid #ff4d94;
    box-shadow: 5px 10px 10px 10px rgb(49, 25, 53);
}

.hero_text h2 {
    color: #6fe4ff;
    font-size: 50px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 30px rgba(0, 255, 213, 0.637);
    font-weight: 1000;
}


/* MY DETAILS */
.hero_details p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #a0c5fc;
    display: flex;
    align-items: center;
    text-shadow: 0px 0px 30px rgb(136, 5, 223);
    font-size: 50px;
    font-style: italic;
}




.profile_card h3 {
    color: #6fe4ff;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(111, 228, 255, 0.3);
    padding-bottom: 10px;
}

.card_content {
    color: #a0a8c3;
    line-height: 1.6;
}

.card_content p {
    margin-bottom: 15px;
    font-size: 25px;
    font-style: italic;

}


/* HOBBIES PART */
.hobby_video {
    width: 500px;
    height: 230px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(111, 228, 255, 0.3);
}

h2 {
    color: #6fe4ff;
    font-size: 40px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(111, 228, 255, 0.6);
}

#proglanguages
{
    color: rgb(22, 181, 112);
}

#other_text
{
    color: rgb(103, 174, 175);
}

.videos_group {

    display: inline-block;
    margin-left: 50px;
}

.pics {
    width: 400px;

}

.blender_pic {
    width: 400px;
    padding-left: 500px;
}

.github_logo
{
   background-color: black;
   border-radius: 50%;
    width: 100px;
    margin-left: 630px;
    transition: 1s;
}
.insta_logo
{
    width: 100px;
    transition: 1s;

}
.github_logo:hover
{
    width: 200px;
}
.insta_logo:hover
{
    width: 200px;
}

.inline_input,
.inline_textarea {
    background: rgba(10, 14, 23, 0.7);
    border: 1px solid rgba(111, 228, 255, 0.4);
    border-radius: 6px;
    padding: 6px 10px;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
}
.inline_input { width: 80px; }
.inline_input.wide { width: 100%; max-width: 500px; }
.inline_textarea { width: 100%; min-height: 120px; resize: vertical; line-height: 1.5; }
.inline_input:focus, .inline_textarea:focus { outline: none; border-color: #ff4d94; }

.edit_actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin: 20px 0;
}
.btn_primary, .btn_secondary {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.btn_primary { background: #ff4d94; color: #fff; }
.btn_primary:hover { background: #e03d80; }
.btn_secondary {
    background: transparent;
    color: #6fe4ff;
    border: 1px solid #6fe4ff;
    display: inline-block;
}
.btn_secondary:hover { background: #6fe4ff; color: #0a0e17; }
.edit_link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 22px;
    background: #ff4d94;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.edit_link:hover {
    background: #e03d80;
}