/* Ankara Dedektif - Bespoke Noir & Gold Luxury Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --noir-950: #07090e;
  --noir-900: #0b0f17;
  --noir-850: #101622;
  --noir-800: #161d2e;
  --noir-700: #1e293b;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA7C11;
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
}

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

body {
  background-color: var(--noir-950);
  color: #f1f5f9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: -0.02em;
}

/* Custom Gradients */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFF8DC 0%, #D4AF37 50%, #B48811 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #EAB308 0%, #D4AF37 50%, #B45309 100%);
  color: #07090e !important;
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-border-glow:hover {
  border-color: rgba(212, 175, 55, 0.8) !important;
  box-shadow: var(--gold-glow);
}

.glass-card {
  background: rgba(16, 22, 34, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-gold {
  background: rgba(16, 22, 34, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.noir-mesh-bg {
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(30, 41, 59, 0.35) 0%, transparent 50%);
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--noir-900);
}

::-webkit-scrollbar-thumb {
  background: var(--noir-700);
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Pulse animation */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  }
  50% {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.55);
  }
}

.animate-pulse-gold {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* Line clamps */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
