.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.glitch {
    color: var(--red);
    position: relative;
    text-shadow: var(--glow);
    animation: textGlitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: #0ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: #f0f;
    z-index: -2;
}

.about-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 3px;
    opacity: 0.7;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.1);
}

.about-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 0, 51, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 51, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--red);
}

.card-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--white);
}

.card-body {
    color: #ccc;
    line-height: 1.6;
}

.card-body p {
    margin-bottom: 1rem;
}

.card-body strong {
    color: var(--red);
}

/* Активности */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.activity-item:hover {
    background: rgba(255, 0, 51, 0.1);
    transform: translateY(-3px);
}

.activity-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.activity-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.activity-item p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Таймлайн */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
}

.timeline-date {
    font-family: 'Orbitron', monospace;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow);
}

.timeline-content h4 {
    font-family: 'Orbitron', monospace;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }

/* Адаптивность */
@media (max-width: 768px) {
    .about-container {
        padding: 6rem 1rem 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
}
