* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #04F8FA 0%, #292CD3 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: #F7F5FA;
    border: 2px solid #070760;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px #9779B6;
}

.profile {
    margin-bottom: 30px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: #2A5495;
    border: 3px solid #070760;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #F7F5FA;
}

.profile h1 {
    font-size: 24px;
    color: #070760;
    margin-bottom: 5px;
}

.profile p {
    color: #2A5495;
    font-size: 14px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: block;
    padding: 15px 20px;
    background: #F7F5FA;
    border: 2px solid #070760;
    border-radius: 50px;
    text-decoration: none;
    color: #070760;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #9779B6;
    border-color: #292CD3;
    background: #04F8FA;
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 44, 211, 0.2), transparent);
    transition: left 0.5s;
}

.link:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .profile-img {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .profile h1 {
        font-size: 20px;
    }
    
    .link {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 25px 15px;
        max-width: 100%;
    }
    
    .profile-img {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .profile h1 {
        font-size: 18px;
    }
    
    .profile p {
        font-size: 12px;
    }
    
    .link {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .links {
        gap: 12px;
    }
}