:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --primary-neon: #00ff41;
    --text-color: #ffffff;
    --secondary-text: #888888;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'JetBrains Mono', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulseBorder 4s infinite ease-in-out;
}

@keyframes pulseBorder {
    0% { box-shadow: 0 0 15px rgba(0, 255, 65, 0.1); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 65, 0.3); border-color: rgba(0, 255, 65, 0.5); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 65, 0.1); }
}

.profile-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-border {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--bg-color), var(--primary-neon));
    padding: 3px;
    margin: 0 auto 1rem;
    position: relative;
}

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

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.tagline {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: 0.5s;
}

.link-item:hover::before {
    left: 100%;
}

.link-item:hover {
    border-color: var(--primary-neon);
    background: rgba(0, 255, 65, 0.05);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    transform: translateY(-2px);
}

.icon {
    width: 20px;
    height: 20px;
}

.footer {
    margin-top: 2.5rem;
    font-size: 0.75rem;
    color: var(--secondary-text);
    opacity: 0.5;
}

@media (max-width: 480px) {
    .container {
        width: 90%;
        padding: 1.5rem;
    }
}