:root {
    --bg: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    --card: rgba(255,255,255,0.08);
    --border: rgba(255,255,255,0.2);
    --text: #ffffff;
    --muted: #cfd8dc;
    --accent: #4fd1c5;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 24px;
}

.card {
    background: var(--card);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    text-align: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    background-color: white;
}

.avatar img {
    width: 90%;
    height: 90%;
    object-fit: contain;   
    
}

h1 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
}

p {
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--muted);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-btn {
    position: relative;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    overflow: hidden;
}

.link-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.link-btn:hover::after {
    transform: translateX(100%);
}

.link-btn:hover {
    transform: translateY(-2px);
    background: rgba(79,209,197,0.18);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

footer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--muted);
    opacity: 0.8;
}