:root {
    --primary-color: #7000ff;
    --secondary-color: #209967;
    --bg-dark: #0a0a0c;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-white: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--primary-color), transparent 40%),
                radial-gradient(circle at bottom left, var(--secondary-color), transparent 40%);
    opacity: 0.2;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    text-align: center;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
    object-fit: cover;
}

h1 { font-size: 2rem; margin-bottom: 5px; letter-spacing: 1px; }
.tagline { color: var(--secondary-color); font-weight: bold; font-size: 0.9rem; margin-bottom: 15px; }
.description { font-size: 0.95rem; opacity: 0.8; margin-bottom: 30px; line-height: 1.4; }

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.link-card.special {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    font-weight: bold;
}

.divider {
    margin: 20px 0 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.icon { margin-right: 15px; font-size: 1.2rem; }

footer { margin-top: 40px; font-size: 0.8rem; opacity: 0.4; }
