:root {
            --black: #000000;
            --red: #ff0000;
            --dark-red: #8b0000;
            --white: #ffffff;
            --gray: #888888;
            --glow: 0 0 15px rgba(255, 0, 0, 0.3);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--black);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text y="50" font-size="10" fill="%23ff000020" opacity="0.1">01010100 01101000 01100101 00100000 01001100 01100001 01110000 01110011 01110101 01110011 00100001</text></svg>');
            z-index: -1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(255, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .nav-logo {
            font-family: 'Anton', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 4px;
            color: var(--white);
            text-decoration: none;
            text-shadow: var(--glow);
        }

        .nav-logo span {
            color: var(--red);
        }

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

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--red);
            text-shadow: var(--glow);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--red);
            transition: width 0.3s;
        }

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

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

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 20px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .logo {
            margin-bottom: 40px;
            position: relative;
        }

        .logo-main {
            font-family: 'Anton', sans-serif;
            font-size: clamp(60px, 12vw, 120px);
            letter-spacing: 10px;
            color: var(--white);
            line-height: 1;
            text-shadow: var(--glow);
        }

        .logo-group {
            font-family: 'Anton', sans-serif;
            font-size: clamp(60px, 12vw, 120px);
            letter-spacing: 10px;
            color: var(--red);
            line-height: 1;
            margin-top: 10px;
            text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
        }

        .divider {
            width: 200px;
            height: 2px;
            background: var(--red);
            margin: 40px 0;
            box-shadow: var(--glow);
        }

        .tagline {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 3px;
            color: var(--gray);
            text-transform: uppercase;
            position: relative;
            padding: 0 20px;
        }

        .tagline::before,
        .tagline::after {
            color: var(--red);
            position: absolute;
        }

        .tagline::after {
            right: 0;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 50px;
        }

        .btn {
            padding: 14px 35px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid var(--red);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

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

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

        .btn-primary {
            background: var(--red);
            color: var(--white);
            box-shadow: var(--glow);
        }

        .btn-primary:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
        }

        .btn-secondary:hover {
            background: rgba(255, 0, 0, 0.1);
            color: var(--red);
        }

        section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Anton', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            letter-spacing: 5px;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title span {
            color: var(--red);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        section.in-view .section-title::after {
            transform: scaleX(1);
        }

        .section-text {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 800px;
        }

        #about {
            border-top: 1px solid rgba(255, 0, 0, 0.1);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat {
            text-align: center;
            padding: 30px;
            border: 1px solid rgba(255, 0, 0, 0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 45%, rgba(255, 0, 0, 0.05) 50%, transparent 55%);
            transform: translateX(-100%);
            transition: transform 0.5s;
        }

        .stat:hover::before {
            transform: translateX(100%);
        }

        .stat-number {
            font-family: 'Anton', sans-serif;
            font-size: 2.5rem;
            color: var(--red);
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        #articles {
            border-top: 1px solid rgba(255, 0, 0, 0.1);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .article-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 0, 0, 0.1);
            padding: 30px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .article-card:hover {
            border-color: var(--red);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .article-card:hover::before {
            transform: scaleX(1);
        }

        .article-date {
            font-size: 0.75rem;
            color: var(--red);
            letter-spacing: 2px;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .article-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--white);
        }

        .article-excerpt {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .article-link {
            display: inline-block;
            color: var(--red);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 1px solid transparent;
        }

        .article-link:hover {
            color: var(--white);
            border-bottom-color: var(--red);
        }

        #contact {
            border-top: 1px solid rgba(255, 0, 0, 0.1);
            text-align: left;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        footer {
            border-top: 1px solid rgba(255, 0, 0, 0.1);
            padding: 40px 20px;
            text-align: center;
            background: rgba(0, 0, 0, 0.3);
        }

        .footer-logo {
            font-family: 'Anton', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 4px;
            margin-bottom: 15px;
            text-shadow: var(--glow);
        }

        .footer-logo span {
            color: var(--red);
        }

        .footer-text {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .terminal-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--red);
            font-size: 0.8rem;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--red);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 101;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                border-bottom: 1px solid rgba(255, 0, 0, 0.2);
                backdrop-filter: blur(10px);
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .logo-main,
            .logo-group {
                letter-spacing: 5px;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }



