/* --- ABOUT PAGE STYLES --- */
.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.about-header {
    text-align: center;
    padding: var(--space-xl) 0;
}

.about-header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 159, 28, 0.3);
}

.about-header-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
}

.about-description-section {
    margin-bottom: var(--space-xl);
}

.about-description-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.about-description-card h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.about-description-card .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.about-description-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-highlight-box {
    background: rgba(255, 159, 28, 0.1);
    border-left: 4px solid var(--accent-primary);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-style: italic;
}

.about-section {
    margin-bottom: var(--space-xl);
}

.about-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    height: 100%;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 159, 28, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.about-card-content {
    flex: 1;
}

.about-card-content h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-card-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

.about-card-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
}

.social-card:hover .about-card-arrow {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.supporter-card .about-card-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.staff-card .about-card-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.vip-supporter-card {
    border: 2px solid rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
    position: relative;
    overflow: hidden;
}

.vip-supporter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.vip-supporter-card .about-card-icon {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.vip-supporter-card:hover {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.about-signup-prompt {
    margin-bottom: var(--space-xl);
}

.about-signup-card {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.1) 0%, rgba(255, 159, 28, 0.05) 100%);
    border: 2px solid rgba(255, 159, 28, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 159, 28, 0.15);
}

.about-signup-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.about-signup-card h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.about-signup-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-signup-card .btn {
    min-width: 150px;
}

.about-support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-support-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-support-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.faciet-card .about-support-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.kofi-card .about-support-icon {
    background: linear-gradient(135deg, #ff5e5e 0%, #ff8e8e 100%);
    box-shadow: 0 4px 12px rgba(255, 94, 94, 0.3);
}

.about-support-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.about-support-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.about-footer {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-page-container {
        padding: var(--space-md);
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-description-card {
        padding: var(--space-lg);
    }
    
    .about-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-card-icon {
        margin-bottom: var(--space-sm);
    }
}




