:root {
    --bg: #050505;
    --primary: #00f2ff;
    --secondary: #10b981;
    --text: #e0e0e0;
    --glass: rgba(15, 15, 15, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    background-image: linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    min-height: 100vh;
    padding: 20px;
}

.container { max-width: 1100px; margin: 0 auto; }

header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
.logo span { color: var(--primary); text-shadow: 0 0 10px var(--primary); }

.main-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 20px; }

.card { background: var(--glass); border: 1px solid #333; border-radius: 4px; padding: 20px; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--primary); }

.label { font-size: 0.7rem; color: #666; margin-bottom: 10px; }
#display-ip { color: var(--primary); font-size: 2rem; margin-bottom: 20px; }

.data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.data-item span { display: block; font-size: 0.6rem; color: #888; }
.data-item strong { font-size: 0.9rem; color: #fff; }

#map { height: 250px; border: 1px solid #333; margin-bottom: 15px; filter: grayscale(1) invert(0.9) hue-rotate(180deg); }

.input-group { display: flex; gap: 5px; }
input { background: #000; border: 1px solid #333; color: var(--primary); padding: 10px; flex: 1; font-family: inherit; }
button { background: var(--primary); color: #000; border: none; padding: 10px 15px; font-weight: bold; cursor: pointer; }

/* HACKER SYSTEMS */
.hl { color: var(--primary); font-weight: bold; }
.hidden { display: none !important; }
.progress-bg { background: #111; height: 12px; border: 1px solid #333; margin: 10px 0; border-radius: 2px; }
.bar { height: 100%; width: 0%; transition: 0.3s; }
.bar.blue { background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.bar.green { background: var(--secondary); box-shadow: 0 0 10px var(--secondary); }
.stats { display: flex; justify-content: space-between; font-size: 0.8rem; }

.target-cloud { font-size: 0.75rem; line-height: 1.8; opacity: 0.7; }

/* WALLET */
.wallet-panel { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); width: 220px; background: #000; border: 1px solid var(--secondary); padding: 15px; z-index: 1000; box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.wallet-header { font-size: 0.6rem; color: var(--secondary); border-bottom: 1px solid #222; margin-bottom: 10px; }
.coin-row { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; color: var(--secondary); }

.notification { position: fixed; bottom: -100px; left: 20px; background: var(--primary); color: #000; padding: 10px 20px; transition: 0.5s; z-index: 9999; font-weight: bold; }
.notification.show { bottom: 20px; }

.pulse { display: inline-block; width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; animation: pulse 1s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
