/* ============================================================
   CUSTOM STYLES - Modern High-Contrast Dark Theme
   ============================================================ */

/* Base font family */
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  background: #09090b; /* Deep zinc/black */
  color: #f4f4f5; /* Off-white / Silver */
}

/* Hindi/Devanagari font */
.font-hindi, :lang(hi) {
  font-family: 'Noto Sans Devanagari', 'Outfit', sans-serif;
}

/* News ticker scrolling animation */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 35s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

/* Reusable button styles (Cyan/Neon Theme) */
.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  background: #06b6d4; /* Cyan 500 */
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}
.btn-amber:hover { 
  background: #22d3ee; /* Cyan 400 */
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background: #27272a; /* Zinc 800 */
  color: #f4f4f5;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.2s;
  text-decoration: none;
  border: 1px solid #3f3f46;
}
.btn-navy:hover { background: #3f3f46; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.02);
  color: #e2e8f0; /* Silver */
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid rgba(226,232,240,0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-white:hover { background: #e2e8f0; color: #09090b; }

/* Card style - Dark Mode */
.card {
  background: #18181b; /* Zinc 900 */
  border: 1px solid #27272a; /* Zinc 800 */
  border-radius: 12px;
  overflow: hidden;
}

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

/* Scrollbar - Dark */
::-webkit-scrollbar        { width: 10px; height: 10px; }
::-webkit-scrollbar-track  { background: #09090b; }
::-webkit-scrollbar-thumb  { background: #3f3f46; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #52525b; }

/* Page-header gradient */
.page-header {
  background: linear-gradient(135deg, #09090b 0%, #18181b 40%, #082f49 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

/* Small hover lift for cards */
.hover-lift { transition: transform .25s, box-shadow .25s, border-color .25s; }
.hover-lift:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
  border-color: #06b6d4;
}