:root {
    /* Base colors - Design Studio Theme */
    --primary-bg: #121212;
    --secondary-bg: #1a1a1a;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-color: #d4af37;
    
    /* Social Brand Colors */
    --whatsapp-color: #25D366;
    --instagram-color: #E1306C;
    --gmail-color: #EA4335;
    
    /* Glassmorphism tokens */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

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

/* Dynamic background animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.10), transparent 30%),
                radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05), transparent 30%);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Profile Section */
.profile-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: spin 8s linear infinite reverse; /* counter-spin to keep logo straight while border spins */
}

.name {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bio {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
}

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

.link-card:hover::before {
    transform: translateX(100%);
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 500;
    flex-grow: 1;
}

/* Specific Link Hover Effects */
.whatsapp:hover .icon-wrapper { color: var(--whatsapp-color); }
.instagram:hover .icon-wrapper { color: var(--instagram-color); }
.gmail:hover .icon-wrapper { color: var(--gmail-color); }
.website:hover .icon-wrapper { color: var(--accent-color); }

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .link-card {
        padding: 0.8rem 1.2rem;
    }
}
