
body {
  font-family: 'Noto Sans Georgian', 'Montserrat', system-ui, -apple-system, sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #05050A; border-left: 1px solid rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb { background: #1A1F33; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF3CA6; }

/* Glass Panel */
.glass-panel {
  background-color: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Buttons */
.btn-primary {
  background-color: #FF3CA6;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 60, 166, 0.5);
  box-shadow: 0 0 20px rgba(255, 60, 166, 0.2);
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-primary:hover {
  background-color: #E02E8D;
  box-shadow: 0 0 30px rgba(255, 60, 166, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #0A0B13;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

/* Cards */
.card-sharp {
  background-color: #0A0B13;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.card-sharp:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Nav Links Underline */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -4px; left: 0;
  background-color: #FF3CA6;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
