/* CyPick Cyberpunk Editor's Pick Widget Styles */
.cy-pick-widget {
    background: #262626;
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
    border: 2px solid #FF5331;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 83, 49, 0.3);
    max-width: 100%;
}

/* Section Title */
.cy-section-title {
    background: linear-gradient(45deg, #FF5331, #ff6b47);
    color: #FFFFFF;
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #FF5331;
    text-shadow: 0 0 10px rgba(255, 83, 49, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cy-section-title i {
    font-size: 20px;
}

/* Editor's Pick Section */
.cy-editors-pick {
    position: relative;
}

.cy-slideshow {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.cy-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #333;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: opacity;
}

.cy-slide.active {
    opacity: 1;
    animation: glitchFade 0.5s ease-in;
}

.cy-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(38, 38, 38, 0.7), rgba(255, 83, 49, 0.3));
}

.cy-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.cy-slide-content h3 {
    font-size: 24px;
    color: #FFFFFF;
    text-shadow: 0 0 15px #FF5331;
    margin: 0;
    animation: textGlow 2s ease-in-out infinite alternate;
}

/* Slide Links */
.cy-slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.cy-slide-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Animations */
@keyframes glitchFade {
    0% { opacity: 0; transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(0); }
    100% { opacity: 1; transform: translate(0); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 15px #FF5331; }
    100% { text-shadow: 0 0 25px #FF5331, 0 0 35px #FF5331; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cy-pick-widget {
        border-radius: 10px;
    }
    
    .cy-section-title {
        font-size: 16px;
        padding: 12px 15px;
        letter-spacing: 1px;
    }
    
    .cy-section-title i {
        font-size: 18px;
    }
    
    .cy-slideshow {
        height: 200px;
    }
    
    .cy-slide-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cy-section-title {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .cy-section-title i {
        font-size: 16px;
    }
    
    .cy-slideshow {
        height: 250px;
    }
    
    .cy-slide-content h3 {
        font-size: 18px;
        padding: 15px;
    }
}