*{
  margin: 0;
  padding:0;
  box-sizing:border-box;
}
body {
  background:#000;
  overflow: hidden;
}
a{
  color:#fff;
  text-decoration:none;
}
#canvas1{
  border: 5px solid #000;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4d79bc;
  max-width:100%;
  max-height:100%;
  font-family: "Bangers", cursive;
}

#copyright{
  position:absolute;
  top: 79%;
  left: 50%;
  opacity:0.3;
  font-size:10px;
  transform: translate(-50%, -50%);
  max-width:100%;
  max-height:100%;
  color:#cecece;
}

#layer1,#layer2,#layer3,#layer4, #player, #angler1, #angler2, #lucky, #projectile, #gears, 
#hivewhale, #drone,#smokeExplosion, #fireExplosion, #bulbwhale, #moonfish, #shield, #fireball, #stalker, #razorfin {
  display:none
}

/* Instructions Overlay */
#instructionsOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/*#instructionsBox {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid #fff;
}
*/
#instructionsBox {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 40px 60px 40px;
  border-radius: 20px;
  width: 1000px;
  height: 500px;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 5px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
#instructionsBox h1 {
  font-family: "Bangers", cursive;
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.instructions-content {
  background: rgba(255, 255, 255, 0.1);
  /*padding: 20px;*/
  border-radius: 10px;
  margin-bottom: 30px;
  color: #fff;
}

.instructions-content p {
  font-size: 18px;
  margin: 15px 0;
  font-family: Arial, sans-serif;
}

.instructions-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.instructions-content li {
  font-size: 16px;
  margin: 8px 0;
  font-family: Arial, sans-serif;
}

#startButton {
  font-family: "Bangers", cursive;
  font-size: 28px;
  padding: 10px 40px;
  background: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 10px auto 10px auto;
}
/*
#startButton {
  font-family: "Bangers", cursive;
  font-size: 32px;
  padding: 15px 50px;
  background: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}*/

#startButton:hover {
  background: #ff5252;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#startButton:active {
  transform: scale(0.95);
}

#instructionsOverlay.hidden {
  display: none;
}

#canvas1.hidden {
  display: none;
}

