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

        body {
            font-family: 'Courier New', monospace;
            background: #0a0e1a;
            color: #00ff00;
            overflow: hidden;
        }

        #container {
            width: 100vw;
            height: 100vh;
            position: relative;
        }

        #info {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(10, 14, 26, 0.9);
            padding: 20px;
            border: 1px solid #00ff00;
            border-radius: 5px;
            max-width: 250px;
            z-index: 100;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
        }

        h1 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #00ff00;
            text-transform: uppercase;
        }

        .stat {
            display: flex;
            justify-content: space-between;
            margin: 8px 0;
            font-size: 13px;
        }

        .stat-value {
            color: #ff3333;
            font-weight: bold;
        }

        #attack-log {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(10, 14, 26, 0.9);
            padding: 15px;
            border: 1px solid #ff0000;
            border-radius: 5px;
            width: 300px;
            max-height: 250px;
            overflow-y: hidden;
            z-index: 100;
        }

        .attack-entry {
            font-size: 11px;
            margin: 5px 0;
            padding: 4px;
            border-left: 2px solid #ff0000;
            padding-left: 8px;
            animation: fadeIn 0.3s ease-out;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(10px); }
            to { opacity: 1; transform: translateX(0); }
        }

        #legend {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(10, 14, 26, 0.9);
            padding: 15px;
            border: 1px solid #00ff00;
            border-radius: 5px;
            z-index: 100;
        }

        .legend-item {
            display: flex;
            align-items: center;
            margin: 5px 0;
            font-size: 11px;
        }

        .legend-color {
            width: 12px;
            height: 12px;
            margin-right: 8px;
            border-radius: 2px;
        }