:root {
    --bg: #262626;
    --text: #ffffff;
    --accent: #FFFA5D;
    --light: #e0e0e0;
    --muted: #999999;
    --btn-bg: #C0C0C0;
    --btn-hover: #D4D4D4;
    --shadow: #808080;
}

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

html, body {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    font-family: 'Alte Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.nav-buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-container svg {
    width: 40px;
    height: 40px;
}

.logo {
    display: none;
}

.btn {
    font-family: 'Geist Mono', monospace;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    background: var(--btn-bg);
    padding: 4px 10px;
    text-decoration: none;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid var(--shadow);
    border-bottom: 1px solid var(--shadow);
    box-shadow: 1px 1px 0 1px #000;
}

.btn:hover {
    text-decoration: underline;
    background: var(--btn-hover);
    border-top: 1px solid var(--shadow);
    border-left: 1px solid var(--shadow);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-shadow: inset 1px 1px 0 1px #000;
}

.main {
    text-align: center;
    max-width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* Logo text in main content */
.logo-text {
    margin-bottom: 40px;
    text-align: center;
}

.brand {
    color: var(--accent);
    font-size: 32px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 400;
    font-family: 'Alte Haas Grotesk', sans-serif;
}

.desc {
    font-family: 'Geist Mono', monospace;
    font-size: 16px;
    line-height: 1.5;
    color: var(--light);
    font-weight: 300;
    max-width: 500px;
}

.highlight {
    color: var(--accent);
}

.footer {
    position: absolute;
    bottom: 30px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    font-family: 'Geist Mono', monospace;
}

.footer div:first-child {
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .nav {
        top: 15px;
        padding: 0 15px;
    }
    
    .logo-container svg {
        width: 35px;
        height: 35px;
    }
    
    .main {
        padding: 50px 20px;
    }
    
    .desc {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .brand {
        font-size: 28px;
    }
    
    .footer {
        bottom: 15px;
        padding: 0 20px;
    }
}
