body {
    background: linear-gradient(135deg, #fff8e6 0%, #ffe5cc 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.profile-image-container {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-coffee {
    color: #b87537;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background-color: white;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background-color: #f8f9fa;
    transform: scale(1.02);
    color: #2d3748;
}

.social-link:active {
    transform: scale(0.98);
}

.social-link i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .social-link {
        padding: 14px;
    }
}