/* 011 Works Section Styles */
.section-011-works {
    background-color: #e9ebee;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-011-works .container-011 {
    max-width: 1200px;
    margin: 0 auto;
}

.section-011-works h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-011-works .category-011 {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-011-works .category-011:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.section-011-works .category-header-011 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-011-works .category-icon-011 {
    font-size: 28px;
    margin-right: 15px;
}

.section-011-works .category-title-011 {
    font-size: 1.8rem;
    color: #1877F2;
    margin: 0;
    font-weight: 600;
}

.section-011-works .buttons-container-011 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.section-011-works .gradient-button-011 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 280px;
    z-index: 1;
}

.section-011-works .gradient-button-011::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    z-index: -1;
    transition: all 0.3s ease;
}

.section-011-works .gradient-button-011:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(24, 119, 242, 0.4);
}

.section-011-works .gradient-button-011:hover::before {
    background: linear-gradient(135deg, #42A5F5, #1877F2);
}

.section-011-works .gradient-button-011:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.section-011-works .gradient-button-011::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.section-011-works .gradient-button-011:hover::after {
    opacity: 1;
}

.section-011-works .button-icon-011 {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.section-011-works .button-text-011 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-011-works .button-description-011 {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.5;
}

/* Specific button styles for each category */
.section-011-works .poster-button-011::before {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.section-011-works .video-button-011::before {
    background: linear-gradient(135deg, #FF5722, #FF9800);
}

.section-011-works .script-button-011::before {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-011-works .category-011 {
        padding: 20px;
    }
    
    .section-011-works .gradient-button-011 {
        padding: 16px 28px;
        font-size: 1rem;
        min-width: 240px;
    }
    
    .section-011-works .category-title-011 {
        font-size: 1.5rem;
    }
}