body {
    font-family: "Inter", sans-serif;
    background-color: #efedf3;
    color: #2a2930;
}

/* LCARS Top Bar */
.lcars-bar {
    display: flex;
    gap: 6px;
    height: 24px;
    padding: 0 14px;
    background-color: #171722;
}

.lcars-block {
    height: 100%;
}

.lcars-left {
    width: 110px;
    background-color: #d48a3a;
    border-radius: 0 0 0 18px;
}

.lcars-main {
    flex: 1;
    background-color: #9b6bb3;
}

.lcars-small {
    width: 90px;
    background-color: #c85a4a;
    border-radius: 0 0 18px 0;
}

/* Header */
header {
    padding: 35px 0 25px;
    border-bottom: 1px solid #d8d4dc;
}

header h1 {
    margin-bottom: 6px;
    color: #3d344c;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

header p {
    color: #6d6678;
}

/* LCARS Section Labels */
.section-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 14px 0 14px 0;

    background-color: #d48a3a;
    color: #171722;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Headings */
main h2,
.background-item h3 {
    color: #3d344c;
}

/* Contact Links */
.contact-table {
    width: auto;
    margin-top: 22px;
}

.contact-table td {
    padding: 7px 0;
}

.contact-table i {
    width: 30px;
    font-size: 1.1rem;
}

.contact-table a {
    color: #444;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-table a:hover {
    color: #9b6bb3;
}

/* Shared Stuff */
.contact-table i,
.background-item h3 i,
main li::marker {
    color: #d48a3a;
}

/* Main Content */
main {
    padding: 50px 0;
}

main h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

main ul {
    padding-left: 22px;
}

main li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Fluff Stuff */
.background-item {
    margin-bottom: 24px;
}

.background-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.background-item h3 i {
    width: 28px;
}

.background-item p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Avatar */
.avatar {
    max-width: 260px;
    border: 5px solid #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 12%);
}

/* Footer */
.footer {
    margin-top: 50px;
    padding: 18px;
    text-align: center;
    background-color: #171722;
    color: #d48a3a;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer p {
    margin: 0;
}