* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    padding: 40px;
}

.header {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-right {
    font-size: 11px;
    color: #666;
}

.title-block {
    margin-bottom: 50px;
}

.name {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #888;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.about {
    margin-bottom: 50px;
    max-width: 800px;
}

.about p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
    background: #0f0f0f;
}

th {
    background: #1a1a1a;
    text-align: left;
    padding: 12px 15px;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border: 1px solid #222;
    color: #888;
}

td {
    padding: 12px 15px;
    border: 1px solid #222;
    color: #d0d0d0;
}

tr:hover {
    background: #151515;
}

.status {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status.active {
    color: #4ade80;
}

.status.building {
    color: #fbbf24;
}

.status.archived {
    color: #666;
}

.color-bar {
    height: 20px;
    display: flex;
    margin-top: 60px;
}

.color-bar div {
    flex: 1
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 10px;
    color: #555;
    display: flex;
    justify-content: space-between;
}

.version {
    background: #1a1a1a;
    padding: 4px 10px;
    border: 1px solid #333;
}