/* About Page Specific Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #4f46e5;
    --accent-color: #06b6d4;
    --dark-bg: #ffffff;
    --medium-bg: #f8fafc;
    --light-bg: #e2e8f0;
    --card-bg: #ffffff;
    --text-light: #1e293b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

/* Page Header Enhanced */
.page-header {
    background: linear-gradient(135deg, #f0f7ff, var(--medium-bg));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(0,0,0,0.03)" stroke-width="1"/><path d="M100,0L0,100" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Piracy Impact Section */
.piracy-impact {
    padding: 80px 0;
    background-color: var(--medium-bg);
    position: relative;
}

.piracy-impact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.piracy-impact .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.piracy-impact .section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.stat-box-large {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-box-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
    display: inline-block;
}

.stat-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Piracy Trends Section */
.piracy-trends {
    padding: 80px 0;
    background-color: #f8fafc;
}

.piracy-trends .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.trends-content h2 {
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.trends-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.trends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.trend-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.trend-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.trend-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trend-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.trend-info h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.trend-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.trends-graphic {
    display: flex;
    align-items: center;
}

.chart-container {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.chart-container h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    width: 80px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: right;
}

.bar-wrapper {
    flex-grow: 1;
    background: #edf2f7;
    height: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.bar-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.chart-note {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    font-style: italic;
}

/* Mission Section */
.mission-section.enhanced {
    padding: 80px 0;
    background-color: #f0f7ff;
    position: relative;
    overflow: hidden;
}

.mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-direction: column;
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.mission-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.mission-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 700;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.mission-statement .large-text {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.pillar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.pillar h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.pillar p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why It Matters Section */
.why-matters {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-matters .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-matters .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-matters .section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.impacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.impact-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.impact-card h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.impact-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--text-light);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-button {
    background: transparent;
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--text-light);
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-box-large, .trend-item, .pillar, .impact-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

.stat-box-large:nth-child(1),
.trend-item:nth-child(1),
.pillar:nth-child(1),
.impact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box-large:nth-child(2),
.trend-item:nth-child(2),
.pillar:nth-child(2),
.impact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box-large:nth-child(3),
.trend-item:nth-child(3),
.pillar:nth-child(3),
.impact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-box-large:nth-child(4),
.trend-item:nth-child(4),
.pillar:nth-child(4),
.impact-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Media Queries */
@media (max-width: 1024px) {
    .piracy-trends .container {
        grid-template-columns: 1fr;
    }
    
    .trends-content {
        order: 1;
    }
    
    .trends-graphic {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .piracy-impact .section-header h2,
    .trends-content h2,
    .mission-header h2,
    .why-matters .section-header h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .mission-statement .large-text {
        font-size: 1.25rem;
    }
    
    .stat-content h3 {
        font-size: 2rem;
    }
    
    .mission-pillars {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .piracy-impact .section-header h2,
    .trends-content h2,
    .mission-header h2,
    .why-matters .section-header h2,
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .stat-content h3 {
        font-size: 1.8rem;
    }
    
    .impacts-grid,
    .mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .mission-statement .large-text {
        font-size: 1.1rem;
    }
}
