/* Main Content Section */
.about-content {
    text-align: center;
    padding: 0 0 120px 0;
    position: relative;
    background: var(--darker-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(98, 0, 234, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(41, 121, 255, 0.08) 0%, transparent 40%);
    z-index: 1;
}

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

.about-image {
    width: 280px;
    height: 280px;
    margin: 0 auto 0 auto;
    position: relative;
    display: inline-block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        var(--neon-purple),
        var(--neon-blue),
        var(--neon-cyan)
    );
    z-index: -1;
    opacity: 0.8;
}

.about-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 10%;
    border: 4px solid var(--darker-bg);
    box-shadow: 
        0 0 30px rgba(98, 0, 234, 0.3),
        0 0 60px rgba(41, 121, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 
        0 0 40px rgba(98, 0, 234, 0.4),
        0 0 80px rgba(41, 121, 255, 0.3);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text .section-title {
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--neon-purple),
        var(--neon-blue)
    );
    border-radius: 2px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
    background: rgba(13, 13, 13, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-text p:hover {
    border-color: rgba(98, 0, 234, 0.3);
    background: rgba(13, 13, 13, 0.9);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        padding: 100px 0 60px 0;
    }
    
    .about-content .container {
        padding: 0 1rem;
    }
    
    .about-image {
        width: 220px;
        height: 220px;
        margin-bottom: 3rem;
    }
    
    .about-text .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 80px 0 40px 0;
    }
    
    .about-image {
        width: 180px;
        height: 180px;
        margin-bottom: 2.5rem;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
} 