/* About View */
#about-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-color: rgba(26, 26, 46, 0.98);
    z-index: 100;
    color: var(--text-color);
    overflow: hidden;
    display: block;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    padding: calc(20px * var(--ui-scale)) calc(15px * var(--ui-scale));
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

#close-about-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: calc(2rem * var(--ui-scale));
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    z-index: 10;
}

#close-about-btn:hover {
    color: #fff;
}

.about-content h2 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: calc(15px * var(--ui-scale));
    font-size: calc(1.5rem * var(--ui-scale));
}

.about-content p {
    color: #ccc;
    line-height: 1.4;
    margin-bottom: calc(15px * var(--ui-scale));
    font-size: calc(0.9rem * var(--ui-scale));
}

.about-content a {
    color: var(--success-color);
    text-decoration: none;
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(15px * var(--ui-scale));
    margin-top: calc(15px * var(--ui-scale));
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(5px * var(--ui-scale));
    padding: calc(8px * var(--ui-scale));
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.logo-img-container {
    width: calc(50px * var(--ui-scale));
    height: calc(50px * var(--ui-scale));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-item span {
    font-weight: bold;
    font-size: calc(0.85rem * var(--ui-scale));
}

.logo-item small {
    font-size: calc(0.7rem * var(--ui-scale));
    color: #888;
}

.about-footer {
    margin-top: calc(20px * var(--ui-scale));
    padding-top: calc(10px * var(--ui-scale));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(6px * var(--ui-scale));
}

.about-content .footer-label {
    font-size: calc(0.7rem * var(--ui-scale));
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.footer-badges {
    display: flex;
    gap: calc(8px * var(--ui-scale));
    justify-content: center;
}

.badge-item {
    font-size: calc(0.75rem * var(--ui-scale));
    color: #aaa;
    background: rgba(255, 255, 255, 0.05);
    padding: calc(4px * var(--ui-scale)) calc(10px * var(--ui-scale));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}