.novel {
            width: 100%;
            height: 85vh;
            position: relative;
            overflow: hidden;
            background: #0a0a0a;
        }

        .novel-slides-container {
            position: relative;
            width: 100%;
            height: 100%;
            perspective: 1000px;
        }

        .novel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            transform: scale(1.1) rotateY(45deg);
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .novel-slide.active {
            opacity: 1;
            transform: scale(1) rotateY(0deg);
            z-index: 10;
        }

        .novel-slide.prev {
            opacity: 0.3;
            transform: scale(0.95) rotateY(-45deg);
            z-index: 5;
        }

        .novel-slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .novel-slide.active .novel-slide-bg {
            animation: bgZoom 8s ease-in-out forwards;
        }

        @keyframes bgZoom {
            0% {
                transform: scale(1) rotateX(5deg) rotateY(-5deg);
                filter: brightness(0.8);
            }
            50% {
                filter: brightness(0.9);
            }
            100% {
                transform: scale(1.1) rotateX(0deg) rotateY(0deg);
                filter: brightness(1);
            }
        }

        .novel-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 2;
        }

        .novel-content {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 185px;
            z-index: 3;
        }

        .novel-text {
            max-width: 600px;
        }

        .novel-slide.active .novel-subtitle {
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        .novel-slide.active .novel-title {
            animation: slideInLeft 0.8s ease-out 0.4s both;
        }

        .novel-slide.active .novel-description {
            animation: slideInLeft 0.8s ease-out 0.6s both;
        }

        .novel-slide.active .novel-btn {
            animation: slideInLeft 0.8s ease-out 0.8s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .novel-subtitle {
            font-size: 14px;
            font-weight: 600;
            color: #00d4ff;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            opacity: 0;
        }

        .novel-title {
            font-size: clamp(34px, 10vw, 33px);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 20px;
            opacity: 0;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
        }

        .novel-description {
            font-size: clamp(13px, 2vw, 13px);
            color: #d0d0d0;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0;
            max-width: 500px;
        }

        .novel-btn {
            display: inline-block;
            padding: 7px 15px;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
            opacity: 0;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .novel-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
            background: linear-gradient(135deg, #0099cc, #00d4ff);
        }

        .novel-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 20;
        }

        .novel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .novel-dot.active {
            background: #00d4ff;
            width: 35px;
            border-radius: 6px;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
        }

        .novel-dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .novel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            z-index: 20;
            transition: all 0.4s ease;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .novel-nav-btn:hover {
            background: rgba(0, 212, 255, 0.3);
            border-color: #00d4ff;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .novel-prev {
            left: 30px;
        }

        .novel-next {
            right: 30px;
        }

        @media (max-width: 768px) {
            .novel {
                height: 80vh;
            }

            .novel-content {
                padding: 40px 25px;
                justify-content: flex-end;
                padding-bottom: 120px;
            }

            .novel-text {
                max-width: 100%;
            }

            .novel-subtitle {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .novel-title {
                font-size: clamp(28px, 6vw, 48px);
            }

            .novel-description {
                font-size: clamp(13px, 1.5vw, 16px);
            }

            .novel-btn {
                padding: 12px 30px;
                font-size: 12px;
            }

            .novel-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .novel-prev {
                left: 15px;
            }

            .novel-next {
                right: 15px;
            }

            .novel-controls {
                bottom: 25px;
                gap: 12px;
            }

            .novel-dot {
                width: 10px;
                height: 10px;
            }

            .novel-dot.active {
                width: 28px;
            }
        }
        .novel-subtitle,
            .novel-title,
            .novel-description,
            .novel-btn {
            opacity: 1 !important;
        }

        @media (max-width: 480px) {
            .novel {
                height: 40vh;
            }

            .novel-content {
                padding: 30px 20px;
                padding-bottom: 100px;
            }

            .novel-subtitle {
                font-size: 11px;
                letter-spacing: 1.5px;
                margin-bottom: 10px;
            }

            .novel-title {
                font-size: clamp(24px, 5vw, 36px);
                margin-bottom: 15px;
            }

            .novel-description {
                font-size: 13px;
                margin-bottom: 25px;
            }

            .novel-btn {
                padding: 10px 25px;
                font-size: 11px;
            }

            .novel-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .novel-prev {
                left: 10px;
            }

            .novel-next {
                right: 10px;
            }

            .novel-controls {
                bottom: 20px;
                gap: 10px;
            }

            .novel-dot {
                width: 8px;
                height: 8px;
            }

            .novel-dot.active {
                width: 24px;
            }
        }