/* bio-page.css - Ultra Premium Bio Page Styling */

:root {
    --bio-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #311042 100%);
    --bio-card-bg: rgba(255, 255, 255, 0.07);
    --bio-card-border: rgba(255, 255, 255, 0.12);
    --bio-card-hover-bg: rgba(255, 255, 255, 0.15);
    --bio-card-hover-border: rgba(255, 255, 255, 0.3);
    --bio-text-main: #ffffff;
    --bio-text-muted: #cbd5e1;
    --bio-accent-glow: rgba(99, 102, 241, 0.35);
    --bio-radius: 1rem;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Theme Presets */
[data-theme="tema1"], [data-theme="indigo"] {
    --bio-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #311042 100%);
    --bio-card-bg: rgba(255, 255, 255, 0.08);
    --bio-card-border: rgba(255, 255, 255, 0.15);
    --bio-card-hover-bg: rgba(255, 255, 255, 0.18);
    --bio-text-main: #ffffff;
    --bio-text-muted: #cbd5e1;
    --bio-accent-glow: rgba(99, 102, 241, 0.4);
}

[data-theme="tema2"], [data-theme="cyber"] {
    --bio-bg-gradient: linear-gradient(135deg, #090d16 0%, #051923 50%, #002b36 100%);
    --bio-card-bg: rgba(14, 165, 233, 0.08);
    --bio-card-border: rgba(14, 165, 233, 0.25);
    --bio-card-hover-bg: rgba(14, 165, 233, 0.2);
    --bio-text-main: #f0fdf4;
    --bio-text-muted: #94a3b8;
    --bio-accent-glow: rgba(14, 165, 233, 0.4);
}

[data-theme="tema3"], [data-theme="sunset"] {
    --bio-bg-gradient: linear-gradient(135deg, #1c0a26 0%, #3b0764 50%, #701a75 100%);
    --bio-card-bg: rgba(255, 255, 255, 0.1);
    --bio-card-border: rgba(244, 114, 182, 0.3);
    --bio-card-hover-bg: rgba(244, 114, 182, 0.22);
    --bio-text-main: #ffffff;
    --bio-text-muted: #fbcfe8;
    --bio-accent-glow: rgba(236, 72, 153, 0.4);
}

[data-theme="tema4"], [data-theme="light"] {
    --bio-bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    --bio-card-bg: #ffffff;
    --bio-card-border: rgba(0, 0, 0, 0.08);
    --bio-card-hover-bg: #ffffff;
    --bio-card-hover-border: rgba(99, 102, 241, 0.4);
    --bio-text-main: #0f172a;
    --bio-text-muted: #475569;
    --bio-accent-glow: rgba(99, 102, 241, 0.15);
}

[data-theme="tema5"], [data-theme="emerald"] {
    --bio-bg-gradient: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #065f46 100%);
    --bio-card-bg: rgba(255, 255, 255, 0.08);
    --bio-card-border: rgba(52, 211, 153, 0.2);
    --bio-card-hover-bg: rgba(52, 211, 153, 0.18);
    --bio-text-main: #ecfdf5;
    --bio-text-muted: #a7f3d0;
    --bio-accent-glow: rgba(16, 185, 129, 0.4);
}

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

body {
    font-family: var(--font-family);
    background: var(--bio-bg-gradient);
    color: var(--bio-text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Animated Orbs in Background */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

body::before {
    width: 350px;
    height: 350px;
    top: -50px;
    left: -50px;
    background: var(--bio-accent-glow);
}

body::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: var(--bio-accent-glow);
}

.bio-container {
    width: 100%;
    max-width: 620px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Header & Avatar */
.bio-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio-avatar-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.bio-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px var(--bio-accent-glow);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bio-text-main);
}

.bio-verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
}

.bio-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.35rem;
    color: var(--bio-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bio-description {
    font-size: 0.95rem;
    color: var(--bio-text-muted);
    max-width: 480px;
    line-height: 1.5;
}

/* Bio Links Grid & Buttons */
.bio-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bio-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bio-card-bg);
    border: 1px solid var(--bio-card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--bio-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.975rem;
    border-radius: var(--bio-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bio-btn:hover {
    background: var(--bio-card-hover-bg);
    border-color: var(--bio-card-hover-border);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 30px var(--bio-accent-glow);
}

.bio-btn:active {
    transform: translateY(0) scale(0.99);
}

.bio-btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bio-btn-text {
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
}

.bio-btn-arrow {
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bio-btn:hover .bio-btn-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Headings & Text Blocks */
.bio-heading {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin: 1.25rem 0 0.25rem 0;
    color: var(--bio-text-main);
    letter-spacing: -0.01em;
}

.bio-text-block {
    text-align: center;
    font-size: 0.9rem;
    color: var(--bio-text-muted);
    line-height: 1.5;
}

/* Footer & Branding */
.bio-footer {
    margin-top: 2rem;
    padding-bottom: 1rem;
    text-align: center;
}

.bio-branding {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    color: var(--bio-text-main);
    font-size: 0.825rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.bio-branding:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

.bio-branding svg {
    width: 14px;
    height: 14px;
}
