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

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: #0a0305;
            color: #d9c8b0;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
            position: relative;
        }

        /* Efeito de corrosão / sangue nas bordas */
        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 40%, rgba(80, 10, 15, 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        /* RIG DANIFICADO - estilo Ishimura (vermelho/sangue/ferrugem) */
        .rig-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.4;
        }

        .rig-svg {
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 90%;
            max-width: 900px;
            transform: rotate(3deg);
            filter: drop-shadow(0 0 25px rgba(180, 30, 30, 0.5));
        }

        .blood-haze {
            position: absolute;
            bottom: 5%;
            right: 5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(150, 20, 20, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(50px);
            animation: pulseRed 5s ease-in-out infinite;
        }

        @keyframes pulseRed {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
        }

        /* Scanlines avermelhadas */
        .scanline {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(0deg, rgba(100, 20, 20, 0.08) 0px, rgba(100, 20, 20, 0.08) 2px, transparent 2px, transparent 6px);
            pointer-events: none;
            z-index: 3;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        h1, h2, h3, .logo, .nav-links a {
            font-family: 'Share Tech Mono', monospace;
            letter-spacing: 1px;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            text-transform: uppercase;
            color: #dd2211;
            text-shadow: 0 0 12px #dd2211, 0 0 3px #550000;
        }

        h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 600;
            color: #cc5533;
            text-shadow: 0 0 6px rgba(200, 60, 30, 0.6);
            border-left: 4px solid #dd2211;
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-sub {
            font-size: 1rem;
            color: #b08a70;
            max-width: 700px;
            margin-bottom: 2.5rem;
            font-family: 'Share Tech Mono', monospace;
        }

        /* Botões estilo alerta */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(70, 15, 15, 0.7);
            backdrop-filter: blur(5px);
            border: 1px solid #dd3322;
            color: #dd5544;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
            font-family: 'Share Tech Mono', monospace;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        .btn-primary {
            background: rgba(200, 40, 30, 0.2);
            box-shadow: 0 0 8px rgba(200, 40, 30, 0.5);
        }

        .btn-primary:hover {
            background: #b52215;
            color: #0a0305;
            box-shadow: 0 0 18px #dd3311;
            border-color: #ff4422;
        }

        /* Navbar */
        .navbar {
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            border-bottom: 1px solid rgba(200, 50, 30, 0.5);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #cc4422;
            text-shadow: 0 0 8px #aa3311;
            letter-spacing: 3px;
        }

        .logo span {
            color: #aa3322;
            text-shadow: 0 0 4px #661111;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #c99f7a;
            transition: 0.2s;
            font-size: 0.85rem;
        }

        .nav-links a:hover {
            color: #dd4433;
            text-shadow: 0 0 4px #dd3322;
        }

        /* Hero */
        .hero {
            padding: 3rem 0 3rem 0;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }

        .hero-badge {
            background: rgba(180, 30, 20, 0.25);
            border-left: 3px solid #dd2211;
            display: inline-block;
            padding: 0.3rem 1rem;
            font-size: 0.7rem;
            font-weight: 700;
            color: #dd6655;
            margin-bottom: 1.5rem;
            font-family: 'Share Tech Mono', monospace;
            letter-spacing: 2px;
        }

        /* Cards de notícias (sujo, enferrujado) */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .news-card {
            background: rgba(20, 6, 8, 0.7);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(180, 50, 30, 0.4);
            border-radius: 8px;
            padding: 1.5rem;
            transition: 0.3s;
        }

        .news-card:hover {
            border-color: #dd4433;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(180, 30, 20, 0.2);
        }

        .news-category {
            color: #dd5544;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .news-card h3 {
            font-size: 1.3rem;
            margin: 0.8rem 0;
            color: #dd8866;
        }

        /* Hardware list */
        .hw-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .hw-item {
            background: rgba(50, 12, 12, 0.6);
            padding: 1rem;
            border-radius: 6px;
            border-left: 3px solid #cc4422;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hw-name {
            font-weight: 700;
            color: #dd7755;
        }

        /* Sobre - RIG corrompido */
        .about {
            padding: 4rem 0;
            border-top: 1px solid rgba(180, 50, 30, 0.4);
            border-bottom: 1px solid rgba(180, 50, 30, 0.4);
        }

        .rig-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-block {
            background: rgba(100, 20, 15, 0.2);
            padding: 0.8rem;
            text-align: center;
            border-radius: 6px;
            border: 1px solid rgba(200, 60, 30, 0.3);
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #dd5544;
            font-family: 'Share Tech Mono', monospace;
        }

        /* Formulário corrosivo */
        .contact-form {
            max-width: 600px;
            background: rgba(30, 8, 10, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid rgba(200, 50, 30, 0.5);
        }

        input, textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 4px;
            border: 1px solid rgba(180, 50, 30, 0.5);
            background: #130608;
            color: #dd9988;
            font-family: inherit;
        }

        button {
            background: rgba(150, 30, 20, 0.3);
            border: 1px solid #cc4422;
            color: #dd6655;
            padding: 0.8rem;
            width: 100%;
            font-family: 'Share Tech Mono', monospace;
            font-weight: bold;
            cursor: pointer;
        }

        button:hover {
            background: #aa3322;
            color: #0a0305;
        }

        footer {
            border-top: 1px solid rgba(180, 50, 30, 0.4);
            padding: 2rem 0;
            text-align: center;
            font-size: 0.8rem;
        }

        @media (max-width: 780px) {
            .rig-svg { width: 140%; opacity: 0.3; bottom: -30%; }
        }
    </style>
