/* Nurshah Global - Tactile Modernist & Soft Skeuomorphism Styles */

/* 3D Button Effects */
.btn-3d, .three-d-button {
  background: linear-gradient(180deg, #f2ca50 0%, #d4af37 100%);
  border-top: 1px solid #ffe088;
  border-left: 1px solid #e9c349;
  border-right: 1px solid #d4af37;
  border-bottom: 2px solid #8c7324;
  box-shadow: 0 4px 0 #8c7324, 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.12s cubic-bezier(0.4, 0, 0.2, 1);
  color: #3c2f00;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-3d:hover, .three-d-button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #8c7324, 0 10px 22px rgba(242, 202, 80, 0.25);
}

.btn-3d:active, .three-d-button:active {
  transform: translateY(2px) scale(0.99);
  box-shadow: 0 2px 0 #8c7324, 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Secondary Button with Gold Border */
.btn-secondary-glow {
  background: rgba(32, 31, 31, 0.7);
  border: 1px solid rgba(242, 202, 80, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.btn-secondary-glow:hover {
  background: rgba(242, 202, 80, 0.08);
  border-color: rgba(242, 202, 80, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 15px rgba(242, 202, 80, 0.2);
  color: #f2ca50;
}

/* Glassmorphism & Tonal Stacking */
.glass-card {
  background: rgba(32, 31, 31, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Beveled Edge Highlight */
.beveled-edge {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.09), 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gold Ambient Glow */
.gold-glow:hover {
  border-color: rgba(242, 202, 80, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(242, 202, 80, 0.15);
}

/* Recessed Inset Inputs */
.recessed-input {
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.75), inset 0 1px 1px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.recessed-input:focus-within {
  border-color: rgba(242, 202, 80, 0.6);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 202, 80, 0.4);
}

/* Brushed Metal Overlay Texture */
.brushed-metal {
  background-image: radial-gradient(circle at 50% 0%, rgba(242, 202, 80, 0.04) 0%, transparent 70%);
}

/* Ticker Scroll Animation */
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerSlide 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

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

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

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb:hover {
  background: #4d4635;
}

/* Toast Container */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 320px;
  max-width: 440px;
  background: #1c1b1b;
  border: 1px solid #4d4635;
  border-left: 4px solid #f2ca50;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  padding: 14px 18px;
  border-radius: 8px;
  color: #e5e2e1;
  font-family: 'Manrope', sans-serif;
  animation: toastIn 0.25s ease-out forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(16px); }
}
