/* ==========================================================================
   GLOBAL AI MAP - SEAMLESS WORLD & PROVINCE DRILL-DOWN STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --bg-dark: #040810;
  --bg-panel: #07101f;
  --bg-card: #0c182b;
  --border-cyan: #00f0ff;
  --border-dim: #162c46;
  --text-main: #e0f2fe;
  --text-muted: #64748b;
  --neon-cyan: #00f0ff;
  --neon-teal: #00d2ff;
  --neon-yellow: #ffe600;
  --neon-green: #39ff14;
  --glow-cyan: 0 0 14px rgba(0, 240, 255, 0.5);
  --glow-yellow: 0 0 15px rgba(255, 230, 0, 0.6);
  --font-mono: 'Share Tech Mono', monospace;
  --font-sans: 'Chakra Petch', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  width: 100vw;
}

#app-layout {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Grid Overlay & Scanlines */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.25;
  animation: scanline 7s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scanline {
  0% { top: 0; }
  100% { top: 100%; }
}

/* ==========================================================================
   TOP HEADER HUD NAV
   ========================================================================== */

.cyber-header {
  height: 56px;
  background: rgba(4, 9, 20, 0.95);
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 28px;
  height: 28px;
  background: var(--neon-cyan);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan);
}

.brand-logo-inner {
  width: 14px;
  height: 14px;
  background: var(--bg-dark);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.brand-title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.brand-title span {
  color: var(--neon-yellow);
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #94a3b8;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  border-left: 2px solid var(--border-dim);
  padding-left: 12px;
}

.header-status {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  padding: 4px 14px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 2px;
  box-shadow: var(--glow-cyan);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  text-transform: lowercase;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.btn-join {
  background: var(--neon-yellow);
  color: #000000;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  clip-path: polygon(0 0, 92% 0, 100% 35%, 100% 100%, 8% 100%, 0 65%);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--glow-yellow);
}

.btn-join:hover {
  transform: translateY(-1px);
  background: #fff066;
}

/* ==========================================================================
   BREADCRUMB & CONTINENT NAV BAR
   ========================================================================== */

.location-subnav {
  height: 36px;
  background: #02050b;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  z-index: 99;
}

.breadcrumbs {
  display: flex;
  align-items: center;
}

.crumb {
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}

.crumb:hover, .crumb.active {
  color: var(--neon-cyan);
  font-weight: bold;
}

.continent-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.continent-pill {
  background: rgba(16, 32, 54, 0.6);
  border: 1px solid var(--border-dim);
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.continent-pill:hover, .continent-pill.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   MAIN MAP WORKSPACE
   ========================================================================== */

.main-content {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
}

#map {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 10;
}

.leaflet-container {
  background: #040810 !important;
}

.leaflet-control-zoom {
  border: 1px solid var(--border-dim) !important;
  box-shadow: 0 6px 25px rgba(0,0,0,0.7) !important;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  background: var(--bg-panel) !important;
  color: var(--neon-cyan) !important;
  border-bottom: 1px solid var(--border-dim) !important;
  font-family: var(--font-mono) !important;
  font-weight: bold;
}

.leaflet-control-zoom-in:hover, .leaflet-control-zoom-out:hover {
  background: var(--bg-card) !important;
  color: #ffffff !important;
}

.country-path {
  transition: all 0.2s ease;
  cursor: pointer;
}

.country-path:hover {
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.9));
}

.cyber-tooltip {
  background: rgba(4, 9, 20, 0.96) !important;
  border: 1px solid var(--neon-cyan) !important;
  border-radius: 2px !important;
  color: #ffffff !important;
  font-family: var(--font-mono) !important;
  padding: 8px 14px !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4) !important;
}

.cyber-tooltip::before {
  border-top-color: var(--neon-cyan) !important;
}

.tooltip-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--neon-cyan);
  margin-bottom: 4px;
}

