body {
    margin: 0;
    font-family: Barlow;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 500px;
    width: 90vw;
    padding: 2rem;
    border-radius: 1rem;
}

.profile-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 182px;
    height: 182px;
    margin: 0 auto 1rem auto;
}

.profile-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    display: block;
}

h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.links img {
    width: 36px;
    height: 36px;
    border-radius: 25%;
    padding: 6px;
    background: none;
    border: 2px solid #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.links a:hover img {
    box-shadow: 0 0 8px #000;
    border-color: #ccc;
}

.about {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.resume-btn {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    background: #fff;
    color: #212121;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: 
        box-shadow 0.2s, 
        color 0.2s, 
        filter 0.2s, 
        background 0.3s;
    position: relative;
    z-index: 1;
}

.resume-btn:hover {
    background: linear-gradient(270deg, #ff8ae2, #8afff7, #fffb8a, #8a9fff, #ff8ae2);
    background-size: 400% 400%;
    animation: vaporwave-gradient 8s linear infinite;
    color: #fff;
    text-shadow: 0 0 8px #ff8ae2, 0 0 4px #8afff7;
    box-shadow: 0 0 16px 2px #ff8ae2, 0 0 12px 2px #8afff7;
    filter: none;
}

.resume-btn:hover img {
    filter: drop-shadow(0 0 8px #ff8ae2) drop-shadow(0 0 4px #8afff7);
}

#bg-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 3.0s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 3.0s;
    opacity: 1;
}

.vaporwave-border {
    background: none;
    padding: 0;
    border-radius: 0;
    animation: none;
    display: block;
}

.vaporwave-icon-border {
    display: inline-block;
    padding: 4px;
    border-radius: 12px;
    position: relative;
    background: none;
}

.vaporwave-icon-border::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(270deg, #ff8ae2, #8afff7, #fffb8a, #8a9fff, #ff8ae2);
    background-size: 400% 400%;
    animation: vaporwave-gradient 6s ease infinite;
    opacity: 0.5;
    box-sizing: border-box;
    border: 3px solid transparent;
}

.vaporwave-icon-border img {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 8px;
    background: none;
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
    border: 3px solid transparent;
}

@keyframes vaporwave-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vaporwave-border .links {
    background: none;
    border-radius: 0;
    padding: 0;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.vaporwave-border .links a img {
    transition: transform 0.2s;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.vaporwave-border .links a:hover img {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 16px #ff8ae2, 0 0 8px #8afff7;
}

.links a:hover .vaporwave-icon-border img {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 16px #ff8ae2, 0 0 8px #8afff7;
}


.resume-btn img.icon-cloud {
    display: inline-block;
}

.resume-btn img.icon-cloud-white {
    display: none;
}

.resume-btn:hover img.icon-cloud {
    display: none;
}

.resume-btn:hover img.icon-cloud-white {
    display: inline-block;
}

.vaporwave-border.profile-img-border {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 182px;
    height: 182px;
    box-sizing: border-box;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(270deg, #ff8ae2, #8afff7, #fffc8a, #ff8ae2);
    background-size: 600% 600%;
    animation: vaporwave-move 30s ease infinite;
}

@keyframes vaporwave-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.vaporwave-gradient-text {
    background: linear-gradient(270deg, #ff8ae2, #8afff7, #fffc8a, #ff8ae2);
    background-size: 600% 600%;
    animation: vaporwave-move 30s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 500px) {
    .links {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .vaporwave-icon-border {
        padding: 2px;
        border-radius: 8px;
    }
    .vaporwave-icon-border img,
    .vaporwave-border .links a img,
    .links img {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        padding: 2px;
    }
}