:root {
    --bg-color: #030610;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-color: #0ea5e9;
    --accent-gradient: linear-gradient(135deg, #0ea5e9, #38bdf8);
    --glass-bg: rgba(15, 23, 42, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Canvas background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0a1224 0%, #030509 100%);
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 0 2.5rem;
}

.logo-container {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(14, 165, 233, 0.2);
}

.domain {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3rem;
}

.bio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px inset rgba(255,255,255,0.05);
    max-width: 800px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px inset rgba(255,255,255,0.1);
}

.bio-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

.bio-card p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--accent-color);
    font-weight: 500;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.5);
    letter-spacing: 1px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .header {
        padding: 2.5rem 0 2rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .bio-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .bio-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 3rem;
    }
    
    .bio-card {
        padding: 1.5rem;
    }
    
    .bio-card p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}