.tooltip-stat {
  font-size: 0.8rem;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.tooltip-highlight {
  color: var(--neon-yellow);
  font-weight: bold;
}

/* AICLUB.ID CYAN SQUARE MARKER DESIGN */
.aiclub-square-marker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.aiclub-square-box {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--neon-cyan);
  background: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.aiclub-square-box:hover {
  transform: scale(1.3);
  border-color: var(--neon-yellow);
  box-shadow: 0 0 15px var(--neon-yellow);
  background: rgba(255, 230, 0, 0.2);
}

.aiclub-inner-dot {
  width: 4px;
  height: 4px;
  background: var(--neon-yellow);
  box-shadow: 0 0 6px var(--neon-yellow);
}

/* ==========================================================================
   FLOATING HUD ELEMENTS (LEGEND, SEARCH, CONTROLS)
   ========================================================================== */

.map-legend-box {
  position: absolute;
  bottom: 95px;
  left: 24px;
  z-index: 50;
  background: rgba(4, 9, 20, 0.92);
  border: 1px solid var(--border-dim);
  padding: 12px 14px;
  border-radius: 2px;
  font-family: var(--font-mono);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.legend-header {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--border-dim);
  padding-bottom: 4px;
}

.legend-colors {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.legend-color-step {
  height: 14px;
  width: 34px;
  border-radius: 1px;
}

.legend-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-main);
}

.search-control-box {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 50;
  display: flex;
  gap: 10px;
}

.search-input {
  background: rgba(4, 9, 20, 0.92);
  border: 1px solid var(--border-dim);
  color: #ffffff;
  font-family: var(--font-mono);
  padding: 8px 16px;
  font-size: 0.85rem;
  outline: none;
  width: 290px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn-reset-view {
  background: rgba(4, 9, 20, 0.92);
  border: 1px solid var(--border-dim);
  color: var(--neon-cyan);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}

.btn-reset-view:hover {
  background: var(--bg-card);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.map-instructions {
  position: absolute;
  bottom: 95px;
  right: 24px;
  z-index: 50;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  pointer-events: none;
  line-height: 1.5;
}

/* ==========================================================================
   BOTTOM METRICS DASHBOARD
   ========================================================================== */

.bottom-dashboard {
  height: 84px;
  background: rgba(4, 8, 16, 0.96);
  border-top: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  z-index: 100;
  padding: 0 24px;
}

.metric-card {
  flex: 1;
  border-right: 1px solid var(--border-dim);
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-card:last-child {
  border-right: none;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--neon-cyan);
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ==========================================================================
   COUNTRY / PROVINCE DETAIL SIDEBAR MODAL
   ========================================================================== */

.detail-modal {
  position: absolute;
  top: 70px;
  right: 24px;
  width: 380px;
  max-height: calc(100vh - 180px);
  background: rgba(4, 9, 20, 0.96);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0,0,0,0.9), var(--glow-cyan);
  z-index: 200;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(14px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 98%, 95% 100%, 0 100%);
  animation: slideIn 0.3s ease-out forwards;
}

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

.modal-header {
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.06);
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--neon-cyan);
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
}

.modal-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-stat-item {
  background: rgba(12, 24, 43, 0.8);
  border: 1px solid var(--border-dim);
  padding: 12px 14px;
}

.modal-stat-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--neon-yellow);
  font-weight: bold;
}

.modal-stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.modal-section-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-dim);
}

.project-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-tag {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 2px;
}

.leader-box {
  background: rgba(12, 24, 43, 0.7);
  border-left: 3px solid var(--neon-yellow);
  padding: 12px 14px;
}

.leader-name {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
}

.leader-role {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ==========================================================================
   COMMUNITY PANEL & INTERACTIVE FEATURES
   ========================================================================== */

.community-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 340px;
  max-height: 70vh;
  background: rgba(2, 5, 11, 0.92);
  border: 1px solid var(--border-dim);
  border-top: 2px solid var(--neon-cyan);
  z-index: 999;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  font-family: var(--font-mono);
}

.community-panel.open {
  display: flex;
}

.community-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-dim);
}

.community-panel-title {
  color: var(--neon-cyan);
  font-weight: bold;
  font-size: 0.85rem;
}

.community-panel-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.3rem;
  cursor: pointer;
}

.community-panel-close:hover {
  color: #ffffff;
}

.community-panel-body {
  padding: 14px;
  overflow-y: auto;
  max-height: 60vh;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.community-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.2);
}

.community-avatar {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.community-item-name {
  color: #ffffff;
  font-weight: bold;
  font-size: 0.8rem;
}

.community-item-meta {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.community-section-title {
  color: var(--neon-yellow);
  font-weight: bold;
  font-size: 0.78rem;
  margin: 14px 0 8px;
  text-transform: uppercase;
}

.rank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.2);
}

.rank-pos {
  color: var(--neon-yellow);
  font-weight: bold;
  min-width: 28px;
}

