/* About Page Specific Styles */

.about-page {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.about-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(15, 20, 35, 0.5) 0%, rgba(10, 15, 30, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

/* Intro Section */
.about-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.about-logo-block {
    margin-bottom: 2.5rem;
}

.about-logo-block img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.about-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-top: 0.5rem;
}

.about-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.about-intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Mod Cards Grid */
.about-mods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

.about-mod-card {
    background: rgb(20, 20, 30);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.about-mod-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-mod-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 1;
}

/* Bottom CTA */
.about-cta {
    text-align: center;
    background: rgb(20, 20, 30);
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .about-intro h1 {
        font-size: 2.5rem;
    }
    
    .about-container {
        padding: 4rem 1.5rem;
    }
    
    .about-mods-grid {
        grid-template-columns: 1fr;
    }
}
