/* ============================================================
   Chitram Official Custom Stylesheet
   ============================================================ */

:root {
  --bg-main: #0f172a;
  --bg-card: #020617;
  --bg-card-alt: #0f172a;
  --border-color: #1e293b;
  --brand-purple: #a855f7;
  --brand-emerald: #10b981;
  --brand-sky: #0ea5e9;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
}

/* Base Body Styles */
html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  background-color: var(--bg-main) !important;
  color: var(--text-main) !important;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #020617;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a855f7;
}

/* Selection Highlight */
::selection {
  background: #a855f7;
  color: #ffffff;
}

/* Glowing Border Animation on Cards */
.card-glow {
  transition: all 0.3s ease-in-out;
}

.card-glow:hover {
  border-color: rgba(168, 85, 247, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.15);
}

/* Button Pulse / Scale Effects */
.btn-primary {
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-primary:active {
  transform: scale(0.98);
}