body { 
    margin: 0; 
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;

    /* This line does two things: 
       1. Adds a 50% black tint so text is readable
       2. Loads your image from the same folder */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('page1.jpg');
    
    /* Ensures the image covers the whole screen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #050505; 
    
    font-family: 'Inter', sans-serif; 
    color: white;
    -webkit-font-smoothing: antialiased;
}

/* Header Section */
.title-container { 
    position: absolute; 
    top: 48px; 
    left: 0; 
    width: 100%; 
    text-align: center; 
    pointer-events: none;
    z-index: 10; 
}

.main-title { 
    font-size: 32px; 
    font-weight: 500; 
    letter-spacing: 8px; 
    color: #fff; 
    text-transform: uppercase;
    margin: 0;
}

.title-line { 
    width: 100%; 
    height: 1px; 
    background-color: #fff; 
    margin-top: 18px; 
    opacity: 0.8; 
}

.subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 24px;
}

/* Navigation Panel */
.ui-panel { 
    position: absolute; 
    top: 180px; 
    left: 40px; 
    width: 320px; 
    display: flex; 
    flex-direction: column; 
    z-index: 20; 
}

.ui-group { 
    display: flex; 
    flex-direction: column; 
    gap: 32px; 
}

.project-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.project-link .label {
    font-size: 10px;
    opacity: 0.5;
}

.project-link:hover {
    opacity: 0.7;
}

.project-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    padding-left: 35px;
    letter-spacing: 0.5px;
}

sup {
    font-size: 70%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em;
    padding-left: 1px;
}

.ui-divider { 
    height: 1px; 
    background: rgba(255, 255, 255, 0.25); 
    width: 100%;
}

/* Bottom Info Panel */
.info-panel { 
    position: absolute; 
    bottom: 48px; 
    right: 48px; 
    width: 280px; 
    color: white; 
    font-size: 11px; 
    line-height: 1.8; 
    letter-spacing: 1px; 
    opacity: 0.5; 
    text-align: right; 
}