* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #0a0a0f;
    color: #e8e8e8;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
.bg-gradient {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 131, 235, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(124, 131, 235, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
}
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #e8e8e8;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #888;
    stroke-width: 2;
    fill: none;
}
@media (max-width: 600px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(12px);
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
}
.container {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem 3rem;
    max-width: 800px;
    width: 100%;
}
h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: fadeSlideDown 0.8s ease-out;
}
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
footer {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlideDown 0.8s ease-out 0.6s both;
}
footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
footer a:hover {
    border-color: #7c83eb;
    background: rgba(124, 131, 235, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 131, 235, 0.2);
}
footer a svg {
    transition: transform 0.3s ease;
}
footer a:hover svg {
    transform: scale(1.1);
}
footer a.mail:hover {
    border-color: #7c83eb;
    background: rgba(124, 131, 235, 0.1);
}
