/* Extra styles for theme */
.btn-theme {
    background-color: #f740b1;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in;
}

.btn-theme:hover {
    background-color: #e62a9e;
    transform: scale(1.05);
}

.profile-card {
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
}

.profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(247, 64, 177, 0.2);
}

.hidden-contact {
    color: #ccc;
}

.hidden-contact::after {
    content: '*****';
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Photo 4:5 Ratio Force */
.profile-photo {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Mobile Responsive Extra */
@media (max-width: 768px) {
    .profile-card { animation-delay: 0.1s; }
}