/* ========================================
   BIO PAGE - LINKTREE STYLE
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #00ff88;
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-highlight: rgba(0, 255, 136, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
    overflow-x: hidden;
}

/* Background Glow Animation */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

/* Container */
.bio-container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #00cc6a);
    padding: 4px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 255, 136, 0);
    }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary), #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

/* Primary CTA Button */
.primary-cta {
    background: linear-gradient(135deg, var(--color-primary), #00cc6a);
    color: var(--bg-primary);
    border: none;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.4);
}

.primary-cta svg {
    margin-right: 0.75rem;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 2.5rem 0 1.5rem;
    opacity: 0.8;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.divider span {
    padding: 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Link Button */
.link-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-btn:hover::before {
    left: 100%;
}

.link-btn:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.link-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.link-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.link-arrow {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: var(--transition);
}

.link-btn:hover .link-arrow {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* Footer */
.bio-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.bio-footer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.made-with {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 2rem 1rem;
    }

    .bio-container {
        max-width: 100%;
    }

    .name {
        font-size: 1.75rem;
    }

    .bio-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .link-btn {
        padding: 1rem 1.25rem;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .avatar-placeholder {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.5rem;
    }

    .bio-text {
        font-size: 0.9rem;
    }

    .link-title {
        font-size: 0.95rem;
    }

    .link-subtitle {
        font-size: 0.8rem;
    }
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--color-primary);
    color: var(--bg-primary);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}