        :root {
            --deep-base: #57564F;
            --cool-accent: #415E72;
            --neon: #0ABAB5;
            --soft-contrast: #FCECDD;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--deep-base);
            color: var(--soft-contrast);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .logo, .nav-link, .underdog {
            font-family: 'Underdog', cursive;
        }

        /* Floating Header */
        #floating-header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            background: rgba(87, 86, 79, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(10, 186, 181, 0.2);
            border-radius: 50px;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        #floating-header.shrunk {
            width: 70%;
            top: 10px;
            padding: 8px 20px;
            background: rgba(87, 86, 79, 0.7);
        }
        #floating-header:hover {
            border-color: var(--neon);
            box-shadow: 0 0 20px rgba(10, 186, 181, 0.3);
        }

        /* Hero Grid Pattern */
        .hero-pattern {
            background-image: radial-gradient(var(--cool-accent) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: gridMove 60s linear infinite;
        }
        @keyframes gridMove {
            from { background-position: 0 0; }
            to { background-position: 500px 500px; }
        }

        /* Parallax Cards */
        .parallax-card {
            transition: transform 0.1s ease-out;
            transform-style: preserve-3d;
        }

        /* Zig Zag Animations */
        .reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
        .reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
        .reveal-visible { opacity: 1; transform: translateX(0); }

        /* Tools Grid */
        .tool-card {
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .tool-card:hover {
            background-color: var(--neon);
            color: var(--deep-base);
            transform: translateY(-10px) rotateX(5deg);
        }

        /* Horizontal Scroll Projects */
        .horizontal-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 2rem;
            scrollbar-width: none;
        }
        .horizontal-container::-webkit-scrollbar { display: none; }
        .project-card {
            flex: 0 0 400px;
            scroll-snap-align: center;
            transition: all 0.4s ease;
        }
        .project-card:hover {
            box-shadow: 0 0 30px var(--neon);
            transform: scale(1.02);
        }

        /* Pricing Floating */
        .price-card:nth-child(1) { transform: translateY(20px); }
        .price-card:nth-child(2) { transform: translateY(-20px); border: 2px solid var(--neon); }
        .price-card:nth-child(3) { transform: translateY(40px); }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--deep-base); }
        ::-webkit-scrollbar-thumb { background: var(--cool-accent); border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--neon); }

        /* Code Editor Mockup */
        .code-window {
            background: #1e1e1e;
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            font-family: 'Courier New', Courier, monospace;
        }
        .code-cursor {
            display: inline-block;
            width: 8px;
            height: 15px;
            background: var(--neon);
            animation: blink 1s infinite;
        }
        @keyframes blink { 50% { opacity: 0; } }

        .btn-neon {
            background-color: var(--neon);
            color: var(--deep-base);
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 0 rgba(10, 186, 181, 0);
        }
        .btn-neon:hover {
            box-shadow: 0 0 20px rgba(10, 186, 181, 0.6);
            transform: translateY(-2px);
        }
        
        /* Modal Content */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
            z-index: 5000;
            padding: 40px;
            overflow-y: auto;
        }
.modal-anim {
    animation: scaleIn 0.25s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
