/* RESET */
body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #cfc6b8;
  font-family: "Courier New", monospace;
  overflow-x: hidden;
}

/* BACKGROUND NOISE */
.noise {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.2;
  pointer-events: none;
}

/* HEADER */
header {
  text-align: center;
  padding: 40px 20px;
}

.title {
  font-family: Georgia, serif;
  font-size: 32px;
  letter-spacing: 3px;
  color: #d1a36a;
  text-shadow: 0 0 5px rgba(255,140,0,0.3);
}

.subtitle {
  font-size: 12px;
  opacity: 0.6;
}

/* ROOMS GRID */
.rooms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

/* ROOM BUTTONS */
.room {
  display: inline-block;
  padding: 20px 30px;
  border: 1px solid #5a4632;
  color: #cfc6b8;
  text-decoration: none;
  background: #1a1a1a;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

/* GRUNGE EFFECT */
.room::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('https://www.transparenttextures.com/patterns/grunge-wall.png');
  opacity: 0.15;
  pointer-events: none;
}

/* HOVER = “TASTO MECCANICO” */
.room:hover {
  transform: translateY(2px);
  background: #2a1f17;
  border-color: #a16b3f;
  box-shadow: inset 0 0 15px rgba(0,0,0,1),
              0 0 10px rgba(255,140,0,0.2);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  font-size: 10px;
  opacity: 0.5;
}