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

        :root {
            --primary: #00ff88;
            --secondary: #00d4ff;
            --dark: #0a0e27;
            --darker: #050810;
            --text: #e0e0e0;
            --text-dim: #8892b0;
        }

        body {
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
            background: var(--darker);
            color: var(--text);
            overflow-x: hidden;
        }

        .grid-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            pointer-events: none;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        }
        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '0' counter(item) '.';
            counter-increment: item;
            color: var(--primary);
            margin-right: 5px;
            font-size: 12px;

        }

        .nav-links a:hover {
            color: var(--primary);

        }
        
        .nav-links {
            list-style: none;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo::before {
            content: '>';
            color: var(--secondary);
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        .veille-section {
            position: relative;
            padding: 150px 80px 100px;
            z-index: 1;
        }

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

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            gap: 20px;
            list-style: none;
        }

        .section-number {
            color: var(--primary);
            font-size: 20px;
            font-weight: bold;
        }

        .section-title {
            color: var(--text);
            font-size: 32px;
            white-space: nowrap;
            list-style: none;
        }

        .section-line-horizontal {
            height: 1px;
            background: rgba(0, 255, 136, 0.3);
            flex-grow: 1;
        }

        .veille-intro {
            color: var(--text-dim);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 60px;
            max-width: 800px;
        }

        /* Filters */
        .filters {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            color: var(--text-dim);
            font-family: 'Consolas', monospace;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .filter-btn.active {
            background: rgba(0, 255, 136, 0.1);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Articles Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .article-card {
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 35px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

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

        .article-card {
            transform: translateY(20px);
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--secondary));
            transition: left 0.5s ease;
        }

        .article-card:hover::before {
            left: 100%;
        }

        .article-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
        }

        .article-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 15px;
        }

        .article-category {
            padding: 5px 12px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-date {
            color: var(--text-dim);
            font-size: 12px;
        }

        .article-title {
            color: var(--text);
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .article-card:hover .article-title {
            color: var(--primary);
        }

        .article-description {
            color: var(--text-dim);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag {
            padding: 4px 10px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: var(--secondary);
            font-size: 10px;
            text-transform: uppercase;
        }

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

        .article-source {
            color: var(--text-dim);
            font-size: 12px;
        }

        .article-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .article-link:hover {
            transform: translateX(5px);
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .article-link:hover .arrow {
            transform: translateX(3px);
        }

        /* Stats Section */
        .veille-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .stat-box {
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 36px;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-dim);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Sources Section */
        .sources-section {
            background: rgba(10, 14, 39, 0.4);
            border: 1px solid rgba(0, 255, 136, 0.2);
            padding: 40px;
            margin-bottom: 60px;
        }

        .sources-title {
            color: var(--text);
            font-size: 22px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .source-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(10, 14, 39, 0.6);
            border: 1px solid rgba(0, 255, 136, 0.15);
            color: var(--text-dim);
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .source-item:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateX(5px);
        }

        .source-icon {
            font-size: 20px;
        }

        @media (max-width: 768px) {
            nav {
                padding: 20px;
            }
            .veille-section {
                padding: 120px 20px 50px;
            }
            .articles-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 24px;
            }
        } 