/* ============================================
   8bitedge About Us - Retro Gaming Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.about-main,
.about-container,
.about-card,
.about-section,
.about-stats {
    --neon-cyan: #00d9ff;
    --neon-green: #00ff41;
    --neon-magenta: #ff00ff;
    
    --bg-card: #0f0f1e;
    --bg-darker: #1a1a2e;
    
    --border-cyan: #00d9ff;
    
    --text-primary: #ffffff;
    --text-secondary: #a5b4fc;
    
    --success: #00ff41;
    
    font-family: 'Electrolize', sans-serif;
}

/* Main Container */
.about-main {
    width: 100%;
    padding: 20px 0 0 0;
    margin: 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 100%);
    min-height: 100vh;
}

.about-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px 40px 20px;
}

/* Hero Section - Retro Gaming Style */
.about-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 4px solid #00ff41;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.3),
        inset 0 0 60px rgba(0, 255, 65, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 40px;
}

.hero-gradient {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.03) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 255, 65, 0.03) 6px
    );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 65, 0.05) 50%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 0, 255, 0.02) 0px,
            transparent 2px,
            transparent 4px,
            rgba(255, 0, 255, 0.02) 6px
        );
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.hero-headline {
    font-family: 'Electrolize', 'Courier New', monospace;
    font-size: 2rem;
    color: #00ff41;
    text-shadow: 
        2px 2px 0px #ff00ff,
        4px 4px 0px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 255, 65, 0.5);
    margin: 0;
    letter-spacing: 2px;
}

.hero-subtext {
    font-family: 'Electrolize', 'Courier New', monospace;
    font-size: 1rem;
    color: #00d9ff;
    text-shadow: 
        1px 1px 0px #ff00ff,
        0 0 8px rgba(0, 217, 255, 0.6);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-subtext::before {
    content: '> ';
    color: #ff00ff;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Pixel corner decorations */
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #ff00ff;
}

.hero-content::before {
    top: -1.5rem;
    left: -1.5rem;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.hero-content::after {
    bottom: -1.5rem;
    right: -1.5rem;
    border-left: none;
    border-top: none;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Main Content Card */
.about-card {
    background: var(--bg-card);
    border: 2px solid var(--border-cyan);
    border-radius: 0;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    overflow: hidden;
    margin-bottom: 40px;
}

.about-content {
    padding: 3rem 2.5rem;
}

/* Section Styling */
.about-section {
    margin-bottom: 3rem;
    position: relative;
}

.about-section:last-of-type {
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.75rem;
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
    margin: 0 0 1.5rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.section-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-text strong {
    color: #00ff41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.4);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-left: 4px solid #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.feature-bullet {
    color: #00ff41;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

.feature-text {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-text strong {
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
}

.feature-text strong a {
    color: #00d9ff;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.feature-text strong a:hover {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid #00ff41;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 10px,
        rgba(0, 255, 65, 0.02) 10px,
        rgba(0, 255, 65, 0.02) 20px
    );
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 2rem;
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: #00d9ff;
    border: 3px solid #00d9ff;
    border-radius: 0;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    font-family: 'Electrolize', sans-serif;
}

.cta-button:hover {
    background: #00ff41;
    border-color: #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
    transform: translateY(-3px);
}

.cta-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--bg-card);
    border: 2px solid #00d9ff;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    transform: translateY(-5px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 10px,
        rgba(0, 217, 255, 0.05) 10px,
        rgba(0, 217, 255, 0.05) 20px
    );
    pointer-events: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00d9ff;
    border-radius: 0;
    position: relative;
}

.stat-item:hover .stat-icon {
    border-color: #00ff41;
}

.stat-icon i {
    font-size: 2rem;
    color: #00d9ff;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
}

.stat-item:hover .stat-icon i {
    color: #00ff41;
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.6));
}

.stat-value {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.5rem;
    color: #00d9ff;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}

.stat-item:hover .stat-value {
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 140px;
        padding: 1.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .hero-headline {
        font-size: 1.25rem;
    }
    
    .hero-subtext {
        font-size: 0.875rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-section {
        padding-left: 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-bullet {
        margin: 0 0 0.5rem 0;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .hero-subtext {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}