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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #8BA2E9 0%, #D0D5E5 50%, #E6E9CC 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, #1E3FA6 0%, #7D7D7A 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.profile-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #D96F4D;
    box-shadow: 0 8px 24px rgba(217, 111, 77, 0.3);
    animation: fadeInDown 0.6s ease-out;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    animation: fadeInDown 0.6s ease-out 0.1s backwards;
}

.tagline {
    font-size: 18px;
    color: #D96F4D;
    font-weight: 500;
    margin-bottom: 16px;
    animation: fadeInDown 0.6s ease-out 0.2s backwards;
}

.description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.6s ease-out 0.3s backwards;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out 0.4s backwards;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-button svg {
    flex-shrink: 0;
}

footer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    text-align: center;
}

.footer p {
    text-shadow: none;
}

@media (max-width: 480px) {
    .card {
        padding: 36px 24px;
    }

    h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .description {
        font-size: 15px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }
}
