.pixel-banner {
            width: 100%;
            height: 80vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            image-rendering: pixelated;
            filter: brightness(0.7);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 20px;
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease 0.3s;
        }

        .carousel-slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border: 2px solid white;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: bold;
            backdrop-filter: blur(5px);
        }

        .btn:hover {
            background-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }

        .carousel-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            backdrop-filter: blur(5px);
        }

        .carousel-nav-btn:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background-color: white;
            transform: scale(1.3);
        }

        /* Pixel fade effect */
        @keyframes pixelFadeIn {
            0% {
                opacity: 0;
                filter: blur(5px) brightness(0.5);
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                filter: blur(0) brightness(0.7);
                transform: scale(1);
            }
        }

        .carousel-slide.active .slide-image {
            animation: pixelFadeIn 1.5s ease-out forwards;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .pixel-banner {
                height: 60vh;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .carousel-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .pixel-banner {
                height: 50vh;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
        }