/* Rich Modern Landing Page */
:root {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #06b6d4;
    --purple: #8b5cf6;
    --text: #ffffff;
    --text-muted: #cbd5e1;
    --text-light: #94a3b8;
    --bg: #0a0e1a;
    --bg-gradient: linear-gradient(135deg, #0a0e1a 0%, #1a1a2e 30%, #16213e 70%, #0f172a 100%);
    --bg-glass: rgba(30, 41, 59, 0.9);
    --bg-card: rgba(15, 23, 42, 0.95);
    --bg-soft: rgba(51, 65, 85, 0.8);
    --border: rgba(59, 130, 246, 0.2);
    --border-glow: rgba(59, 130, 246, 0.4);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-gradient);
    background-attachment: fixed;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    animation: bounceIn 1.2s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--purple), var(--primary-light));
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0.9;
}

.subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.bio-preview {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    animation: slideInUp 1s ease-out 0.5s both;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bio-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.bio-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.4);
    border-color: var(--border-glow);
}

.bio-preview:hover::before {
    left: 100%;
}

.bio-preview h2 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease-out 0.7s both;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.bio-preview p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease-out 0.8s both;
    line-height: 1.7;
}

.links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.9s both;
}

.links a {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(59, 130, 246, 0.6);
    border-color: var(--border-glow);
}

.links a:hover::before {
    left: 100%;
}

.footer {
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 1s ease-out 1s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Rich Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(1deg); 
    }
    66% { 
        transform: translateY(20px) rotate(-1deg); 
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .links {
        flex-direction: column;
        align-items: center;
    }
}
