/* Hacker-Themed Dark Mode CSS for Antibot.click */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #080c14;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --border-color: #1e293b;
  --border-glow: #00ff88;
  
  --primary-neon: #00ff88;
  --secondary-cyan: #00d8ff;
  --accent-red: #ff3366;
  --accent-yellow: #ffb703;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 216, 255, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, .font-mono {
  font-family: var(--font-mono);
}

a {
  color: var(--secondary-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-neon);
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

/* Layout Grid & Containers */
.app-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
  width: 260px;
  background: #0b1120;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.sidebar-logo {
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-menu {
  list-style: none;
  padding: 20px 0;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text-muted);
  font-weight: 500;
  border-left: 3px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  color: var(--primary-neon);
  background: rgba(0, 255, 136, 0.05);
  border-left-color: var(--primary-neon);
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

/* Glassmorphism Cards */
.cyber-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: border-color 0.3s ease;
}

.cyber-card:hover {
  border-color: rgba(0, 255, 136, 0.4);
}

/* Cyber Badges & Metrics */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #0f172a;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-neon);
}

.stat-card.red::after { background: var(--accent-red); }
.stat-card.cyan::after { background: var(--secondary-cyan); }
.stat-card.yellow::after { background: var(--accent-yellow); }

.stat-val {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-top: 5px;
  color: #fff;
}

.stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons & Inputs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-neon);
  color: #080c14;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--secondary-cyan);
  box-shadow: 0 0 15px rgba(0, 216, 255, 0.4);
}

.btn-danger {
  background: var(--accent-red);
  color: #fff;
}
.btn-danger:hover {
  background: #d90429;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: #090d16;
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary-neon);
  outline: none;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

/* Hacker Data Table */
.cyber-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.cyber-table th, .cyber-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cyber-table th {
  background: #090d16;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--secondary-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cyber-table tr:hover {
  background: rgba(30, 41, 59, 0.5);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.badge-bot { background: rgba(255, 51, 102, 0.2); color: var(--accent-red); border: 1px solid var(--accent-red); }
.badge-human { background: rgba(0, 255, 136, 0.2); color: var(--primary-neon); border: 1px solid var(--primary-neon); }
.badge-pending { background: rgba(255, 183, 3, 0.2); color: var(--accent-yellow); border: 1px solid var(--accent-yellow); }

/* Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #1e293b; transition: .3s; border-radius: 22px;
}
.slider:before {
  position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px;
  background-color: white; transition: .3s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--primary-neon); }
input:checked + .slider:before { transform: translateX(22px); background-color: #080c14; }

/* Floating Telegram Support Button */
.telegram-support-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0088cc;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
  z-index: 99999;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 216, 255, 0.6);
  text-decoration: none;
}

.telegram-support-btn:hover {
  background: #00a8ff;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 168, 255, 0.8);
  text-shadow: none;
}

.telegram-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}
