@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #ed194c;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 30px 20px;
    margin: auto;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    border: 4px solid var(--white-color);
    padding: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    object-fit: contain;
    background-color: var(--white-color);
}

.logo:hover {
    transform: scale(1.05);
}

.profile h1 {
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 8px;
}

.profile p {
    color: var(--white-color);
    opacity: 0.9;
    font-size: 16px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background: var(--white-color);
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    transform: translateY(0);
    animation: fadeInUp 1s ease;
    animation-fill-mode: both;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    color: var(--white-color);
}

.link-card i {
    font-size: 24px;
}

.link-card span {
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.links a:nth-child(1) { animation-delay: 0.2s; }
.links a:nth-child(2) { animation-delay: 0.4s; }
.links a:nth-child(3) { animation-delay: 0.6s; }
.links a:nth-child(4) { animation-delay: 0.8s; }
.links a:nth-child(5) { animation-delay: 1.0s; }
.links a:nth-child(6) { animation-delay: 1.2s; }
.links a:nth-child(7) { animation-delay: 1.4s; }
.links a:nth-child(8) { animation-delay: 1.6s; }
.links a:nth-child(9) { animation-delay: 1.8s; }
.links a:nth-child(10) { animation-delay: 2.0s; }

.footer {
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    bottom: 0;
    color: var(--white-color);
    font-size: 14px;
    opacity: 0.9;
}

.footer p {
    margin: 0;
    animation: fadeInUp 1s ease;
    animation-delay: 1.2s;
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile h1 {
        font-size: 20px;
    }
    
    .profile p {
        font-size: 14px;
    }
    
    .link-card {
        padding: 14px 16px;
    }
    
    .link-card i {
        font-size: 20px;
    }

    .footer {
        padding: 15px;
        font-size: 12px;
    }
} 