/* --- ABOUT & MISSION RECORD STYLES --- */
.about-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding-top: 0px;
}

.about-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    width: 90%;
    pointer-events: auto;
}

.about-main-logo {
    height: 300px;
    margin-bottom: 20px;
    user-select: none;
    transition: filter 0.3s ease;
}

.about-text-box {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 40px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.about-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 5px solid #000000;
    padding-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    text-align: left;
}

.about-body {
    line-height: 1.6;
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    text-align: left;
}

.record-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.record-indicator {
    display: flex;
    gap: 10px;
    margin-top: 0 !important;
}

.record-nav-btn.disabled {
    opacity: 0;
    pointer-events: none;
}

/* --- ABOUT PAGE CONTENT STYLES --- */
#about-page {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    background-color: #fff;
}

.about-header-title {
    border-bottom: 5px solid #000;
    padding-bottom: 15px;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-header-subtitle {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.talking-point {
    margin-bottom: 60px;
    border-left: 10px solid #000;
    padding-left: 30px;
}

.talking-point h2 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 15px;
}

.talking-point p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: bold;
}

.utility-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.utility-item {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
}

/* --- CODEBERG SECTION --- */
.codeberg-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    width: 100%;
}

.codeberg-logo {
    max-width: 120px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 10px;
}

.codeberg-logo:hover {
    transform: scale(1.1);
}

.codeberg-separator {
    width: 60px;
    height: 5px;
    background-color: #000;
    margin-bottom: 20px;
}

.codeberg-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Arial Black', sans-serif;
}

.codeberg-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: bold;
    max-width: 900px;
    color: #333;
}

.codeberg-subtitle a {
    color: #000;
    text-decoration: underline;
    word-break: break-all;
}

.codeberg-subtitle a:hover {
    text-decoration: none;
    opacity: 0.8;
}