/* ================================================================
   PILOTLEAGUE - STYLES PAGE ABOUT
   ================================================================ */

.about-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.about-header {
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-small {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.logo-text span {
    background: linear-gradient(135deg, #f5a623 0%, #ffc857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content */
.about-content {
    flex: 1;
}

.about-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* App Description Section */
.app-description {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(245, 166, 35, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 16px;
    margin-bottom: 3rem;
}

.app-icon {
    flex-shrink: 0;
}

.app-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
}

.app-info {
    flex: 1;
}

.app-name {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.app-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Sections */
.about-section {
    margin-bottom: 2.5rem;
}

.about-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5a623;
    margin-bottom: 1rem;
}

.about-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.features-list li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #f5a623;
    transition: background 0.3s ease;
}

.features-list li:hover {
    background: rgba(245, 166, 35, 0.1);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #f5a623 0%, #ffc857 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

/* Footer */
.about-footer {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5a623;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #f5a623;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Disclaimer / Mentions légales */
.about-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.about-disclaimer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.about-disclaimer p:first-child {
    margin-top: 0;
}

.about-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        padding: 1.5rem;
    }
    
    .about-content h1 {
        font-size: 2rem;
    }
    
    .app-description {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .app-logo {
        width: 80px;
        height: 80px;
    }
    
    .app-name {
        font-size: 1.5rem;
    }
    
    .about-section h2 {
        font-size: 1.3rem;
    }
    
    .features-list li {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}
