/* ── GAME ROOM SECTION ── */
.gameroom {
  margin: 3rem 0;
  position: relative;
}
 
.gameroom-header {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #aaff00;
  text-shadow: 0 0 6px #aaff00, 0 0 20px #aaff0077;
  margin-bottom: 0.4rem;
}
 
.gameroom-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: #aaff0066;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
 
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(130px, 40vw, 160px), 1fr));
  gap: 0.75rem;
}
 
.game-card {
  display: block;
  text-decoration: none;
  background: #080012;
  border: 2px solid #aaff0033;
  border-radius: 4px;
  padding: 1rem 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}
 
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(170,255,0,0.015) 3px, rgba(170,255,0,0.015) 4px
  );
  pointer-events: none;
}
 
.game-card:hover {
  border-color: #aaff00;
  box-shadow: 0 0 16px #aaff0044, inset 0 0 20px rgba(170,255,0,0.05);
  transform: translateY(-2px);
}
 
.game-card.wip {
  border-color: #ff990033;
}
 
.game-card.wip::before {
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,153,0,0.015) 3px, rgba(255,153,0,0.015) 4px
  );
}
 
.game-card.wip:hover {
  border-color: #ff9900;
  box-shadow: 0 0 16px #ff990044, inset 0 0 20px rgba(255,153,0,0.05);
}
 
.game-card.wip .game-title {
  color: #ff9900;
}
 
.game-card.wip .game-icon {
  filter: drop-shadow(0 0 6px #ff990077);
}
 
.game-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 6px #aaff0077);
}
 
.game-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: #aaff00;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.4rem;
}
 
.game-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}
 
.game-status.ready {
  color: #00eeff;
  background: rgba(0,238,255,0.08);
  border: 1px solid #00eeff44;
}
 
.game-status.wip {
  color: #ff9900;
  background: rgba(255,153,0,0.08);
  border: 1px solid #ff990044;
}
 
/* ── INLINE IMAGES ── */
.hauntedpic {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem auto;
  border: 1px solid #ff00cc33;
  border-radius: 6px;
  filter: saturate(1.15) contrast(1.1);
  transition: all 0.3s ease;
}
 
.hauntedpic:hover {
  filter: saturate(1.4) contrast(1.3) hue-rotate(15deg);
  border-color: #ff00ccaa;
  box-shadow: 0 0 20px #ff00cc33;
}
 
/* ── FOOTER ── */
.site-footer {
  margin-top: 4rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid #ff00cc1a;
  text-align: center;
}
 
.footer-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: #7755aa;
  letter-spacing: 2px;
  text-transform: uppercase;
}
 
.footer-text span {
  color: #ff00cc66;
}
 
/* ── TERMINAL CURSOR ── */
.cursor::after {
  content: "▋";
  color: #00eeff;
  animation: blink 1s step-end infinite;
}
 

 
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #070009; }
::-webkit-scrollbar-thumb { background: #ff00cc44; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ff00cc88; }
