.paper-texture {
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.03"/%3E%3C/svg%3E');
}

.perforated-border {
  position: relative;
}
.perforated-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: radial-gradient(circle, transparent 2px, #c4c6cf 2.5px, #c4c6cf 100%);
  background-size: 8px 4px;
  background-position: bottom;
  background-repeat: repeat-x;
}

.scanner-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B8860B;
  box-shadow: 0 0 10px #B8860B, 0 0 20px #B8860B;
  animation: scan 2s infinite alternate ease-in-out;
  opacity: 0.8;
}

@keyframes scan {
  0% { top: 0%; }
  100% { top: 100%; }
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.soft-shadow {
  box-shadow: 0px 4px 20px rgba(26, 54, 93, 0.05);
}

.hero-pattern {
  background-color: #f7fafc;
  background-image: radial-gradient(#1a365d 0.5px, #f7fafc 0.5px);
  background-size: 16px 16px;
  opacity: 0.8;
}

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

.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(184, 134, 11, 0.3); }
  50% { box-shadow: 0 0 20px rgba(184, 134, 11, 0.6); }
}

.scan-glow {
  animation: pulse-glow 1.5s ease-in-out infinite;
}

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