* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-image: url('../assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.profile-panel {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
}

.cat-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.refresh-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    opacity: 0;
    color: white;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cat-avatar:hover .refresh-icon {
    opacity: 1;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s, filter 0.3s;
}

.social-link:hover .social-icon {
    transform: translateY(-5px);
    filter: brightness(0.8) sepia(1) hue-rotate(180deg) saturate(5);
}

@media (max-width: 480px) {
    .profile-panel {
        padding: 20px;
    }
    
    .social-links {
        padding: 15px;
        gap: 15px;
    }
    
    .cat-avatar {
        width: 100px;
        height: 100px;
    }
}