:root {
    --bg-dark: #0f172a;
    --bg-light: #1e293b;
    --text-color: #f8fafc;
    --button-bg: rgba(30, 41, 59, 0.7);
    --accent-color: #38bdf8;
    --container-max-width: 450px;

    /* Brand Colors */
    --color-github: #24292f;
    --color-instagram: #e1306c;
    --color-linkedin: #0077b5;
    --color-steam: #171a21;
    --color-kick: #53fc18;
    --color-youtube: #ff0000;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at top left, #1e293b, #0f172a 50%, #1e1b4b);
    background-attachment: fixed;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    text-align: center;
}

header {
    margin-bottom: 32px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

header p {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 300;
}

.links {
    list-style: none;
}

.links li {
    margin-bottom: 16px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: var(--button-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    position: absolute;
    left: 20px;
    transition: transform 0.3s ease;
}

.links a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.links a:hover .icon {
    transform: scale(1.2);
}

/* Custom Hovers */
.links a[data-network="github"]:hover {
    background-color: var(--color-github);
    color: white;
}

.links a[data-network="instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: white;
}

.links a[data-network="linkedin"]:hover {
    background-color: var(--color-linkedin);
    color: white;
}

.links a[data-network="steam"]:hover {
    background-color: var(--color-steam);
    color: white;
}

.links a[data-network="kick"]:hover {
    background-color: var(--color-kick);
    color: #000;
}

.links a[data-network="youtube"]:hover {
    background-color: var(--color-youtube);
    color: white;
}

footer {
    margin-top: 48px;
    font-size: 0.875rem;
    color: #64748b;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .links a {
        padding: 14px;
    }
}