.rank-name {
  color: #ffffff;
  flex: 1;
}

.rank-count {
  color: var(--neon-cyan);
  font-weight: bold;
}

.join-desc {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.join-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.join-input {
  background: rgba(12, 24, 43, 0.8);
  border: 1px solid var(--border-dim);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 8px 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.join-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.join-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.join-status {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--neon-yellow);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
  background: rgba(12, 24, 43, 0.5);
  border: 1px solid var(--border-dim);
  margin: 10px 0;
}

.chat-msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(100, 116, 139, 0.15);
  padding: 4px 0;
}

.chat-msg-name {
  color: var(--neon-cyan);
  font-weight: bold;
}

.chat-msg-time {
  color: #475569;
  font-size: 0.65rem;
  margin-left: 6px;
}

.chat-placeholder {
  color: #475569;
  font-size: 0.75rem;
  text-align: center;
  padding: 20px;
}

.chat-filter {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.chat-filter .join-input {
  flex: 1;
  padding: 6px 8px;
}

.chat-compose {
  display: flex;
  gap: 6px;
  flex-direction: column;
}

.chat-compose .join-input {
  padding: 6px 8px;
}

.member-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  color: #000;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.event-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(255, 230, 0, 0.6);
}

.leaderboard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.2);
}

.leaderboard-pos {
  color: var(--neon-yellow);
  font-weight: bold;
  min-width: 24px;
}

.leaderboard-name {
  color: #ffffff;
  flex: 1;
  font-size: 0.78rem;
}

.leaderboard-val {
  color: var(--neon-cyan);
  font-weight: bold;
  font-size: 0.78rem;
}

.panel-empty {
  color: #475569;
  text-align: center;
  padding: 24px 8px;
  font-size: 0.75rem;
}

.event-item {
  border: 1px solid rgba(255, 230, 0, 0.25);
  background: rgba(255, 230, 0, 0.05);
  padding: 10px;
  margin-bottom: 8px;
}

.event-item-title {
  color: var(--neon-yellow);
  font-weight: bold;
  font-size: 0.8rem;
}

.event-item-meta {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-top: 4px;
}

.event-item-desc {
  color: #94a3b8;
  font-size: 0.7rem;
  margin-top: 4px;
}

.event-item-link a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 0.7rem;
}

.event-item-link a:hover {
  text-decoration: underline;
}

.btn-panel {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-panel:hover {
  background: rgba(0, 240, 255, 0.25);
}

.btn-panel.yellow {
  background: rgba(255, 230, 0, 0.1);
  border-color: rgba(255, 230, 0, 0.35);
  color: var(--neon-yellow);
}

.btn-panel.yellow:hover {
  background: rgba(255, 230, 0, 0.25);
}


.btn-admin-gear {
  background: transparent;
  border: 1px solid rgba(100, 116, 139, 0.5);
  color: #94a3b8;
  font-size: 1rem;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-mono);
}
.btn-admin-gear:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.admin-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 14px;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.2);
}

.admin-row-name {
  color: #e2e8f0;
  font-size: 0.72rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-row-meta {
  color: var(--text-muted);
  font-size: 0.65rem;
}

.admin-row-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.btn-admin-sm {
  background: transparent;
  border: 1px solid rgba(100, 116, 139, 0.5);
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  padding: 2px 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-admin-sm:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}
.btn-admin-sm.danger:hover {
  border-color: #ff4d6d;
  color: #ff4d6d;
}

.verified-badge {
  display: inline-block;
  color: var(--neon-yellow);
  font-size: 0.6rem;
  border: 1px solid rgba(255, 230, 0, 0.5);
  background: rgba(255, 230, 0, 0.1);
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

.event-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.event-item-title {
  flex: 1;
}

.btn-event-del {
  background: transparent;
  border: 1px solid rgba(255, 77, 109, 0.5);
  color: #ff4d6d;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 2px 6px;
  cursor: pointer;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: all 0.2s;
}
.btn-event-del:hover {
  background: rgba(255, 77, 109, 0.2);
  box-shadow: 0 0 8px rgba(255, 77, 109, 0.4);
}

.btn-admin-sm.accent {
  border-color: rgba(0, 240, 255, 0.5);
  color: var(--neon-cyan);
}
.btn-admin-sm.accent:hover {
  background: rgba(0, 240, 255, 0.2);
}

.country-path {
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
