﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #0f172a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.bg-glass {
  background: rgba(15, 23, 42, 0.75);
}

.bg-glassHover {
  background: rgba(30, 41, 59, 0.85);
}

.border-glassBorder {
  border-color: rgba(255, 255, 255, 0.15);
}

.bg-darkOverlay {
  background: rgba(0, 0, 0, 0.6);
}

.text-shadow {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.animate-in {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.fade-in {
  animation-name: fade-in;
}

.zoom-in {
  animation-name: zoom-in;
}

.slide-in-right {
  animation-name: slide-in-right;
  animation-duration: 0.25s;
  animation-fill-mode: both;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoom-in {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slide-in-right {
  from { transform: translateX(16px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
}
