/* God of War Ragnarök Styling */
* {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  touch-action: none;
  background-color: #050b14;
  font-family: 'Tajawal', sans-serif;
  overflow: hidden;
}

/* Safe Area Paddings for notched mobile devices */
#hud-layer {
  padding-top: calc(10px + env(safe-area-inset-top));
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  padding-left: calc(10px + env(safe-area-inset-left));
  padding-right: calc(10px + env(safe-area-inset-right));
}

/* Hidden Overlay Class for absolute hit-test safety */
.hidden {
  display: none !important;
}

/* Modal Scrollbars */
#modal-shop ::-webkit-scrollbar {
  width: 6px;
}
#modal-shop ::-webkit-scrollbar-track {
  background: rgba(5, 15, 30, 0.6);
  border-radius: 8px;
}
#modal-shop ::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.4);
  border-radius: 8px;
}

/* Frost & Flame Animations */
@keyframes frost-pulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.6), inset 0 0 15px rgba(186, 230, 253, 0.4);
  }
  50% {
    box-shadow: 0 0 45px rgba(14, 165, 233, 0.9), inset 0 0 25px rgba(56, 189, 248, 0.7);
  }
}

.frost-glow {
  animation: frost-pulse 2.5s infinite ease-in-out;
}

@keyframes rage-pulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.8), inset 0 0 15px rgba(252, 211, 77, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgba(220, 38, 38, 1), inset 0 0 30px rgba(245, 158, 11, 0.8);
  }
}

.rage-glow {
  animation: rage-pulse 1.2s infinite ease-in-out;
}

/* Ice Glassmorphic Panels */
.norse-card {
  background: linear-gradient(180deg, rgba(12, 26, 46, 0.88) 0%, rgba(6, 13, 25, 0.92) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}