:root {
    --bg-dark: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --accent-primary: #6366f1; /* Indigo */
    --accent-secondary: #a855f7; /* Purple */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-blur: 12px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 40px 20px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Profile Section */
.profile {
    margin-bottom: 40px;
}

.profile-img-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-dark);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Links Section */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    text-decoration: none;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.link-card:hover::before {
    opacity: 1;
}

.link-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-right: 16px;
}

.link-content {
    flex: 1;
    text-align: left;
}

.link-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.link-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-arrow {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.5;
    transition: transform 0.3s;
}

.link-card:hover .link-arrow {
    transform: translateX(3px);
    opacity: 1;
    color: var(--accent-primary);
}

/* Socials */
.socials {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icon {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
}
