/* Nunito Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Using your "Ice Blue" #E6F1F6 as a base */
    background: radial-gradient(circle at top left, #e6f1f6 0%, #ffffff 100%);
    padding: 20px;
    color: #032f3c; /* Midnight Teal for text */
}

/* Background suggested for Mobile (Clean & Pro) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235c8fa8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.card {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(3, 47, 60, 0.08);
}

/* Logo Styling */
.logo img {
    width: 50px;
    height: auto;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.title {
    font-size: 14px;
    color: #5c8fa8; /* Muted Steel Blue */
    margin-bottom: 15px;
    padding: 0 10px;
}

.tagline {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 30px;
}

/* Button Container */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Rounded Linktree Style Buttons */
.btn {
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 50px; /* Full Rounded */
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.02);
}

/* Palette Implementation */
.btn-linkedin {
    background: #032f3c; /* Midnight Teal */
    color: white;
}

.btn-blog {
    background: #004e70; /* Deep Teal Blue */
    color: white;
}

.btn-muted {
    background: #5c8fa8; /* Muted Steel Blue */
    color: white;
}

.footer {
    margin-top: 30px;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.4;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Staggered Delays */
.d1 {
    animation-delay: 0.1s;
}
.d2 {
    animation-delay: 0.2s;
}
.d3 {
    animation-delay: 0.3s;
}
.d4 {
    animation-delay: 0.4s;
}
.d5 {
    animation-delay: 0.5s;
}
.d6 {
    animation-delay: 0.6s;
}
.d7 {
    animation-delay: 0.8s;
}
