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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* NEW: Header Navigation */
        .header-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid rgba(255, 0, 255, 0.3);
            padding: 15px 40px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo-nav {
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(90deg, #ff00ff, #00ff00, #00ffff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 3px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00ffff;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-login {
            padding: 10px 20px;
            background: transparent;
            border: 2px solid #00ffff;
            color: #00ffff;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-weight: 600;
        }

        .btn-login:hover {
            background: #00ffff;
            color: #000;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
            transform: scale(1.05);
        }

        .btn-pro {
            padding: 10px 25px;
            background: linear-gradient(135deg, #ff00ff, #ffff00);
            border: none;
            color: white;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
            animation: glow-pro 2s ease infinite;
        }

        @keyframes glow-pro {
            0%, 100% { box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3); }
            50% { box-shadow: 0 5px 30px rgba(255, 0, 255, 0.6); }
        }

        .btn-pro:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 255, 0.7);
        }

        /* Animated background */
        .background {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: linear-gradient(45deg, #000000, #1a0033, #000033, #003300, #330000);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .particles {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1; /* Derrière tout le contenu */
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            from {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            to {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        .container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            padding-top: 80px; /* Space for fixed nav */
        }

        /* Header */
        .header {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }

        .logo {
            font-size: 80px;
            font-weight: 900;
            letter-spacing: 15px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ff00ff, #00ff00, #00ffff, #ff00ff);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: shine 3s linear infinite;
            text-shadow: 0 0 80px rgba(255, 0, 255, 0.5);
            margin-bottom: 10px;
        }

        @keyframes shine {
            to { background-position: 200% center; }
        }

        .subtitle {
            font-size: 18px;
            letter-spacing: 8px;
            color: #888;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .tagline {
            font-size: 14px;
            color: #666;
            margin-top: 20px;
            letter-spacing: 2px;
        }

        /* NEW: PRO Marketing Section */
        /* ENHANCED HERO SECTION */
        .pro-section {
            background: 
                linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(255, 255, 0, 0.15)),
                radial-gradient(ellipse at top left, rgba(0, 255, 255, 0.1), transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(255, 0, 128, 0.1), transparent 50%);
            border-radius: 30px;
            padding: 60px 40px;
            margin: 60px auto;
            max-width: 1100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(255, 0, 255, 0.3),
                0 0 100px rgba(0, 255, 255, 0.2),
                inset 0 0 100px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            animation: hero-glow 4s ease-in-out infinite;
        }

        @keyframes hero-glow {
            0%, 100% {
                box-shadow: 
                    0 20px 60px rgba(255, 0, 255, 0.3),
                    0 0 100px rgba(0, 255, 255, 0.2),
                    inset 0 0 100px rgba(255, 255, 255, 0.05);
            }
            50% {
                box-shadow: 
                    0 25px 80px rgba(255, 0, 255, 0.5),
                    0 0 150px rgba(0, 255, 255, 0.4),
                    inset 0 0 120px rgba(255, 255, 255, 0.08);
            }
        }

        .pro-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            animation: shine-pro 4s infinite;
            pointer-events: none;
        }

        .pro-section::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 3px;
            background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0.6;
            animation: border-rotate 8s linear infinite;
            pointer-events: none;
        }

        @keyframes border-rotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes shine-pro {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .pro-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #ffff00, #ff00ff);
            color: #fff;
            font-weight: 900;
            border-radius: 25px;
            font-size: 13px;
            text-transform: uppercase;
            margin-bottom: 25px;
            animation: badge-pulse 2s ease-in-out infinite;
            box-shadow: 0 5px 20px rgba(255, 255, 0, 0.5);
            position: relative;
            z-index: 1;
            letter-spacing: 1.5px;
        }

        @keyframes badge-pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 5px 20px rgba(255, 255, 0, 0.5);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(255, 255, 0, 0.7);
            }
        }

        .pro-title {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: gradient-flow 3s ease infinite;
            text-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
            position: relative;
            z-index: 1;
            letter-spacing: -1px;
        }

        @keyframes gradient-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .pro-price {
            font-size: 72px;
            font-weight: 900;
            background: linear-gradient(135deg, #00ffff, #00ff88);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
            position: relative;
            z-index: 1;
            animation: price-glow 2s ease-in-out infinite;
        }

        @keyframes price-glow {
            0%, 100% { 
                filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
            }
            50% { 
                filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.8));
            }
        }

        .pro-price span {
            font-size: 28px;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-description {
            margin-bottom: 40px;
            font-size: 20px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description strong {
            background: linear-gradient(135deg, #00ffff, #00ff88);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 900;
            font-size: 22px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .pro-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;
            position: relative;
            z-index: 1;
        }

        .pro-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 10px;
        }

        .pro-feature:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }

        .pro-feature::before {
            content: '✓';
            display: flex;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #00ff88, #00ffff);
            color: #000;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5);
            flex-shrink: 0;
        }

        .btn-subscribe {
            padding: 22px 70px;
            background: linear-gradient(135deg, #ff00ff, #ffff00, #00ffff);
            background-size: 200% 200%;
            border: none;
            border-radius: 50px;
            color: #000;
            font-size: 22px;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 
                0 10px 40px rgba(255, 0, 255, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
            pointer-events: auto; /* S'assurer que le bouton est cliquable */
            position: relative;
            z-index: 10; /* Au-dessus des autres éléments */
            animation: btn-gradient 3s ease infinite;
            overflow: hidden;
        }

        .btn-subscribe::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
            pointer-events: none; /* Ne pas bloquer les clics */
            z-index: -1;
        }

        .btn-subscribe:hover::before {
            left: 100%;
        }

        @keyframes btn-gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .btn-subscribe:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 20px 60px rgba(255, 0, 255, 0.7),
                inset 0 0 30px rgba(255, 255, 255, 0.3);
        }

        .btn-subscribe:active {
            transform: translateY(-2px) scale(1.02);
        }

        .hero-disclaimer {
            margin-top: 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        /* 🎸 APPS CATALOG SECTION */
        .apps-catalog-section {
            padding: 120px 20px 60px;
            background: 
                linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.95) 100%),
                radial-gradient(ellipse at 30% 40%, rgba(0, 255, 255, 0.03), transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 0, 255, 0.03), transparent 60%);
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .apps-catalog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
        }

        .apps-catalog-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 255, 0.02) 2px,
                rgba(0, 255, 255, 0.02) 4px
            );
            pointer-events: none;
            opacity: 0.3;
        }

        .apps-catalog-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .apps-catalog-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .apps-catalog-section .section-badge {
            display: inline-block;
            padding: 10px 20px;
            border: 2px solid rgba(0, 255, 255, 0.5);
            border-radius: 25px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #00ffff;
            margin-bottom: 25px;
            background: rgba(0, 255, 255, 0.05);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        }

        .apps-catalog-section .section-title {
            font-size: 48px;
            margin: 0 0 20px 0;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .apps-catalog-section .section-description {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .filter-tabs {
            display: inline-flex;
            gap: 15px;
            background: transparent;
            padding: 10px;
            border-radius: 50px;
            border: 2px solid rgba(0, 255, 255, 0.2);
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-tab {
            padding: 12px 24px;
            background: transparent;
            border: 2px solid transparent;
            border-radius: 25px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-tab:hover {
            background: rgba(0, 255, 255, 0.1);
            color: white;
        }

        .filter-tab.active {
            background: linear-gradient(135deg, #00ffff, #ff00ff);
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
        }

        .filter-tab span {
            font-size: 18px;
        }

        /* Tools Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }

        .tool-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            display: block;
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
            pointer-events: none;
        }

        .tool-card:hover::before {
            opacity: 0.3;
        }

        .tool-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            border-color: #ff00ff;
            box-shadow: 
                0 20px 40px rgba(255, 0, 255, 0.3),
                inset 0 0 60px rgba(255, 0, 255, 0.1);
        }

        /* Assurer que le contenu texte est au-dessus de l'overlay */
        .tool-card > * {
            position: relative;
            z-index: 1;
        }

        .tool-icon {
            font-size: 60px;
            margin-bottom: 20px;
            display: block;
        }

        .tool-icon svg {
            width: 60px;
            height: 60px;
        }

        .tool-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .tool-card:hover .tool-title {
            text-shadow: 0 2px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .tool-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin-bottom: 15px;
            font-size: 14px;
            position: relative;
            z-index: 2;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
        }

        .tool-card:hover .tool-description {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 8px rgba(0, 0, 0, 1), 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .tool-features {
            list-style: none;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .tool-features li {
            padding: 5px 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            padding-left: 20px;
            position: relative;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
        }

        .tool-card:hover .tool-features li {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 1px 8px rgba(0, 0, 0, 1), 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .tool-features li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #00ff00;
        }

        .launch-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, #00ffff, #ff00ff);
            border-radius: 25px;
            color: #fff;
            font-weight: 700;
            transition: all 0.3s;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .launch-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
        }

        /* New badge - NO EMOJIS */
        .new-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff0000;
            color: #fff;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            animation: pulse 1s infinite;
        }

        .new-badge.pulse {
            animation: pulse-fire 1s infinite;
            background: linear-gradient(45deg, #ff0000, #ff6600);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes pulse-fire {
            0% { 
                transform: scale(1) rotate(0deg);
                box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
            }
            50% { 
                transform: scale(1.2) rotate(5deg);
                box-shadow: 0 0 40px rgba(255, 0, 0, 1);
            }
            100% { 
                transform: scale(1) rotate(0deg);
                box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
            }
        }

        /* Epic card effects - ENHANCED */
        .tool-card.epic-card {
            position: relative;
            overflow: visible;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.05), 
                rgba(255, 0, 255, 0.05));
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .tool-card.epic-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                #ff00ff, #00ff00, #00ffff, #ffff00, 
                #ff00ff, #00ff00, #00ffff, #ffff00);
            background-size: 400% 400%;
            border-radius: 20px;
            z-index: -1;
            animation: rainbow-border 10s ease infinite;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tool-card.epic-card:hover::after {
            opacity: 1;
        }

        @keyframes rainbow-border {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Lightning effect - réduit pour préserver la lisibilité */
        .tool-card.epic-card:hover {
            animation: lightning 0.5s;
        }

        @keyframes lightning {
            0%, 100% { filter: brightness(1); }
            10% { filter: brightness(1.3) contrast(1.2); }
            20% { filter: brightness(1); }
            30% { filter: brightness(1.2) contrast(1.1); }
            40% { filter: brightness(1); }
        }

        /* Pulse wave effect */
        .tool-card.epic-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, 
                rgba(255, 0, 255, 0.4) 0%, 
                transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            transition: all 0.5s;
            pointer-events: none;
            z-index: 0;
        }

        .tool-card.epic-card:hover::before {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
            animation: pulse-wave 1.5s infinite;
        }

        @keyframes pulse-wave {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Glitch effect for logo */
        @keyframes glitch {
            0%, 100% { 
                text-shadow: 
                    0 0 80px rgba(255, 0, 255, 0.5),
                    -2px 0 #00ffff,
                    2px 0 #ff00ff;
            }
            25% { 
                text-shadow: 
                    0 0 80px rgba(255, 0, 255, 0.5),
                    2px 0 #00ffff,
                    -2px 0 #ff00ff;
            }
            50% { 
                text-shadow: 
                    0 0 80px rgba(255, 0, 255, 0.5),
                    -2px 2px #00ffff,
                    2px -2px #ff00ff;
            }
        }

        .logo:hover {
            animation: glitch 0.3s infinite;
        }

        /* Neon glow for tool cards */
        .tool-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            display: block;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.02);
        }

        /* Enhanced card hover with neon glow */
        .tool-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            border-color: #ff00ff;
            box-shadow: 
                0 20px 40px rgba(255, 0, 255, 0.3),
                inset 0 0 60px rgba(255, 0, 255, 0.1),
                0 0 100px rgba(255, 0, 255, 0.2);
        }

        /* Assurer que tous les éléments de contenu sont au-dessus des overlays */
        .tool-card:hover .tool-icon,
        .tool-card:hover .tool-title,
        .tool-card:hover .tool-description,
        .tool-card:hover .tool-features,
        .tool-card:hover .launch-btn,
        .tool-card:hover .new-badge {
            position: relative;
            z-index: 2;
        }

        /* Cyber grid overlay */
        .container::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 100px 100px;
            pointer-events: none;
            z-index: 1;
            animation: grid-move 10s linear infinite;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        /* Holographic effect */
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 70%);
            transform: translateX(-100%);
            transition: all 0.6s;
            pointer-events: none;
            z-index: 0;
        }

        .tool-card:hover::before {
            transform: translateX(100%);
            transition: all 0.6s;
        }

        /* Floating animation for epic cards */
        .tool-card.epic-card {
            animation: float-card 4s ease-in-out infinite;
        }

        @keyframes float-card {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* PRO badge for locked tools */
        .pro-tool-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(45deg, #ff00ff, #ffff00);
            color: #fff;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Locked Card */
        .tool-card.locked {
            position: relative;
        }

        .tool-card.locked::after {
            content: '🔒';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            z-index: 10;
        }

        .tool-card.locked .tool-content {
            filter: blur(2px);
            opacity: 0.5;
        }

        /* Matrix background - ENHANCED LIKE ORIGINAL */
        .matrix-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.1;
            pointer-events: none;
            overflow: hidden;
            top: 0;
            left: 0;
        }

        .matrix-column {
            position: absolute;
            top: -100%;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #00ff00;
            text-shadow: 0 0 5px #00ff00;
            animation: matrix-fall linear infinite;
            writing-mode: vertical-rl;
            text-orientation: upright;
            line-height: 1.2;
        }

        @keyframes matrix-fall {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        /* Footer - FULL WIDTH PERFECTLY CENTERED */
        .footer {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: linear-gradient(to bottom, transparent 0%, rgba(10, 0, 30, 0.95) 50%, rgba(0, 0, 0, 1) 100%);
            padding: 100px 40px 40px;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
            margin-top: 120px;
            z-index: 10; /* S'assurer que le footer est au-dessus des autres éléments */
        }

        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 80px;
            margin-bottom: 80px;
            justify-items: center;
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .footer-column {
            text-align: left;
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .footer-column h3 {
            font-size: 12px;
            font-weight: 700;
            color: #00ffff;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 13px;
            pointer-events: auto; /* S'assurer que les liens sont cliquables */
            cursor: pointer;
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .footer-column ul li a:hover {
            color: #00ffff;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 12px;
            font-weight: 600;
            pointer-events: auto; /* S'assurer que les icônes sociales sont cliquables */
            cursor: pointer;
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .social-icon:hover {
            border-color: #00ffff;
            color: #00ffff;
            background: rgba(0, 255, 255, 0.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .footer-logo-section {
            margin-bottom: 20px;
        }

        .footer-text {
            font-size: 14px;
            font-weight: 700;
            color: #00ffff;
            letter-spacing: 3px;
        }

        .footer-text::first-letter {
            color: #ff00ff;
        }

        .version {
            color: rgba(255, 255, 255, 0.3);
            font-size: 11px;
            margin-top: 5px;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin-top: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 11px;
            transition: color 0.3s;
            pointer-events: auto; /* S'assurer que les liens sont cliquables */
            cursor: pointer;
            position: relative;
            z-index: 11; /* Au-dessus du footer */
        }

        .footer-links a:hover {
            color: #00ffff;
        }

        .footer-stats {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 15px;
            text-align: center;
            font-family: 'Courier New', monospace;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-stats div {
            margin-bottom: 2px;
        }

        .footer-stats span {
            color: #00ff00;
            font-weight: bold;
        }

        /* Stats Counter (positionné en bas de page) */
        .stats-counter {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 10px;
            padding: 15px 20px;
            display: flex;
            gap: 20px;
            z-index: 5; /* En dessous du footer (z-index: 10) */
            pointer-events: auto;
        }

        .stats-counter .stat-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
        }

        .stats-counter .stat-item span {
            color: #00ff00;
            font-weight: bold;
            font-size: 14px;
        }

        /* SEO Section Wrapper */
        .seo-section-wrapper {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: transparent;
            padding: 80px 20px;
        }

        /* SEO Section */
        .seo-section {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 60px 20px 40px;
            text-align: center;
            border-top: 2px solid rgba(255, 0, 255, 0.3);
            margin-top: 80px;
            position: relative;
            width: 100%;
            left: 0;
            right: 0;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 700;
            color: #00ffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .footer-column ul li a:hover {
            color: #00ffff;
            transform: translateX(5px);
            display: inline-block;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-text {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #00ffff;
        }

        .version {
            color: #666;
            font-size: 12px;
            letter-spacing: 2px;
        }

        /* SEO Section */
        .seo-section {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 60px 40px;
            margin: 80px auto;
            max-width: 1200px;
        }

        .seo-title {
            font-size: 36px;
            font-weight: 900;
            background: linear-gradient(90deg, #00ffff, #ff00ff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .seo-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .seo-block h3 {
            font-size: 22px;
            color: #00ffff;
            margin-bottom: 15px;
        }

        .seo-block p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 14px;
        }

        .seo-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
            justify-content: center;
        }

        .keyword-tag {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            transition: all 0.3s;
        }

        .keyword-tag:hover {
            background: rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
            color: white;
            transform: translateY(-2px);
        }

        /* 🎵 ULTRA SAMPLE LIBRARY SECTION */
        .samples-section-wrapper {
            width: 100%;
            background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 255, 136, 0.03) 50%, 
                rgba(0, 0, 0, 0) 100%);
            padding: 100px 20px;
            margin: 80px 0;
            position: relative;
            overflow: visible; /* Permettre les clics sur les éléments enfants */
            z-index: 50; /* Contexte de stacking pour les enfants */
        }

        .samples-section-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 255, 136, 0.5), 
                transparent);
            pointer-events: none; /* Ne pas bloquer les clics */
            z-index: 1;
        }

        .samples-hero {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 100; /* Au-dessus des autres éléments */
        }

        .samples-content {
            text-align: center;
            position: relative;
            z-index: 100; /* Au-dessus du ::before et autres éléments */
        }

        .samples-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
            border: 2px solid rgba(0, 255, 136, 0.5);
            border-radius: 30px;
            color: #00ff88;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 30px;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
            }
        }

        .samples-title {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #00ff88, #00d4ff, #ff0080);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .samples-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .samples-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .samples-stats .stat-item {
            text-align: center;
        }

        .samples-stats .stat-number {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #00ff88, #00d4ff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }

        .samples-stats .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .samples-preview {
            margin: 60px 0;
            position: relative;
            z-index: 1; /* En dessous du bouton */
            pointer-events: none !important; /* Ne pas bloquer les clics */
        }
        
        .samples-stats {
            pointer-events: none; /* Ne pas bloquer les clics */
            position: relative;
            z-index: 1;
        }
        
        .samples-stats * {
            pointer-events: none; /* Tous les enfants aussi */
        }

        .preview-window {
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid rgba(0, 255, 136, 0.3);
            border-radius: 20px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
            pointer-events: none; /* Ne pas bloquer les clics */
            position: relative;
            z-index: 1;
        }

        .preview-header {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 30, 0.9));
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        }

        .preview-dots {
            display: flex;
            gap: 8px;
        }

        .preview-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: block;
        }

        .preview-title {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        .preview-body {
            padding: 40px 30px;
        }

        .preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .preview-category {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
            border: 2px solid rgba(0, 255, 136, 0.2);
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .preview-category:hover {
            border-color: #00ff88;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 212, 255, 0.15));
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        .category-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .category-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .category-count {
            font-size: 12px;
            color: #00ff88;
            font-weight: 600;
        }

        .preview-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .feature-pill {
            padding: 10px 20px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 25px;
            color: #00ff88;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .feature-pill:hover {
            background: rgba(0, 255, 136, 0.2);
            border-color: #00ff88;
            transform: scale(1.05);
        }

        .samples-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #00ff88, #00d4ff);
            color: #000;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-top: 50px;
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
            transition: all 0.3s ease;
            text-transform: uppercase;
            pointer-events: auto !important; /* S'assurer que le lien est cliquable */
            cursor: pointer !important;
            position: relative;
            z-index: 1000 !important; /* Au-dessus de tous les autres éléments */
        }

        .samples-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 60px rgba(0, 255, 136, 0.6);
        }

        .cta-arrow {
            font-size: 24px;
            font-weight: 900;
            transition: transform 0.3s ease;
            pointer-events: none; /* Permettre les clics sur le lien parent */
        }
        
        .samples-cta span {
            pointer-events: none; /* Permettre les clics sur le lien parent */
        }

        .samples-cta:hover .cta-arrow {
            transform: translateX(5px);
        }

        /* 🎛️ CORE AUDIO TOOLS SECTION */
        .core-tools-section {
            padding: 100px 20px;
            background: 
                linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(10, 0, 20, 0.98)),
                radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 0, 128, 0.08), transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .core-tools-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 136, 0.03) 2px, rgba(0, 255, 136, 0.03) 4px);
            pointer-events: none;
            animation: scanlines 8s linear infinite;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(20px); }
        }

        .core-tools-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .section-badge {
            display: inline-block;
            padding: 10px 20px;
            border: 2px solid rgba(0, 255, 136, 0.6);
            border-radius: 25px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #00ff88;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            background: rgba(0, 255, 136, 0.05);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), inset 0 0 20px rgba(0, 255, 136, 0.1);
            animation: badge-pulse 2s ease-in-out infinite;
        }

        @keyframes badge-pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), inset 0 0 20px rgba(0, 255, 136, 0.1); }
            50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), inset 0 0 30px rgba(0, 255, 136, 0.2); }
        }

        .section-title {
            font-size: 56px;
            margin: 0 0 20px 0;
            text-align: center;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .cyber-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 30px 0 20px;
        }

        .divider-dot {
            width: 6px;
            height: 6px;
            background: #00ff88;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ff88;
            animation: dot-pulse 1.5s ease-in-out infinite;
        }

        .divider-dot:nth-child(2) { animation-delay: 0.3s; }
        .divider-dot:nth-child(4) { animation-delay: 0.6s; }

        @keyframes dot-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }

        .divider-line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff88, transparent);
        }

        .section-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        }

        .core-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .core-tool-card {
            background: linear-gradient(135deg, rgba(0, 10, 20, 0.95), rgba(20, 0, 40, 0.95));
            border: 2px solid rgba(0, 255, 136, 0.3);
            border-radius: 20px;
            padding: 40px;
            text-decoration: none;
            color: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .core-tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00ff88, #00d4ff, #ff0080);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .core-tool-card:hover .card-glow {
            opacity: 1;
            animation: glow-rotate 4s linear infinite;
        }

        @keyframes glow-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .card-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid #00ff88;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
        .card-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
        .card-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
        .card-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

        .core-tool-card:hover .card-corner {
            opacity: 1;
        }

        .status-card { border-color: rgba(0, 255, 136, 0.4); }
        .status-card:hover { border-color: rgba(0, 255, 136, 0.8); box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4); }

        .fx-card { border-color: rgba(255, 0, 128, 0.4); }
        .fx-card:hover { border-color: rgba(255, 0, 128, 0.8); box-shadow: 0 15px 50px rgba(255, 0, 128, 0.4); }

        .mixer-card { border-color: rgba(0, 212, 255, 0.4); }
        .mixer-card:hover { border-color: rgba(0, 212, 255, 0.8); box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4); }

        .core-tool-card:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .core-tool-card:hover::before {
            opacity: 1;
        }

        .core-tool-icon {
            width: 140px;
            height: 140px;
            margin: 0 auto 30px;
            filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.6));
            transition: transform 0.4s ease;
        }

        .core-tool-card:hover .core-tool-icon {
            transform: scale(1.1) rotateY(10deg);
        }

        .core-tool-icon svg {
            width: 100%;
            height: 100%;
        }

        .core-tool-title {
            font-size: 28px;
            margin: 0 0 10px 0;
            color: #fff;
            text-align: center;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .core-tool-tagline {
            font-size: 13px;
            color: #00ff88;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .core-tool-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: center;
        }

        .core-tool-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .core-tool-features li {
            padding: 12px 15px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            border-left: 3px solid rgba(0, 255, 136, 0.3);
            background: rgba(0, 255, 136, 0.05);
            margin-bottom: 8px;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }

        .core-tool-features li:hover {
            border-left-color: #00ff88;
            background: rgba(0, 255, 136, 0.1);
            transform: translateX(5px);
        }

        .feat-icon {
            margin-right: 10px;
            filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
        }

        .core-launch-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            background: linear-gradient(135deg, #00ff88, #00d4ff);
            color: #000;
            font-weight: 700;
            font-size: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
        }

        .core-launch-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .core-tool-card:hover .core-launch-btn {
            background: linear-gradient(135deg, #00d4ff, #ff0080);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
        }

        .core-tool-card:hover .core-launch-btn::before {
            left: 100%;
        }

        .btn-arrow {
            transition: transform 0.3s ease;
        }

        .core-tool-card:hover .btn-arrow {
            transform: translateX(5px);
        }

        .core-tools-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: rgba(0, 255, 136, 0.05);
            border: 2px solid rgba(0, 255, 136, 0.2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .core-tools-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            animation: cta-shine 3s ease-in-out infinite;
        }

        @keyframes cta-shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .cta-badge {
            display: inline-block;
            padding: 8px 18px;
            background: rgba(0, 212, 255, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.5);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #00d4ff;
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-text strong {
            color: #00ff88;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        .ecosystem-badges {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .eco-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid rgba(0, 255, 136, 0.4);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #00ff88;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
        }

        .eco-badge:hover {
            background: rgba(0, 255, 136, 0.2);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
        }

        .badge-icon {
            filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.8));
        }

        /* Counter animation */
        /* Rainbow background animation for Konami code */
        @keyframes rainbow-bg {
            0% { 
                background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3); 
            }
            50% { 
                background: linear-gradient(45deg, #9400d3, #4b0082, #0000ff, #00ff00, #ffff00, #ff7f00, #ff0000); 
            }
            100% { 
                background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3); 
            }
        }

        /* Loading animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 1;
            transition: opacity 0.5s;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-text {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            animation: glow 1s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px #ff00ff; }
            to { text-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff; }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .header-nav {
                padding: 10px 20px;
            }

            .nav-links {
                display: none;
            }

            .logo {
                font-size: 48px;
                letter-spacing: 8px;
            }
            
            .subtitle {
                font-size: 14px;
                letter-spacing: 4px;
            }

            .pro-features {
                grid-template-columns: 1fr;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tool-card {
                padding: 20px;
            }

            /* Apps catalog responsive */
            .apps-catalog-section {
                padding: 60px 20px 30px;
            }

            .apps-catalog-section .section-title {
                font-size: 36px;
            }

            .apps-catalog-section .section-description {
                font-size: 15px;
            }

            .filter-tabs {
                width: 100%;
                flex-direction: column;
            }

            /* Samples section responsive */
            .samples-title {
                font-size: 36px;
            }

            .samples-stats {
                gap: 30px;
            }

            .samples-stats .stat-number {
                font-size: 32px;
            }

            .preview-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .preview-category {
                padding: 20px 15px;
            }

            .category-icon {
                font-size: 28px;
            }

            .samples-cta {
                padding: 15px 30px;
                font-size: 16px;
            }

            /* Core tools responsive */
            .core-tools-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 38px;
            }

            .section-description {
                font-size: 16px;
            }

            .cyber-divider {
                gap: 8px;
            }

            .divider-line {
                width: 50px;
            }

            .core-tools-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .core-tool-card {
                padding: 35px 25px;
            }

            .core-tool-icon {
                width: 110px;
                height: 110px;
            }

            .core-tool-title {
                font-size: 24px;
            }

            .core-tool-tagline {
                font-size: 11px;
            }

            .core-tool-description {
                font-size: 14px;
            }

            .core-tools-cta {
                padding: 30px 20px;
            }

            .cta-text {
                font-size: 15px;
            }

            .ecosystem-badges {
                flex-direction: column;
                align-items: center;
            }

            .eco-badge {
                width: 100%;
                max-width: 300px;
            }
        }
