body {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  background: radial-gradient(#1c1c1c, #000);
  color: #f5f5f5;
  text-align: center;
}
h1 {
  font-size: 3em;
  color: hotpink;
  text-shadow: 2px 2px #000;
}
.container {
  padding: 2rem;
}
.hidden {
  display: none;
}
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #111;
  padding: 2rem;
  border: 3px solid hotpink;
}
button {
  background: hotpink;
  color: #000;
  padding: 1rem 2rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
#skip-intro {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
}
.can-showcase img {
  width: 50%;
  display: block;
  margin: 0 auto;
}
