body {
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
}

/* Header */
.about-header {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
    pointer-events: none;
}

.about-header > * {
    pointer-events: auto;
}

/* Content */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
}

.about-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Credits */
.about-credits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-credits h2 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
}

.about-credits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-credits li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.credit-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d4a017;
    width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 8rem 1.5rem 3rem;
    }

    .about-content h1 {
        font-size: 1.8rem;
    }
}

/* KRC mode */
body.krc-mode {
    background: #211f20;
}

body.krc-mode .about-header .home-logo img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(95%) saturate(2000%) hue-rotate(345deg) brightness(95%) contrast(90%);
}

body.krc-mode .about-header .nav-link {
    color: rgba(233, 43, 43, 0.4);
}

body.krc-mode .about-header .nav-link:hover {
    color: #e92b2b;
}

body.krc-mode .about-header .nav-link.active {
    color: #e92b2b;
    border-color: #e92b2b;
}

body.krc-mode .about-content h1 {
    color: #e92b2b;
}

body.krc-mode .about-content p {
    color: rgba(233, 43, 43, 0.6);
}

body.krc-mode .about-credits {
    border-top-color: rgba(233, 43, 43, 0.1);
}

body.krc-mode .about-credits h2 {
    color: rgba(233, 43, 43, 0.3);
}

body.krc-mode .about-credits li {
    color: rgba(233, 43, 43, 0.6);
}

body.krc-mode .credit-role {
    color: #e92b2b;
}

/* BTG mode */
body.btg-mode {
    background: #a0a0a0;
}

body.btg-mode .about-header .home-logo img {
    filter: brightness(0) invert(0.19);
}

body.btg-mode .about-header .nav-link {
    color: rgba(49, 49, 49, 0.4);
}

body.btg-mode .about-header .nav-link:hover {
    color: #313131;
}

body.btg-mode .about-header .nav-link.active {
    color: #313131;
    border-color: #313131;
}

body.btg-mode .about-content h1 {
    color: #313131;
}

body.btg-mode .about-content p {
    color: rgba(49, 49, 49, 0.6);
}

body.btg-mode .about-credits {
    border-top-color: rgba(49, 49, 49, 0.1);
}

body.btg-mode .about-credits h2 {
    color: rgba(49, 49, 49, 0.3);
}

body.btg-mode .about-credits li {
    color: rgba(49, 49, 49, 0.6);
}

body.btg-mode .credit-role {
    color: #313131;
}
