:root {
    --primary-color: #42A49C;
    --secondary-color: #F95883;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2d7a73 0%, #6bc4bb 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 680px;
    width: 100%;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out;
}

.logo {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
}

.profile p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

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

.link-item {
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out backwards;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.3s; }
.link-item:nth-child(3) { animation-delay: 0.6s; }

.link-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.link-item .icon {
    font-size: 28px;
    display: flex;
    align-items: center;
}

.link-item .text {
    flex: 1;
    display: flex;
    align-items: center;
}

@media (min-width: 481px) {
    .link-item .text {
        justify-content: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .profile h1 {
        font-size: 24px;
    }
    
    .link-item {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    .link-item .text {
        padding-left: 8px;
    }
}
