/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: var(--panel-bg);
    padding: 60px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px var(--shadow);
    animation: fadeIn 0.6s ease;
}

.about-header h1 {
    font-size: 2.8em;
    margin: 0 0 10px 0;
    font-weight: bold;
    color: var(--panel-bg);
}

.about-header .lead {
    font-size: 1.2em;
    margin: 0;
    opacity: 1;
    font-weight: 500;
    color: var(--panel-bg);
}

.about-project, .about-team, .disclaimer-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease;
}

.about-project h2, .about-team h2, .disclaimer-section h2 {
    color: var(--accent);
    border-bottom: 3px solid var(--accent-strong);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-project ul {
    list-style: none;
    padding-left: 0;
}

.about-project li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
}

.about-project li:before {
    content: "🍄";
    position: absolute;
    left: 0;
}

.about-project a, .about-technical a {
    display: inline-block;
    margin: 8px 10px 8px 0;
    padding: 12px 24px;
    background: linear-gradient(135deg, #a0704d 0%, #7a4f2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(160, 112, 77, 0.3);
}

.about-project a:hover, .about-technical a:hover {
    background: linear-gradient(135deg, #7a4f2b 0%, #5a3a1f 100%);
    box-shadow: 0 6px 20px rgba(160, 112, 77, 0.5);
    transform: translateY(-2px);
}

.about-project a:active, .about-technical a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(160, 112, 77, 0.3);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.team-member {
    background: var(--panel-bg);
    border: 2px solid var(--accent-strong);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.5s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

.team-member h3 {
    color: var(--accent);
    margin: 15px 0 5px 0;
    font-size: 1.3em;
}

.team-member .role {
    color: var(--accent-strong);
    font-style: italic;
    font-size: 0.95em;
    margin: 8px 0 15px 0;
    font-weight: 600;
}

.team-member p:not(.role) {
    color: var(--text);
    font-size: 0.9em;
    line-height: 1.6;
    margin: 10px 0;
}

.team-member .role {
    color: #a0704d;
    font-style: italic;
    font-size: 0.95em;
    margin-bottom: 10px;
}

/* Technical Process */
.technical-process {
    background: var(--panel-bg);
    padding: 30px;
    border-left: 5px solid var(--accent);
    border-radius: 5px;
    margin: 20px 0;
}

.technical-process ol {
    margin: 15px 0;
    padding-left: 20px;
}

.technical-process li {
    margin: 12px 0;
    line-height: 1.6;
}

/* Disclaimer Box */
.disclaimer-box {
    background: var(--panel-bg);
    border-left: 5px solid #d9534f;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}

.disclaimer-box h3 {
    color: #d9534f;
    margin-top: 0;
}

.disclaimer-box p {
    margin: 10px 0;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #a0704d 0%, #7a4f2b 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(160, 112, 77, 0.3);
}

.back-link:hover {
    background: linear-gradient(135deg, #7a4f2b 0%, #5a3a1f 100%);
    box-shadow: 0 6px 20px rgba(160, 112, 77, 0.5);
    transform: translateY(-2px);
}

.back-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(160, 112, 77, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-header {
        padding: 40px 20px;
    }

    .about-header h1 {
        font-size: 1.8em;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Changelog Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--panel-bg);
    color: var(--text);
    padding: 20px;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

.changelog-content h3 {
    color: var(--accent);
    margin-top: 20px;
    margin-bottom: 10px;
}

.changelog-content ul {
    margin: 0;
    padding-left: 20px;
}

.changelog-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.version-history h4 {
    color: var(--accent);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.version-history ul {
    margin: 0;
    padding-left: 20px;
}

.version-history li {
    margin-bottom: 8px;
    line-height: 1.5;
}
