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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 20%, #ef5350 40%, #c62828 60%, #e57373 80%, #b71c1c 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.8s ease-in;
}

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

.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-wrapper {
    margin-bottom: 20px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.avatar {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1) rotate(5deg);
}

.title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.social-card {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.social-card:active {
    transform: translateY(-2px);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    transition: transform 0.3s ease;
}

.social-card:hover .icon {
    transform: scale(1.1);
}

.facebook .icon {
    background: #1877F2;
}

.facebook::before {
    background: #1877F2;
}

.instagram .icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.youtube .icon {
    background: #FF0000;
}

.youtube::before {
    background: #FF0000;
}

.linkedin .icon {
    background: #0077B5;
}

.linkedin::before {
    background: #0077B5;
}

.website .icon {
    background: #333;
}

.website::before {
    background: #333;
}

.platform-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.arrow {
    color: #999;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-card:hover .arrow {
    transform: translateX(5px);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .social-card {
        padding: 16px 20px;
    }

    .icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
    }

    .platform-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .avatar {
        max-width: 250px;
    }

    .title {
        font-size: 1.8rem;
    }

    .platform-name {
        font-size: 1rem;
    }
}

