:root {
            --bg-deep-space: #01030a;
            --primary-glow: #3a8dff; /* Electric Blue */
            --secondary-glow: #b026ff; /* Neon Purple */
            --glow-shadow-primary: rgba(58, 141, 255, 0.7);
            --text-color: #e0e8ff;
            --border-color: rgba(58, 141, 255, 0.25);
            --glass-bg: rgba(15, 22, 42, 0.65);
            --font-tech: 'Teko', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-tech);
            background-color: var(--bg-deep-space);
            color: var(--text-color);
            line-height: 1.5;
            overflow-x: hidden;
            /* Animated data stream background */
            background-image: 
                radial-gradient(ellipse at top, rgba(58, 141, 255, 0.2), transparent 50%),
                repeating-linear-gradient(0deg,
                    transparent 0,
                    transparent 50px,
                    var(--border-color) 51px,
                    transparent 52px,
                    transparent 100px
                );
            animation: stream 30s linear infinite;
        }

        @keyframes stream {
            0% { background-position: 0 0; }
            100% { background-position: 0 1000px; }
        }

        header {
            padding: 60px 20px 40px;
        }

        #site-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 5px;
            color: #fff;
            animation: text-flicker 6s linear infinite;
        }

        @keyframes text-flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow:
                    0 0 5px #fff,
                    0 0 10px #fff,
                    0 0 20px var(--primary-glow),
                    0 0 40px var(--primary-glow),
                    0 0 80px var(--primary-glow);
            }
            20%, 24%, 55% { text-shadow: none; }
        }

        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px 60px;
            perspective: 1200px;
        }

        .article {
            background: var(--glass-bg);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(12px);
            position: relative;
            clip-path: polygon(0 30px, 30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
            transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .article:hover {
            transform: translateY(-15px) rotateX(8deg) scale(1.04);
            border-color: var(--primary-glow);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px var(--glow-shadow-primary);
        }

        /* Animated border effect */
        .article::before, .article::after {
            content: '';
            position: absolute;
            background: var(--primary-glow);
            box-shadow: 0 0 10px var(--primary-glow);
            transition: transform 0.5s ease-out;
            transform-origin: center;
        }
        .article::before { top: 0; left: 0; width: 100%; height: 2px; transform: scaleX(0); }
        .article::after { top: 0; left: 0; width: 2px; height: 100%; transform: scaleY(0); }
        .article:hover::before { transform: scaleX(1); }
        .article:hover::after { transform: scaleY(1); }

        .article-image {
            background-color: rgba(0,0,0,0.3);
            padding: 20px;
        }
        
        .article-image img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            display: block;
            filter: brightness(0.9) saturate(1.2);
            transition: filter 0.4s ease, transform 0.4s ease;
        }
        
        .article:hover .article-image img {
            filter: brightness(1.1) saturate(1.5);
            transform: scale(1.05);
        }

        .article-content {
            padding: 30px;
            position: relative;
        }
        
        /* Inner decorative element on hover */
        .article-content::after {
            content: '⬢';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: var(--primary-glow);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .article:hover .article-content::after {
            opacity: 0.5;
        }

        .article-content h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .article-content h2 a {
            text-decoration: none;
            color: #fff;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .article-content h2 a:hover {
            color: var(--primary-glow);
            text-shadow: 0 0 10px var(--glow-shadow-primary);
        }

        .article-meta {
            font-size: 1.1rem;
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .article-meta span { display: block; }
        .article-meta strong {
            font-weight: 600;
            color: var(--text-color);
            opacity: 0.9;
            margin-right: 8px;
        }

        .article-content p {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.9;
            font-family: 'Rajdhani', sans-serif; /* Use main font for consistency */
        }