:root {
    --bg-color: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --neon-primary: #00f7ff;
    --neon-secondary: #e100ff;
    --card-bg: #151515;
    --card-hover: #1a1a1a;
    --card-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVfJ92AAAACHRSTlMABgkNEBMWHh+TJz0AAACSSURBVDjLhZAxDoQwDARzAoo0KdKlpE3p/78iR0HExmFhqVgJ2Z7x+lBo2XmXt12+lCQTogRCXkHYEEhRECXx5ESJQvgVhVX9Vb1SeRHUKYgUxFPwqOBYwVQw5+x3BScFcwXjhOe5YK9gUDBVMFNwU3BVMCRYJ5wEk4K1gHnCXcBWwVhQJUwE7PKtHggKBzF+e/UHkTQbERvmV4IAAAAASUVORK5CYII=');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.main-card {
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--card-border);
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-primary), var(--neon-secondary));
    animation: rotate 4s linear infinite;
    opacity: 0.7;
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--bg-color);
    border-radius: 50%;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    margin-bottom: 1rem;
}

.neon-text {
    color: var(--neon-primary);
    text-shadow: 0 0 5px var(--neon-primary),
                 0 0 10px var(--neon-primary),
                 0 0 20px var(--neon-primary);
    font-weight: 500;
}

.neon-text-subtle {
    color: var(--neon-primary);
    opacity: 0.7;
}

.bio {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--card-hover);
    border-color: var(--neon-primary);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.1);
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--neon-primary), var(--neon-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 1.2rem;
    color: var(--bg-color);
}

.link-info {
    flex-grow: 1;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.link-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-primary), var(--neon-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover .hover-effect {
    opacity: 0.05;
}

.profile-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quick-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: var(--neon-primary);
    text-shadow: 0 0 5px var(--neon-primary),
                 0 0 10px var(--neon-primary);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .main-card {
        padding: 2rem 1.5rem;
    }

    .name {
        font-size: 2rem;
    }

    .link-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-card {
        padding: 1.5rem 1rem;
    }

    .avatar-container {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 1.8rem;
    }

    .link-card {
        padding: 1rem;
    }

    .icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-description {
        font-size: 0.85rem;
    }

    .quick-links {
        gap: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-primary), var(--neon-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-primary);
} 