/* Tactical Obsidian & Cyber Noir Styling for Ankara Dedektif */
:root {
  --bg-main: #07090e;
  --bg-card: #0d121d;
  --bg-card-hover: #131b2a;
  --gold-primary: #d97706;
  --gold-light: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --cyan-accent: #0ea5e9;
  --green-active: #10b981;
}

body {
  background-color: var(--bg-main);
  color: #e2e8f0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* Tactical Background Grid & Vignette */
.tactical-grid-bg {
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.tactical-radial-glow {
  background: radial-gradient(circle at 50% 20%, rgba(217, 119, 6, 0.12) 0%, rgba(7, 9, 14, 0) 70%);
}

/* Glassmorphism Dossier Card */
.dossier-card {
  background: rgba(13, 18, 29, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.dossier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 35px -5px rgba(217, 119, 6, 0.15);
}

.dossier-corner-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
}

.dossier-corner-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
}

/* Confidential Stamp */
.confidential-stamp {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ef4444;
  border: 2px solid #ef4444;
  border-radius: 4px;
  transform: rotate(-4deg);
  opacity: 0.85;
  user-select: none;
}

.classified-badge {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  border-radius: 3px;
}

/* Pulse animation for live indicators */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.pulse-radar-dot {
  animation: pulse-ring 2s infinite ease-in-out;
}

/* Glow effects */
.gold-glow-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #07090e;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
}

.gold-glow-btn:hover {
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.55);
  transform: scale(1.02);
}

.whatsapp-glow-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  transition: all 0.25s ease;
}

.whatsapp-glow-btn:hover {
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.55);
  transform: scale(1.02);
}

/* Floating Dock */
.floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #07090e;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d97706;
}

/* Text Selection */
::selection {
  background: rgba(245, 158, 11, 0.3);
  color: #ffffff;
}
