/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B0D17; 
}
::-webkit-scrollbar-thumb {
  background: #334155; 
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ef4444; 
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(13, 16, 28, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* FX Scanline Layer */
.scanline {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 50;
  opacity: 0.15;
}

.square-button {
  border-radius: 0;
}

/* FX Heading Style */
.heading-border {
  position: relative;
  display: inline-block;
  padding: 0.75rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.heading-border::before,
.heading-border::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 3px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.heading-border::before { left: 0; }
.heading-border::after { right: 0; }

/* Scrollbar Hide Util */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Painted Copper Text Effect */
.painted-copper {
    background: linear-gradient(135deg, #a65d2c 0%, #7c3b12 50%, #4a2e15 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.8)) drop-shadow(-1px -1px 1px rgba(255,255,255,0.15));
    /* Simulated thickness/emboss */
    -webkit-text-stroke: 0.5px rgba(255,255,255,0.1);
}
