/* About App */
.about-content {
    text-align: center;
    padding: 30px;
}

.about-logo {
    margin-bottom: 20px;
}

.about-logo .glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    position: relative;
}

.about-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
}

.about-info p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.about-details {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--text-dim);
}

.status-online {
    color: var(--primary);
}

.about-message {
    padding: 15px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 8px;
}

.about-message p {
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.about-message p:last-child {
    margin-bottom: 0;
}
