/* ============================================
   VINTEVE LINKS - STYLESHEET
   ============================================ */

/* 1. VARIABLES (From variables.css) */
:root {
    /* Brand Colors */
    --primary: #536DFE;
    --primary-light: #7C94FF;
    --primary-dark: #3D5AFE;
    --primary-glow: rgba(83, 109, 254, 0.4);

    --secondary: #FE53EA;
    --secondary-light: #FF7CFA;
    --secondary-dark: #D43ED0;
    --secondary-glow: rgba(254, 83, 234, 0.15);

    /* Dark Theme */
    --bg-dark: #212121;
    --bg-card: #2a2a2a;
    --bg-elevated: #333333;

    /* Text Colors */
    --text-main: #FFFFFF;
    --text-dim: #E0E0E0;
    --text-muted: #9E9E9E;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary) 40%, var(--secondary) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Radius */
    --r-lg: 1rem;
    --r-full: 9999px;
    
    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.3s ease;
}

/* 2. RESET (From reset.css) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t-fast);
}

/* 3. PAGE SPECIFIC STYLES */
body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(83, 109, 254, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(254, 83, 234, 0.1) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.links-container {
    width: 100%;
    max-width: 480px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.profile-section {
    margin-bottom: 2.5rem;
}

.profile-logo {
    width: 90px;
    height: 90px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(83, 109, 254, 0.3);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    letter-spacing: -0.5px;
}

.profile-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-bio {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.5;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.link-btn.featured {
    background: rgba(83, 109, 254, 0.15);
    border: 1px solid var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(83, 109, 254, 0.15);
}

.link-btn.featured:hover {
    background: rgba(83, 109, 254, 0.25);
    box-shadow: 0 8px 25px rgba(83, 109, 254, 0.3);
}

.link-icon {
    font-size: 1.5rem;
    width: 24px;
    display: flex;
    justify-content: center;
}

.link-text {
    font-weight: 600;
    font-size: 1.05rem;
    flex-grow: 1;
    text-align: center;
}

.link-arrow {
    opacity: 0.6;
    font-size: 1.2rem;
}

.footer-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

.copyright {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
