/* About Modal Styles */
.about-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.about-modal {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background-color: #121212;
    z-index: 10;
}

.about-header h3 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--logo-brown);
}

.close-about-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-about-btn:hover {
    color: var(--logo-red);
}

.about-body {
    padding: 20px;
    overflow-y: auto;
}

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

.about-logo img {
    width: 100px;
    height: auto;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 25px;
}

.about-section h4 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: var(--logo-brown);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.about-section p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-section ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.about-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-section.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section.copyright p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-tertiary);
}

.about-section.copyright a {
    color: var(--logo-red);
    text-decoration: none;
    transition: all 0.2s;
}

.about-section.copyright a:hover {
    text-decoration: underline;
    color: var(--logo-brown);
}

.about-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    position: sticky;
    bottom: 0;
    background-color: #121212;
}

.close-about-footer-btn {
    padding: 10px 30px;
    border: 1px solid var(--logo-red);
    background-color: var(--logo-red);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.close-about-footer-btn:hover {
    background-color: #b82922;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-modal {
        width: 95%;
        max-height: 80vh;
    }
    
    .about-header h3 {
        font-size: 20px;
    }
    
    .about-section h4 {
        font-size: 16px;
    }
    
    .about-logo img {
        width: 80px;
    }
}
