:root {
    --bg-color: #0a0a0a;
    --card-bg: #15151e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #6d28d9;
    --accent-hover: #7c3aed;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --glow-color: rgba(109, 40, 217, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    width: 100%;
    z-index: 10;
    padding: 0 15px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.avatar {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 1.5rem;
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.5;
    filter: blur(10px);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

#profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 3px solid var(--accent-color);
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 90%;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(109, 40, 217, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(109, 40, 217, 0.2);
    color: var(--accent-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.link-content {
    flex-grow: 1;
}

.link-content h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.link-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.arrow {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.link-card:hover .arrow {
    transform: translateX(5px);
    color: var(--accent-color);
}

/* About Section */
.about-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-section p {
    line-height: 1.6;
    color: var(--text-secondary);
}

footer {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.disclaimer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: center;
    max-width: 80%;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: center;
}

/* Background animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 230px 80px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 250px 250px;
    opacity: 0.1;
    animation: twinkling 10s linear infinite;
}

@keyframes twinkling {
    from { transform: translateY(0); }
    to { transform: translateY(-250px); }
}

/* Media Queries */
@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .avatar {
        width: 90px;
        height: 90px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .bio, .tagline {
        font-size: 0.9rem;
    }
    
    .link-card {
        padding: 0.8rem 1.2rem;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
} 