body {
    background: linear-gradient(135deg, #495057 0%, #212529 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 400px;
    width: 100%;
}


.tagline {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-links a {
    text-decoration: none;
    color: #fff;
    background: #495057;
    padding: 8px 16px;
    border-radius: 5px;
    margin: 5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    background: #343a40;
    transform: translateY(-2px);
}


.contact-section {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.contact-label {
    font-weight: 700;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
}

.contact-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    margin-top: 0;
}

.contact-details p {
    margin: 8px 0;
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.container:hover .contact-details {
    max-height: 100px;
    opacity: 1;
    margin-top: 15px;
}

.container:hover .profile-card {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

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

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

body {
    background: linear-gradient(135deg, #495057 0%, #212529 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}