      /* Баннер */
        .hero-banner {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
            background-size: 40px 40px;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 3em;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.2em;
            color: rgba(255,255,255,0.7);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-search {
            display: flex;
            gap: 10px;
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            padding: 8px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .hero-search input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            background: rgba(255,255,255,0.95);
            font-size: 1em;
            outline: none;
        }
        
        .hero-search button {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            background: #8c19c2;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1em;
        }
        
        .hero-search button:hover {
            background: #6a1496;
            transform: scale(1.05);
        }
        
        /* Категории в стиле bento */
        .categories-section {
            padding: 40px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 2em;
            font-weight: 700;
            color: #333;
        }
        
        .section-subtitle {
            color: #666;
            margin-top: 5px;
        }
        
        .browse-all {
            color: #8c19c2;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }
        
        .browse-all:hover {
            color: #6a1496;
        }
        
        .categories-bento {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            min-height: 500px;
        }
        
        .bento-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border-color: #8c19c2;
        }
        
        .bento-card.large {
            grid-column: span 8;
        }
        
        .bento-card.medium {
            grid-column: span 4;
        }
        
        .bento-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .bento-card:hover .bento-card-image {
            transform: scale(1.1);
        }
        
        .bento-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
        }
        
        .bento-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            color: white;
        }
        
        .bento-card-title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .bento-card-description {
            color: rgba(255,255,255,0.8);
            margin-bottom: 15px;
            max-width: 400px;
            line-height: 1.5;
        }
        
        .bento-card-btn {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 25px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .bento-card:hover .bento-card-btn {
            background: rgba(255,255,255,0.3);
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2em;
            }
            
            .categories-bento {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .bento-card.large,
            .bento-card.medium {
                grid-column: span 1;
                min-height: 250px;
            }
            
            .hero-search {
                flex-direction: column;
                background: transparent;
                border: none;
                padding: 0;
            }
            
            .hero-search input,
            .hero-search button {
                border-radius: 25px;
            }
        }