/* About Page Styles */
.about-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.about-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
}

.about-page h2 {
    font-size: 2rem;
    color: #4477A1;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    text-shadow: 0 1px 0 #fff;
}

.about-page p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-shadow: none;
}

.about-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
    box-shadow: none;
}

.inspiration-card {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    box-shadow: none;
}

.inspiration-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    text-shadow: 0 1px 0 #fff;
}

.inspiration-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #999;
}

.inspiration-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-shadow: none;
}

/* Credits Section Styles */
.credits-section .creator-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.credits-section .creator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: none;
}

.credits-section .creator-card:hover {
    transform: none;
}

.credits-section .creator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4477A1;
    margin-bottom: 10px;
    box-shadow: none;
}

.credits-section .creator-username {
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: none;
}