        /* --- CSS VARIABLES --- */
        :root {
            /* Colors */
            --hue-primary: 221;
            --primary: hsl(var(--hue-primary), 83%, 53%); /* #3b82f6 */
            --primary-hover: hsl(var(--hue-primary), 83%, 43%);
            --secondary: hsl(262, 83%, 58%); /* #8b5cf6 */
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
            
            /* Light Theme */
            --bg-body: #f8fafc;
            --bg-surface: #ffffff;
            --bg-surface-hover: #f1f5f9;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: rgba(0, 0, 0, 0.08);
            --card-shadow: 0 20px 40px rgba(0,0,0,0.04);
            
            /* Glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.4);
            
            /* Typography */
            --font-body: 'Inter', sans-serif;
            --font-heading: 'Outfit', sans-serif;
            
            /* Utils */
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --radius-md: 12px;
            --radius-lg: 24px;
        }

        /* --- DARK THEME OVERRIDES --- */
        [data-bs-theme="dark"] {
            /* Advanced Dark Colors */
            --bg-body: #05050a;
            --bg-surface: #0f111a;
            --bg-surface-hover: #1a1d2e;
            --text-main: #f8fafc;
            --text-muted: #a1a1aa;
            --border-color: rgba(255, 255, 255, 0.08);
            --card-shadow: 0 20px 40px rgba(0,0,0,0.6);
            --glass-bg: rgba(15, 17, 26, 0.75);
            --glass-border: rgba(255, 255, 255, 0.08);
            
            /* Bootstrap Variable Mappings for Compatibility */
            --bs-body-bg: var(--bg-body);
            --bs-body-color: var(--text-main);
            --bs-secondary-color: var(--text-muted);
            --bs-heading-color: var(--text-main);
            --bs-border-color: var(--border-color);
            --bs-tertiary-bg: var(--bg-surface);
        }

        [data-bs-theme="dark"] body {
            background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%), radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }

        /* --- RESET & BASE --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none; /* Custom Cursor */
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        ::selection {
            background-color: var(--primary);
            color: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-hover);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            position: relative;
            display: inline-block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- CUSTOM CURSOR --- */
        .cursor-dot, .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 9999;
            pointer-events: none;
        }
        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary);
        }
        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
        }
        .cursor-outline.hover {
            width: 60px;
            height: 60px;
            background-color: rgba(59, 130, 246, 0.1);
        }

        /* --- PRELOADER --- */
        #preloader {
            position: fixed;
            inset: 0;
            background: var(--bg-body);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }
        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid var(--bg-surface);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* --- BACKGROUND BLOBS --- */
        .bg-blobs {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .blob {
            position: absolute;
            filter: blur(80px);
            opacity: 0.4;
            border-radius: 50%;
            animation: float 10s ease-in-out infinite alternate;
        }
        .blob-1 {
            background: var(--primary);
            width: 400px;
            height: 400px;
            top: -10%;
            left: -10%;
        }
        .blob-2 {
            background: var(--secondary);
            width: 500px;
            height: 500px;
            bottom: -20%;
            right: -10%;
            animation-delay: -5s;
        }

        /* --- NAVBAR (GLASSMORPHISM) --- */
        .navbar {
            background: transparent;
            transition: var(--transition);
            padding: 20px 0;
        }
        .navbar.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--glass-border);
            padding: 10px 0;
            box-shadow: var(--card-shadow);
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--text-main) !important;
            letter-spacing: -0.5px;
        }
        .nav-link {
            color: var(--text-muted) !important;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link.active::after, .nav-link:hover::after {
            width: 100%;
        }
        .theme-toggle {
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 1.2rem;
            cursor: pointer !important;
            margin-left: 15px;
        }

        /* --- BUTTONS --- */
        .btn-custom {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
            border: none;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
            color: white;
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-main);
            border: 2px solid var(--border-color);
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .hero-subtitle {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }
        .hero-title {
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .typing-text {
            color: var(--secondary);
            border-right: 3px solid var(--secondary);
            animation: blink 0.7s infinite;
        }
        .hero-desc {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 40px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        .social-icons a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .hero-image-wrapper {
            position: relative;
            z-index: 1;
        }
        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 2px solid var(--primary);
            border-radius: var(--radius-lg);
            z-index: -1;
            transform: translate(20px, 20px);
            transition: var(--transition);
        }
        .hero-image-wrapper:hover::before {
            transform: translate(10px, 10px);
        }
        .hero-image {
            border-radius: var(--radius-lg);
            box-shadow: var(--card-shadow);
            max-height: 450px;
            width: 100%;
            object-fit: cover;
            object-position: center top;
        }
        .experience-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--glass-border);
            box-shadow: var(--card-shadow);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: bounceY 3s infinite ease-in-out;
        }
        .experience-badge h3 {
            font-size: 2.5rem;
            margin: 0;
            color: var(--primary);
        }
        .experience-badge p {
            margin: 0;
            font-weight: 600;
            line-height: 1.2;
        }

        /* --- ABOUT & SKILLS --- */
        .about-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 30px;
            height: 100%;
            transition: var(--transition);
        }
        .about-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--card-shadow);
        }
        .skill-item {
            margin-bottom: 20px;
        }
        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .progress {
            height: 8px;
            background-color: var(--border-color);
            border-radius: 10px;
            overflow: visible;
        }
        .progress-bar {
            background: var(--gradient-primary);
            border-radius: 10px;
            position: relative;
            width: 0; /* Animated via JS */
            transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .progress-bar::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
        }

        /* --- SERVICES --- */
        .service-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-primary);
            transition: var(--transition);
            z-index: -1;
            opacity: 0.05;
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--card-shadow);
        }
        .service-card:hover::before {
            height: 100%;
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        .service-card:hover .service-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        .service-features {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        .service-features li {
            margin-bottom: 10px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .service-features li i {
            color: var(--primary);
        }

        /* --- PORTFOLIO --- */
        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        .filter-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-main);
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            text-transform: capitalize;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }
        .portfolio-item {
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }
        .portfolio-card {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-color);
            position: relative;
            group: hover;
        }
        .portfolio-img {
            position: relative;
            overflow: hidden;
        }
        .portfolio-img img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .portfolio-card:hover .portfolio-img img {
            transform: scale(1.1);
        }
        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transition: var(--transition);
        }
        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }
        .portfolio-overlay a, .portfolio-overlay button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transform: translateY(20px);
            transition: all 0.3s ease;
            border: none;
        }
        .portfolio-card:hover .portfolio-overlay a, 
        .portfolio-card:hover .portfolio-overlay button {
            transform: translateY(0);
        }
        .portfolio-overlay a:hover, .portfolio-overlay button:hover {
            background: var(--primary);
            color: white;
        }
        .portfolio-info {
            padding: 25px;
        }
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        .tech-badge {
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* --- EXPERIENCE TIMELINE --- */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            height: 100%;
            width: 2px;
            background: var(--border-color);
        }
        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 40px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: 11px;
            top: 5px;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border: 4px solid var(--bg-body);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
        }
        .timeline-content {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: var(--radius-md);
            transition: var(--transition);
        }
        .timeline-content:hover {
            border-color: var(--primary);
            transform: translateX(5px);
            box-shadow: var(--card-shadow);
        }
        .timeline-date {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            display: inline-block;
        }

        /* --- TESTIMONIALS --- */
        .testimonial-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 30px;
            text-align: left;
            transition: var(--transition);
            position: relative;
        }
        .testimonial-card:hover {
            border-color: var(--primary);
            box-shadow: var(--card-shadow);
        }
        .testimonial-img-small {
            border: 2px solid rgba(59, 130, 246, 0.2);
        }

        /* --- PRICING --- */
        .pricing-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--card-shadow);
        }
        .pricing-card.featured {
            background: var(--bg-surface-hover);
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: var(--card-shadow);
        }
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        .featured-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-primary);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin: 20px 0;
            font-family: var(--font-heading);
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
            text-align: left;
        }
        .pricing-features li {
            margin-bottom: 15px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pricing-features li i {
            color: #10b981;
            font-size: 1.2rem;
        }

        /* --- FAQ --- */
        .accordion-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md) !important;
            margin-bottom: 15px;
            overflow: hidden;
        }
        .accordion-button {
            background: transparent !important;
            color: var(--text-main) !important;
            font-weight: 600;
            padding: 20px 25px;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            color: var(--primary) !important;
            border-bottom: 1px solid var(--border-color);
        }
        .accordion-button::after {
            filter: var(--bs-accordion-btn-icon-filter);
        }
        [data-bs-theme="dark"] .accordion-button::after {
            filter: invert(1);
        }
        [data-bs-theme="dark"] .accordion-button:not(.collapsed)::after {
            filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg);
        }
        .accordion-body {
            color: var(--text-muted);
            padding: 20px 25px;
        }

        /* --- BLOG --- */
        .blog-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--card-shadow);
        }
        .blog-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-img {
            transform: scale(1.05);
        }
        .blog-content {
            padding: 25px;
        }
        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .blog-title {
            font-size: 1.25rem;
            margin-bottom: 15px;
        }
        .blog-title a {
            color: var(--text-main);
        }
        .blog-title a:hover {
            color: var(--primary);
        }

        /* --- CONTACT --- */
        .contact-info-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 30px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .contact-info-card:hover {
            border-color: var(--primary);
            transform: translateX(5px);
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .form-control, .form-select {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            padding: 15px 20px;
            border-radius: var(--radius-md);
            transition: var(--transition);
        }
        .form-control:focus, .form-select:focus {
            background: var(--bg-surface);
            border-color: var(--primary);
            color: var(--text-main);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }
        .form-control::placeholder {
            color: var(--text-muted);
        }

        /* --- FOOTER --- */
        .footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            padding: 80px 0 30px;
        }
        .footer-widget h4 {
            margin-bottom: 25px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-muted);
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
            color: var(--text-muted);
        }

        /* --- UTILS & ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: none;
            cursor: pointer !important;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary-hover);
            transform: translateY(-5px);
            color: white;
        }
        @keyframes float {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-20px) scale(1.05); }
        }
        @keyframes bounceY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        @keyframes blink {
            50% { border-color: transparent; }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--bg-surface);
                padding: 20px;
                border-radius: var(--radius-md);
                border: 1px solid var(--border-color);
                margin-top: 15px;
                box-shadow: var(--card-shadow);
            }
            .hero { text-align: center; }
            .social-icons { justify-content: center; }
            .hero-image-wrapper { margin-top: 50px; }
            .experience-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }
            .timeline::before { left: 0; }
            .timeline-item { padding-left: 30px; }
            .timeline-dot { left: -9px; }
        }
        @media (max-width: 768px) {
            .cursor-dot, .cursor-outline { display: none; }
            * { cursor: auto; }
        }
