h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.subhead {
    font-size: 1.15rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    border-left: 4px solid #f97316;
    padding-left: 16px;
    text-align: justify;
}

.cta-block {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}
.cta-block .btn {
    display: inline-block;
    background: #f97316;
    color: #0c0c0c;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.cta-block .btn:hover {
    background: #e85d0e;
}

.nav-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-size: 0.95rem;
}
.nav-links a:hover {
    border-bottom-color: #f97316;
    color: #e0e0e0;
}

.table-wrapper {
    overflow-x: auto;
    margin: 30px 0 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: #c0c0c0;
}
th {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 2px solid #f97316;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}
td {
    padding: 12px 10px;
    border-bottom: 1px solid #2a2a2a;
    vertical-align: top;
}
td:first-child {
    white-space: nowrap;
}
.highlight-cell {
    color: #f97316;
    font-weight: 600;
}
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-list li {
    padding: 2px 0;
    position: relative;
    padding-left: 16px;
    font-size: 0.9rem;
    color: #c0c0c0;
}
.project-list li::before {
    content: "•";
    color: #14b8a6;
    position: absolute;
    left: 0;
}
.badge {
    display: inline-block;
    background: #242424;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #aaa;
    border: 1px solid #2a2a2a;
    margin-left: 4px;
}
.badge-full {
    border-color: #f97316;
    color: #f97316;
}
.badge-module {
    border-color: #14b8a6;
    color: #14b8a6;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }
    table {
        font-size: 0.8rem;
    }
    th, td {
        padding: 8px 6px;
    }
    .project-list li {
        font-size: 0.8rem;
    }
    h1 {
        font-size: 2rem;
    }
}

.disabled {
    color: #525252;
    border-color: #525252;
}
