body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ffecd2, #fcb69f, #c2b6ff, #758bfd);
    animation: gradientAnimation 10s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    position: relative;
    width: 500px;
    padding: 20px;
    background-color: rgba(40, 40, 60, 0.85);
    color: #EDEDED;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.profile-header {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f, #c2b6ff, #758bfd);
    animation: gradientAnimation 10s ease infinite;
    background-size: 400% 400%;
    background-position: 0 0; 
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.profile-pic {
    width: 102px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #1a1f35;
}

.subtitle {
    font-size: 1.1em;
    color: #ffffff;
}

.content {
    padding: 30px;
}

.tabs button {
    background-color: rgba(50, 50, 75, 0.9);
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

.tabs button:hover {
    background-color: rgba(80, 80, 110, 0.9);
    transform: scale(1.05);
}

.tab {
    display: none;
}

#about-tab, #experience-tab, #contact-tab {
    display: none;
}

.contact-item {
    display: flex;
    align-items: center; 
    gap: 15px; 
    font-size: 1.4em;
    margin: 15px 0;
    color: #EDEDED;
}

.contact-item i {
    font-size: 1.4em;
    color: #EDEDED;
    flex-shrink: 0; 
    vertical-align: middle; 
}

#contact-tab {
    text-align: left;
    padding: 20px;
}

#contact-tab .contact-item span {
    color: #ccc;
    display: inline-block;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.about-paragraph {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd;
    text-align: start;
    max-width: 600px;
    margin: 0 auto 20px auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.social-icons a {
    color: #EDEDED;
    font-size: 1.8em;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #949090; 
}

.social-icons a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover:after {
    opacity: 1;
}

#experience-tab {
    text-align: left;
    padding: 20px;
}

#experience-tab ul {
    list-style-type: none;
    padding-left: 20px;
}

#experience-tab li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 1.1em;
}

#experience-tab li::before {
    content: "\2022";
    color: #EDEDED;
    font-size: 1.9em;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-9px);
}

.hidden-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.hidden-button:hover {
    opacity: 0.3;
    cursor: pointer;
}
/* phone users >:( */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .profile-header {
        padding: 20px;
    }

    .tabs button {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .contact-item {
        font-size: 1.2em;
        gap: 10px;
        margin: 10px 0;
    }

    .social-icons {
        gap: 30px;
        font-size: 1.5em; 
    }
}
