:root {
    --bg-dark: #0a0a0c;
    --accent-blue: #00d2ff;
    --accent-purple: #9d50bb;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --grad-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dynamic Background */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.png') no-repeat center center/cover;
    opacity: 0.4;
    z-index: -2;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-dark) 80%);
    z-index: -1;
}

/* Main Container */
.container {
    width: 90%;
    max-width: 900px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 1s ease-out forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Coming Soon Text */
.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: var(--grad-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -2px;
}

.bio {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.bio strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Expertise Tags */
.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.tag:hover {
    background: var(--glass-bg);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -10px rgba(0, 210, 255, 0.5);
}

/* Footer / Contact */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    color: var(--accent-blue);
}

.contact-button {
    text-decoration: none;
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 14px;
    border: 1px solid var(--accent-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

/* Micro-animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.3s; }
.fade-out-delay-2 { animation-delay: 0.6s; }

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

/* Responsive adjustments */
@media (max-width: 600px) {
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-grid {
        gap: 0.5rem;
    }
    
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
