@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Double:wght@400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #393d3f;
    color: #fdfdff;
    line-height: 1.6;
}

a {
    color: #62929E;
    text-decoration: none;
    text-decoration-line: underline;
    text-underline-offset: 0.2em;
}

a:hover {
    background-color: #62929E;
    color: #FDFDFF;
    padding: 0.2em 0.5em;
    border-radius: 0.1em;
    transition: all 0.3s ease;
}

.logo {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem;
    z-index: 100;
}

.logo img {
    width: 40px;
    height: 40px;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    z-index: 100;
}

.nav-link {
    color: #c6c5b9;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fdfdff;
}

.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.main-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: #fdfdff;
    letter-spacing: -0.02em;
}

.name {
    font-family: 'Bitcount Prop Double', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #62929E;
    letter-spacing: -0.02em;
    text-align: center;
}

.name:hover {
    color: #FDFDFF;
    background-color: #62929E;
    padding: 0.1em 0.1em 0.1em 0.25em;
    border-radius: 0.1em;
    transition: all 0.3s ease;
}

.subtitle {
    font-family: 'Bitcount Prop Double', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #c6c5b9;
    max-width: 600px;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #fdfdff;
    max-width: 500px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #fdfdff;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #62929e;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-link:hover {
    padding: 0;
    background-color: transparent;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        gap: 1rem;
    }
    
    .logo {
        padding: 1rem;
    }
    
    .logo img {
        width: 32px;
        height: 32px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}