:root {
            --bg-color: #0d0d12;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.08);
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --accent-1: #6366f1;
            /* Indigo */
            --accent-2: #a855f7;
            /* Purple */
            --accent-3: #ec4899;
            /* Pink */
            --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));

            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Archivo', sans-serif;

            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Ambient Background Blobs for a stunning modern look */
        .blob-bg {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            top: -200px;
            left: -200px;
            border-radius: 50%;
            z-index: -1;
            filter: blur(60px);
            animation: float 10s ease-in-out infinite;
        }

        .blob-bg-2 {
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
            top: 40%;
            right: -200px;
            left: auto;
            animation: float 12s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        /* Glassmorphism Utilities */
        .glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        }

        /* Typography elements */
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
        }

        .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Navigation Menu */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(13, 13, 18, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--card-border);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo i {
            font-size: 1.8rem;
            color: var(--accent-1);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: var(--gradient);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 40px 60px;
            gap: 60px;
        }

        .hero-content {
            flex: 1;
        }

        .badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(99, 102, 241, 0.1);
            color: var(--accent-1);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-family: var(--font-heading);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .btn-secondary {
            background: var(--card-bg);
            color: var(--text-primary);
            border: 1px solid var(--card-border);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .hero-visual {
            flex: 1;
            position: relative;
            height: 500px;
        }

        .visual-card {
            position: absolute;
            top: 15%;
            right: 10%;
            width: 320px;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            border-radius: 20px;
            animation: slideUp 1s ease-out forwards;
        }

        .visual-card-2 {
            top: 50%;
            right: 30%;
            animation: slideUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .visual-icon {
            font-size: 2.5rem;
            color: var(--accent-2);
            background: rgba(168, 85, 247, 0.1);
            padding: 12px;
            border-radius: 16px;
        }

        .visual-card-2 .visual-icon {
            color: var(--accent-3);
            background: rgba(236, 72, 153, 0.1);
        }

        .visual-text h3 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .visual-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Features Grid */
        .features-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .feature-card {
            padding: 40px 30px;
            text-decoration: none;
            color: var(--text-primary);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card>* {
            position: relative;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .card-icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-1);
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .feature-card:hover .card-icon-wrapper {
            background: var(--gradient);
            color: white;
        }

        

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--text-secondary);
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .card-action {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--accent-1);
        }

        .feature-card:hover .card-action {
            color: var(--accent-2);
        }

        .feature-card i {
            transition: transform 0.3s ease;
        }

        .feature-card:hover .card-action i {
            transform: translateX(5px);
        }

        .highlight-card {
            border: 1px solid rgba(168, 85, 247, 0.3);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(168, 85, 247, 0.05) 100%);
        }

        .card-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: rgba(168, 85, 247, 0.2);
            color: #d8b4fe;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        .glass-footer {
            border-top: 1px solid var(--card-border);
            margin-top: 80px;
            padding: 40px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--text-secondary);
        }

        .footer-logo i {
            font-size: 1.5rem;
        }

        .glass-footer p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 140px;
            }

            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero-visual {
                width: 100%;
                height: 400px;
                display: flex;
                justify-content: center;
            }



            .visual-card-2 {
                right: auto;
                left: 50%;
                top: 50%;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* Models Grid Additions */
        .models-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .horizontal-scroll-grid {
            display: flex;
            overflow-x: auto;
            flex-wrap: nowrap;
            gap: 30px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .horizontal-scroll-grid::-webkit-scrollbar {
            display: none;
        }

        .horizontal-scroll-grid .model-card {
            flex: 0 0 320px;
        }

        .horizontal-scroll-grid.is-dragging {
            cursor: grabbing;
        }

        .model-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: var(--transition);
        }

        .model-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .model-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 1px solid var(--card-border);
        }


        .model-image-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--background);
            border-bottom: 1px solid var(--card-border);
            border-radius: 12px 12px 0 0;
        }

        .model-image-blur {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(15px) brightness(0.6);
            transform: scale(1.1);
            z-index: 1;
        }

        .model-image-front {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.5));
            z-index: 2;
        }

        /* Horizontal layouts for extensions */
        .ext-horizontal-card {
            flex-direction: row;
            align-items: stretch;
        }

        .ext-image-wrapper {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.03);
            border-right: 1px solid var(--card-border);
            padding: 20px;
        }

        .ext-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .model-info {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .model-info h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            text-align: center;
        }

        .model-info p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 0.95rem;
            flex: 1;
        }

        .model-btn {
            align-self: center;
            margin-top: auto;
            font-size: 0.9rem;
            padding: 10px 20px;
        }

        /* Keep extension buttons left-aligned if desired, though centered might look good too.
           We will explicitly keep them left-aligned as they were originally */
        .ext-horizontal-card .model-btn {
            align-self: flex-start;
        }

        .ext-horizontal-card .model-info h3,
        .ext-horizontal-card .model-info p {
            text-align: left;
        }

        /* Pixel Art Modal Base */
        .pixel-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pixel-modal.show {
            display: flex;
            opacity: 1;
        }

        .pixel-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pixel-modal-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
            object-fit: contain;
            /* Optional: pixelated rendering for crisp pixel art edges */
            image-rendering: pixelated;
        }

        .pixel-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
        }

        .pixel-modal-close:hover {
            color: var(--accent-1);
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .slider-nav-btn:hover {
            background: var(--gradient);
            border-color: transparent;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev {
            left: 0px;
        }

        .slider-next {
            right: 0px;
        }

        /* Provide padding so the cards don't hit the absolute buttons directly underneath them */
        .slider-wrapper .horizontal-scroll-grid {
            padding: 0 60px;
        }