body { 
    font-family: "Inter", sans-serif; 
    font-size: 16px;
    line-height: 1.75; 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 32px; 
    background: #000;
    color: #f5f5f5;
}
@media (width >= 48rem) {
    body {
        font-size: 32px;
        line-height: 1.625;
    }
}
h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
h2 {
    color: #929292;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h3 {
    color: #929292;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
h4 {
    color: #929292;
}
@media (width >= 48rem) {
    h1 {
        font-size: 70px;
    }
    h2 {
        font-size: 56px;
    }
    h3 {
        font-size: 40px;
    }
}
@media (width >= 64rem) {
    h1 {
        font-size: 86px;
    }
    h2 {
        font-size: 68px;
    }
    h3 {
        font-size: 48px;
    }
}
hr {
    color: #A6AAAD;
}
pre { 
    background: #f4f4f4; 
    padding: 15px; 
    border-radius: 5px; 
    overflow-x: auto; 
}
code { 
    background: #f4f4f4; 
    padding: 2px 4px; 
    border-radius: 3px; 
}
blockquote { 
    border-left: 4px solid #ddd; 
    padding-left: 20px; 
    margin-left: 0; 
    color: #666; 
}
a { 
    color: #E94B25; 
}
ul { 
    list-style-type: none; 
    padding: 0; 
}
li { 
    margin: 10px 0; 
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid #eee; 
    border-radius: 0px;
    line-height: 1.75;
}
p {
    margin-bottom: 24px;
}
@media (width >= 48rem) {
    p {
        margin-bottom: 40px;
    }
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 48px;
    padding: 12px 48px;
    display: flex;
    gap: 64px;
}
nav a {
    text-decoration: none;
    font-size: 0.6em;
    font-weight: 600;
    transition: color 0.3s ease;
}
nav a:hover {
    color: white;
}
#logo {
    height: 24px;
}
@media (width >= 48rem) {
    #logo {
        height: 32px;
    }
}
#logo img {
    height: 100%;
}
.links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.links a:hover {
    color: #E94B25;
}

/* Mobile-only additions */
@media (width < 48rem) {
    nav {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        transition: background 0.3s ease;
    }
    
    .mobile-menu-button:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .mobile-menu-button span {
        width: 20px;
        height: 2px;
        background: #f5f5f5;
        margin: 1px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mobile-menu-button span:nth-child(1) {
        top: 15px;
    }
    
    .mobile-menu-button span:nth-child(2) {
        top: 20px;
    }
    
    .mobile-menu-button span:nth-child(3) {
        top: 25px;
    }
    
    .mobile-menu-button.open span:nth-child(1) {
        top: 20px;
        transform: translateX(-50%) rotate(45deg);
    }
    
    .mobile-menu-button.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-button.open span:nth-child(3) {
        top: 20px;
        transform: translateX(-50%) rotate(-45deg);
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav a {
        color: #f5f5f5;
        text-decoration: none;
        font-size: 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .mobile-nav.open a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-nav.open a:nth-child(1) { transition-delay: 0.1s; }
    .mobile-nav.open a:nth-child(2) { transition-delay: 0.2s; }
    .mobile-nav.open a:nth-child(3) { transition-delay: 0.3s; }
    .mobile-nav.open a:nth-child(4) { transition-delay: 0.4s; }
    
    .mobile-nav a:hover {
        color: #E94B25;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (width >= 48rem) {
    .mobile-menu-button {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
}