body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(
        135deg,
        #0ff 0%,       /* cyan */
        #f0f 25%,      /* magenta */
        #f50 50%,      /* yellow */
        #f0f 75%,      /* magenta */
        #0ff 100%      /* cyan */
    );

    background-size: 400% 400%;
    animation: gradientShift 30s ease infinite;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    text-align: center;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
    padding: 3rem;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideDown { from { opacity:0; transform: translateY(-50px);} to { opacity:1; transform: translateY(0); } }
@keyframes slideUp { from { opacity:0; transform: translateY(50px);} to { opacity:1; transform: translateY(0); } }
@keyframes gradientShift {
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

.pfp {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 25px;
    animation: slideDown 1s ease forwards;
    opacity: 0;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pfp:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: slideUp 1s ease forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 600;
}
p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

a {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

hr {
    border: 0px solid black;
    background: linear-gradient(135deg, #4facfe, #8f5cff, #4facfe);
    border-radius: 4px;
    height: 4px;
    animation: fadeIn 2s ease forwards;

}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 12px;
    animation: fadeIn 2.5s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
}

.btn:hover img {
    filter: brightness(1.3);
}

.btn:active {
    transform: scale(1.05);
}

.btn-text {
    text-decoration: none;
    color: #0066CC;
    transition: filter 0.3s ease;

}

.btn-text:hover {
    text-decoration: underline;

}

@media (max-width: 768px) {
    .container {
        padding: 2rem;
        margin: 1rem;
        max-width: 90%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .pfp {
        width: 150px;
        height: 150px;
    }
    
    .btn {
        width: 60px;
        height: 60px;
    }
    
    .buttons {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .pfp {
        width: 120px;
        height: 120px;
    }
    
    .btn {
        width: 50px;
        height: 50px;
    }
}

.site-footer {
    margin-top: 4rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blue {
    color: #0066CC

}
