        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            letter-spacing: -0.01em;
        }
        
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        
        .glass-nav {
            background: rgba(250, 250, 249, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        
        .dark .glass-nav {
            background: rgba(28, 28, 26, 0.7);
        }
        
        .fill-1 {
            font-variation-settings: 'FILL' 1;
        }
        
        .shape-blob {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }
        .slider-section {
            position: relative;
            height: 100vh;
            min-height: 500px;
            max-height: 800px;
            width: 100%;
            overflow: hidden;
            background-color: #0f172a;
        }
        
        @media (max-width: 768px) {
            .slider-section {
                height: 300px !important;
                min-height: 300px !important;
                max-height: 300px !important;
            }
            
            .slider-nav-btn {
                width: 36px !important;
                height: 36px !important;
            }
            
            .slider-nav-btn .material-icons {
                font-size: 18px !important;
            }
            
            .slider-dots {
                bottom: 12px !important;
                gap: 8px !important;
            }
            
            .slider-dot {
                width: 6px !important;
                height: 6px !important;
            }
            
            .slider-dot.active {
                width: 20px !important;
            }
            
            .slide-content {
                bottom: 12px !important;
                padding: 0 12px !important;
            }
            
            .slide-content h2 {
                font-size: 1rem !important;
                margin-bottom: 4px !important;
            }
            
            .slide-content p {
                font-size: 0.7rem !important;
                margin-bottom: 0 !important;
            }
            
            /* Nút điều hướng mobile nhỏ hơn */
            .mobile-nav-buttons {
                bottom: 8px !important;
                padding: 0 12px !important;
            }
            
            .mobile-nav-buttons .slider-nav-btn {
                width: 32px !important;
                height: 32px !important;
            }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .slider-section {
                height: 500px;
                min-height: 500px;
                max-height: 500px;
            }
        }
        
        .slides-container {
            position: relative;
            height: 100%;
            width: 100%;
        }
        
        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @media (max-width: 768px) {
            .slide img {
                object-position: center;
            }
        }
        
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0.6) 100%);
        }
        
        .slider-nav-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            color: white;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .slider-nav-btn:hover {
            background: #3b82f6;
            border-color: #3b82f6;
            transform: scale(1.05);
        }
        
        @media (max-width: 768px) {
            .slider-nav-btn {
                width: 36px;
                height: 36px;
                backdrop-filter: blur(4px);
            }
            
            .slider-nav-btn:hover {
                transform: scale(1);
            }
        }
        
        /* Dots */
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            padding: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .slider-dot.active {
            width: 32px;
            border-radius: 4px;
            background: #3b82f6;
        }
        
        .slide-content {
            position: absolute;
            bottom: 20%;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            z-index: 2;
            padding: 0 20px;
        }
        
        @media (max-width: 768px) {
            .slide-content {
                bottom: 12px;
            }
        }
        
        .slide-content {
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .mobile-nav-buttons {
            position: absolute;
            bottom: 12px;
            left: 0;
            right: 0;
            z-index: 3;
            padding: 0 16px;
        }
        
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }
            
            .slide-content .btn {
                display: none !important;
            }
        }
        
        .mobile-only {
            display: none;
        }
        
        @media (max-width: 768px) {
            .mobile-only {
                display: block;
            }
        }