/* Progresyvių stilių papildymas */

.manifesto-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.manifesto-container {
    max-width: 1200px;
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.manifesto-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.manifesto-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(10px);
}

.manifesto-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s;
}

.manifesto-item:hover::before {
    opacity: 1;
}

.manifesto-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    line-height: 1;
    opacity: 0.7;
}

.manifesto-content {
    flex: 1;
}

.manifesto-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.manifesto-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.manifesto-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.manifesto-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.manifesto-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.manifesto-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.manifesto-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.8);
}

/* Intersectional color accents for manifesto items */
.manifesto-item:nth-child(1) { border-left-color: #ff6b6b; } /* Pro-choice red */
.manifesto-item:nth-child(2) { border-left-color: #4ecdc4; } /* Relationship blue */
.manifesto-item:nth-child(3) { border-left-color: #ffd166; } /* Secular yellow */
.manifesto-item:nth-child(4) { border-left-color: #06d6a0; } /* Trans green */
.manifesto-item:nth-child(5) { border-left-color: #118ab2; } /* BLM blue */
.manifesto-item:nth-child(6) { border-left-color: #ef476f; } /* Intersectional pink */
.manifesto-item:nth-child(7) { border-left-color: #9d4edd; } /* Family purple */
.manifesto-item:nth-child(8) { border-left-color: #2a9d8f; } /* Climate teal */
.manifesto-item:nth-child(9) { border-left-color: #e9c46a; } /* Workplace yellow */
.manifesto-item:nth-child(10) { border-left-color: #f15bb5; } /* Future pink */

/* Responsive styles */
@media (max-width: 1024px) {
    .manifesto-item {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .manifesto-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .manifesto-container {
        margin: 2rem auto;
    }
    
    .manifesto-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .manifesto-number {
        font-size: 2rem;
        min-width: auto;
    }
    
    .manifesto-content h3 {
        font-size: 1.3rem;
    }
    
    .manifesto-content p {
        font-size: 1rem;
    }
    
    .manifesto-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .manifesto-btn {
        width: 100%;
        max-width: 300px;
    }
}