/* Soviet Propaganda Aesthetic Styles */

.soviet-header {
    background: linear-gradient(135deg, #2F2F2F 0%, #1a1a1a 100%);
    border-bottom: 4px solid #CC0000;
}

.soviet-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.1em;
}

.soviet-button {
    transform: skew(-5deg);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.soviet-button:hover {
    transform: skew(-5deg) scale(1.05);
}

.soviet-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.soviet-button:hover::before {
    left: 100%;
}

.soviet-banner {
    background: linear-gradient(45deg, #CC0000 0%, #8B0000 50%, #CC0000 100%);
    position: relative;
    overflow: hidden;
}

.soviet-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,0.1) 0%, transparent 50%);
}

.soviet-panel {
    border: none;
    box-shadow: 
        inset 3px 3px 6px rgba(0,0,0,0.1),
        3px 3px 12px rgba(0,0,0,0.2);
    position: relative;
}

.soviet-album-art {
    border: 4px solid #FFD700;
    position: relative;
}

.soviet-album-art::before,
.soviet-album-art::after {
    content: '⭐';
    position: absolute;
    color: #FFD700;
    font-size: 16px;
}

.soviet-album-art::before {
    top: -8px;
    left: -8px;
}

.soviet-album-art::after {
    bottom: -8px;
    right: -8px;
}

.soviet-progress-bar {
    border: 2px solid #2F2F2F;
    background: #4A4A4A;
    position: relative;
}

.soviet-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        rgba(255,255,255,0.1) 8px,
        rgba(255,255,255,0.1) 10px
    );
}

.soviet-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #4A4A4A;
    border: 1px solid #2F2F2F;
}

.soviet-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #CC0000;
    border: 2px solid #FFD700;
    cursor: pointer;
    transform: rotate(45deg);
}

.soviet-star {
    transform: rotate(12deg);
    border: 3px solid #CC0000;
    transition: transform 0.3s ease;
}

.soviet-star:hover {
    transform: rotate(12deg) scale(1.1);
}

.soviet-texture {
    background-image: 
        linear-gradient(45deg, transparent 65%, rgba(47,47,47,0.02) 65%),
        linear-gradient(-45deg, transparent 65%, rgba(47,47,47,0.02) 65%);
    background-size: 20px 20px;
}

/* Animations */
@keyframes soviet-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.soviet-button:active {
    animation: soviet-pulse 0.3s ease;
}

/* Typography */
.font-propaganda {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-weight: 900;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .soviet-title {
        font-size: 2rem;
    }
    
    .soviet-banner h2 {
        font-size: 2.5rem;
    }
    
    .soviet-button {
        transform: none;
        padding: 12px 16px;
    }
    
    .soviet-button:hover {
        transform: scale(1.05);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #4A4A4A;
}

::-webkit-scrollbar-thumb {
    background: #CC0000;
    border: 2px solid #FFD700;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B0000;
}