 :root {
            --bg: #0a0b10;
            --accent: #00ff41; /* Verde Matrix/Terminal */
            --text: #e0e6ed;
            --card-bg: #161b22;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        .container {
            max-width: 800px;
            padding: 2rem;
            border: 1px solid #30363d;
            border-radius: 12px;
            background: var(--card-bg);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .tag {
            background: rgba(0, 255, 65, 0.1);
            border: 1px solid var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: bold;
        }

        .status {
            margin-top: 2rem;
            font-size: 0.8rem;
            color: #8b949e;
        }

        a {
            color: var(--accent);
            text-decoration: none;
        }
        .blink { animation: blinker 1.5s linear infinite; }
        @keyframes blinker { 50% { opacity: 0; } }