body { cursor: none; background-color: #F7F5F2; }
        .custom-cursor {
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
            transform: translate(-50%, -50%);
        }
        .interactive-hover:hover ~ .custom-cursor,
        button:hover ~ .custom-cursor,
        a:hover ~ .custom-cursor {
            width: 64px;
            height: 64px;
            background-color: white;
            mix-blend-mode: difference;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee {
            animation: marquee 20s linear infinite;
        }
        .hard-shadow { box-shadow: 8px 8px 0px 0px #111111; }
        .text-stroke { -webkit-text-stroke: 1px #111111; color: transparent; }

body { background-color: #F7F5F2; cursor: none; }
        .custom-cursor {
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
        }
        .interactive:hover ~ .custom-cursor,
        button:hover ~ .custom-cursor,
        a:hover ~ .custom-cursor {
            width: 64px;
            height: 64px;
            background-color: white;
            mix-blend-mode: difference;
        }
        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            grid-auto-rows: 300px;
            gap: 24px;
        }
        .masonry-item-tall { grid-row: span 2; }
        .masonry-item-wide { grid-column: span 2; }
        
        .gradient-banner {
            background: linear-gradient(135deg, #6750A4 0%, #CCFF00 100%);
            background-size: 200% 200%;
        }

body {
            background-color: #F7F5F2;
            cursor: none;
        }
        .custom-cursor {
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
        }
        .interactive-hover:hover ~ .custom-cursor,
        button:hover ~ .custom-cursor,
        a:hover ~ .custom-cursor {
            width: 64px;
            height: 64px;
            background-color: white;
            mix-blend-mode: difference;
            border: none;
        }
        .text-outline {
            -webkit-text-stroke: 2px #111111;
            color: transparent;
        }
        .scroll-strip {
            display: flex;
            width: calc(250px * 24);
            animation: scroll 40s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-250px * 12)); }
        }

body {
            background-color: #F7F5F2;
            cursor: none;
        }
        .custom-cursor {
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
        }
        .hover-active .custom-cursor {
            width: 64px;
            height: 64px;
            background-color: white;
            mix-blend-mode: difference;
        }
        .card-perspective {
            perspective: 1000px;
        }
        .card-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        .card-perspective:hover .card-inner {
            transform: rotateY(180deg);
        }
        .card-front, .card-back {
            backface-visibility: hidden;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .card-back {
            transform: rotateY(180deg);
        }
        .tilt-card {
            transition: transform 0.2s ease-out;
        }
        .bolt-accent::after {
            content: 'bolt';
            font-family: 'Material Symbols Outlined';
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: #CCFF00;
            font-size: 24px;
        }

body {
            cursor: none;
            background-color: #F7F5F2;
        }
        .custom-cursor {
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
        }
        .interactive:hover ~ .custom-cursor,
        button:hover ~ .custom-cursor,
        a:hover ~ .custom-cursor {
            width: 64px;
            height: 64px;
            background-color: white;
            mix-blend-mode: difference;
        }
        .text-gradient {
            background: linear-gradient(90deg, #6750A4, #CCFF00, #6750A4);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 4s linear infinite;
        }
        @keyframes shine {
            to { background-position: 200% center; }
        }
        .pulsing-dot {
            box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(204, 255, 0, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
        }

body {
            cursor: none;
            background-color: #F7F5F2;
        }
        .custom-cursor {
            position: fixed;
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
            transform: translate(-50%, -50%);
        }
        .interactive-hover:hover ~ .custom-cursor,
        a:hover ~ .custom-cursor,
        button:hover ~ .custom-cursor {
            width: 64px;
            height: 64px;
            mix-blend-mode: difference;
            background-color: #CCFF00;
            border: none;
        }
        details > summary::-webkit-details-marker {
            display: none;
        }
        details[open] summary .icon-plus {
            transform: rotate(45deg);
        }
        .faq-gradient-text {
            background: linear-gradient(90deg, #6750A4 0%, #CCFF00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

@keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .animate-spin-slow {
            animation: spin-slow 12s linear infinite;
        }

body {
            background-color: #F7F5F2;
            cursor: none;
        }
        .custom-cursor {
            width: 24px;
            height: 24px;
            border: 2px solid #6750A4;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
            transform: translate(-50%, -50%);
        }
        .interactive-hover:hover ~ .custom-cursor {
            width: 64px;
            height: 64px;
            background-color: white;
            mix-blend-mode: difference;
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }
        .neon-border {
            box-shadow: 4px 4px 0px 0px rgba(17,17,17,1);
        }

body:has(.template-demo-banner) {
    --demo-banner-height: 44px;
}

.template-demo-banner {
    position: sticky;
    top: 0;
    z-index: 9999;
    min-height: var(--demo-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: #111111;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: Inter, Manrope, "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: center;
}

.template-demo-banner a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

body:has(.template-demo-banner) > .fixed.top-0,
body:has(.template-demo-banner) > .sticky.top-0,
body:has(.template-demo-banner) > header.fixed.top-0,
body:has(.template-demo-banner) > header.sticky.top-0,
body:has(.template-demo-banner) > nav.fixed.top-0,
body:has(.template-demo-banner) > nav.sticky.top-0 {
    top: var(--demo-banner-height) !important;
}

@media (max-width: 640px) {
    body:has(.template-demo-banner) {
        --demo-banner-height: 58px;
    }

    .template-demo-banner {
        flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
        font-size: 12px;
    }
}
