:root {
    --background: #121212;
    --surface: #1a1a1a;
    --text-primary: #e8e6e3;
    --text-secondary: #9a9a9a;
    --accent: #bfa06a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: var(--background);
    color: var(--text-primary);
    font-family: Arial, sans-serif;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
}
.logo {
    color: var(--accent);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover{
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-links a:hover::after {
    transform: scaleX(1);
}
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12%;
}
.hero-intro {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
}
.name-highlight {
    color: var(--accent);
}
.hero-description {
    margin-top: 24px;
    max-width: 700px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
}
.cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}