  /* MAIN CONTAINER */
        .enchanted-divider {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 0;
            position: relative;
            cursor: none;
        }

        /* ROPE BASE (Braided & Animated) */
        .magic-rope {
            width: 80%;
            height: 8px;
            background: linear-gradient(90deg, 
                #5e2c04, #8B4513, #c78a4c, #8B4513, #5e2c04);
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 15px rgba(139, 69, 13, 0.7);
            z-index: 1;
            transition: all 0.5s ease;
        }

        /* ROPE ANIMATION (Glow & Twist) */
        .magic-rope:hover {
            animation: ropeTwist 3s infinite;
            box-shadow: 0 0 25px #f1c27d;
        }

        @keyframes ropeTwist {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(1deg); }
            75% { transform: rotate(-1deg); }
        }

        /* BOOKS (Floating & Glowing) */
        .spellbook {
            width: 36px;
            height: 100px;
            background: var(--book-color);
            position: absolute;
            z-index: 3;
            margin: 0 -15px;
            transform: translateY(0) rotateY(0);
            transition: all 0.4s ease;
            border-radius: 3px 8px 8px 3px;
            box-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.4),
                inset 2px 0 10px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        /* BOOK SPINE (Metallic & Engraved) */
        .spellbook::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10%;
            width: 6px;
            height: 80%;
            background: linear-gradient(
                to bottom, 
                #d4af37, #f1c27d, #d4af37
            );
            box-shadow: 0 0 5px gold;
        }

        /* PAGES (Subtle Fluttering Effect) */
        .spellbook::after {
            content: "";
            position: absolute;
            right: 2px;
            top: 5%;
            width: 90%;
            height: 90%;
            background: repeating-linear-gradient(
                #f8f1e5, #f8f1e5 1px,
                #fff 1px, #fff 3px
            );
            transform-origin: right;
            opacity: 0.8;
            border-radius: 0 5px 5px 0;
        }

        /* MAGIC WIRES (Shimmering & Elastic) */
        .magic-wire {
            position: absolute;
            width: 25px;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, silver, gold, silver, transparent);
            z-index: 2;
            top: 50%;
            left: -12px;
            transform: rotate(90deg);
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
            transition: all 0.3s ease;
        }

        /* RUNES (Glowing Symbols on Books) */
        .rune {
            position: absolute;
            font-size: 12px;
            color: gold;
            opacity: 0;
            text-shadow: 0 0 5px gold;
            transition: all 0.3s ease;
        }

        /* ANIMATIONS */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes glow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* HOVER EFFECTS */
        .enchanted-divider:hover .spellbook {
            animation: float 3s ease-in-out infinite;
        }

        .spellbook:hover {
            transform: translateY(-20px) rotateY(20deg);
            box-shadow: 
                0 15px 25px rgba(0, 0, 0, 0.6),
                0 0 20px var(--book-glow);
        }

        .spellbook:hover::after {
            animation: pageFlip 5s infinite;
        }

        @keyframes pageFlip {
            0%, 100% { transform: rotateY(0deg); }
            50% { transform: rotateY(10deg); }
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .spellbook {
                width: 28px;
                height: 80px;
            }
            .magic-rope {
                height: 6px;
            }
        }

        /* CUSTOM CURSOR (Magic Sparkle) */
        .magic-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(
                gold, transparent 70%
            );
            border-radius: 50%;
            pointer-events: none;
            z-index: 999;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        body:hover .magic-cursor {
            opacity: 0.7;
        }