:root {
  --neon-cyan: #00bcd4;   /* Softer Cyan */
  --neon-purple: #9c27b0; /* Softer Purple */
  --neon-magenta: #e91e63; /* Softer Magenta */
  --bg-dark: #0a0a0a;
  --surface: #141414;
  --text-main: #e0e0e0;
  --text-dim: #a0a0a0;
}

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

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; }

/* Neon Header */
.header {
  padding: 30px 20px;
  background: #000;
  text-align: left;
  border-bottom: 2px solid var(--neon-cyan);
  position: relative;
  overflow: hidden;
}
.header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,243,255,0.1) 0%, transparent 70%);
}
.header h1 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
}
.header h1 span {
  color: var(--neon-magenta);
  text-shadow: 0 0 15px var(--neon-magenta);
}

/* Cyber Content Grid */
.cyber-section { border-bottom: 5px solid #000; }

.label {
  background: #0a0a0a;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
}

/* Chrome Items */
.chrome-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--surface);
  border-bottom: 1px solid #000;
  gap: 20px;
  position: relative;
  transition: 0.3s;
}
.chrome-item:hover {
  background: #151515;
}
.chrome-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--neon-cyan);
  opacity: 0;
  transition: 0.3s;
}
.chrome-item:hover::before { opacity: 1; box-shadow: 0 0 10px var(--neon-cyan); }

.c-icon {
  width: 45px;
  height: 45px;
  background: #000;
  border: 1px solid #222;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: inset 0 0 10px rgba(0,243,255,0.1);
}

.c-body { flex: 1; }
.c-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.c-meta {
  font-size: 0.7rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Neon Tags Wall */
.tag-wall {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #000;
}
.tag-card {
  background: rgba(188, 19, 254, 0.05);
  border: 1px solid rgba(188, 19, 254, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--neon-purple);
  transition: 0.3s;
}
.tag-card:hover {
  background: var(--neon-purple);
  color: #000;
  box-shadow: 0 0 15px var(--neon-purple);
}

/* Activity Notify */
.live-notify {
    position: fixed;
    bottom: 25px;
    left: -320px;
    width: 280px;
    background: rgba(0,0,0,0.9);
    border: 1px solid var(--neon-magenta);
    border-radius: 4px;
    padding: 15px;
    z-index: 2000;
    transition: 0.5s;
    box-shadow: 0 0 30px rgba(255,0,255,0.1);
}
.live-notify.active { left: 15px; }

/* FAB */
.fab {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: var(--neon-cyan);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 25px rgba(0,243,255,0.4);
    z-index: 3000;
    animation: pulse-neon 2s infinite;
}
@keyframes pulse-neon {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,243,255,0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0,243,255,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,243,255,0); }
}

footer {
  padding: 60px 20px;
  background: #000;
  text-align: center;
  font-size: 0.7rem;
  color: #333;
}
footer b { color: var(--neon-magenta); }