.stories-section {
            max-width: 1300px;
            margin: 0 auto 40px;
            padding: 0 10px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-left: 10px;
            color: #333;
        }
        
        .stories-container {
            display: flex;
            gap: 20px;
            padding: 10px;
            overflow-x: auto;
            scrollbar-width: none;
            cursor: grab;
        }
        
        .stories-container:active {
            cursor: grabbing;
        }
        
        .stories-container::-webkit-scrollbar {
            display: none;
        }
        
        .story {
            position: relative;
            flex: 0 0 auto;
            width: 197px;
            height: 248px;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .story:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .story-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .story-author {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: white;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
            padding: 0 10px;
        }
        
        /* Модальное окно сторис */
        .story-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            position: relative;
            width: 100%;
            max-width: 350px;
            /*height: 85vh;*/
            border-radius: 20px;
            overflow: hidden;
            background: #000;
        }
        
        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            display: none;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            background: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .modal-author {
            position: absolute;
            top: 60px;
            left: 20px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 15px;
            border-radius: 20px;
            z-index: 5;
        }
        
        .progress-container {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            display: flex;
            gap: 5px;
            z-index: 5;
        }
        
        .progress-bar {
            flex: 1;
            height: 3px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            width: 0%;
            background: white;
            transition: width 0.1s linear;
        }
        
        .loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid #ffffff;
            animation: spin 1s linear infinite;
            display: none;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .pause-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 50px;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
            display: none;
            z-index: 5;
        }
        
        /* Навигационные зоны */
        .nav-zone {
            position: absolute;
            top: 0;
            height: 100%;
            width: 33%;
            z-index: 2;
            cursor: pointer;
        }
        
        .prev-zone {
            left: 0;
        }
        
        .next-zone {
            right: 0;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .story {
                width: 170px;
                height: 214px;
            }
            
            .section-title {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .story {
                width: 150px;
                height: 190px;
            }
            
            .stories-container {
                gap: 15px;
            }
            
            .modal-content {
                height: 100vh;
                border-radius: 0;
                max-width: 100%;
            }
        }