@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.mob-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-shadow-gold {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
               0 4px 8px rgba(0, 0, 0, 0.8);
}

.paper-texture {
  background-color: #0a0a0a;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(212, 175, 55, 0.03) 2px,
      rgba(212, 175, 55, 0.03) 4px
    );
}

.panel {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 0.5rem;
}

.stat-box {
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid #d4af37;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #1a1a1a;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #b8960f;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slide-in 0.3s ease-out;
}

button {
  transition: all 0.2s ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

input:focus,
select:focus {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .mob-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .panel {
    padding: 1rem;
  }
  
  .panel-title {
    font-size: 1.25rem;
  }
}