@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap");
* {
  font-family: "VT323", monospace;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #d35400;
}
#gameContainer {
  position: relative;
  width: 100%;
  max-width: 400px;
}
#gameCanvas {
  border: 2px dashed #e67e22;
  max-width: 100%;
  height: auto;
}
.button {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #d35400;
  color: white;
  font-weight: bold;
  border: 2px dotted #e67e22;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.shareButtons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 600px;
  margin: 20px auto;
}

.shareButton {
  background-color: #d35400;
  border: 2px dotted #e67e22;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
}

.shareButton:hover {
  background-color: #d35400;
  transform: scale(1.05);
}

.shareButton:active {
  background-color: #d35400;
  transform: scale(0.98);
}

.shareButton[data-platform="whatsapp"] {
  background-color: #d35400;
}

.shareButton[data-platform="line"] {
  background-color: #d35400;
}

.shareButton[data-platform="twitter"] {
  background-color: #d35400;
}

.shareButton[data-platform="whatsapp"]:hover {
  background-color: #d35400;
}

.shareButton[data-platform="line"]:hover {
  background-color: #d35400;
}

.shareButton[data-platform="twitter"]:hover {
  background-color: #d35400;
}
#mainMenu,
#gameOverMenu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #d35400;
  padding: 20px;
  border-radius: 10px;
}
#gameOverMenu p {
  font-size: 1.3rem;
}
#mainMenu {
  width: 50%;
}
#gameOverMenu h2 {
  font-family: "Press Start 2P", system-ui;

  color: #fff;
  text-shadow: 1px 1px 0 #e67e22, -1px -1px 0 #e67e22, 2px -1px 0 #e67e22,
    -1px 4px 0 #e67e22;
}
h2,
p {
  color: #fff;
}
#customEmoji {
  width: 40px;
  text-align: center;
}
select {
  font-size: 18px;
  margin-bottom: 10px;
}
select,
input[type="text"] {
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  width: 40px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: all 0.3s ease;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"] {
  ::placeholder {
    color: #aaa;
  }
}

select:hover,
select:focus {
  outline: 2px dotted #e67e22;
}

input[type="text"]:focus {
  outline: 2px dotted #e67e22;
}
@media (max-width: 600px) {
  #gameContainer {
    width: 95%;
  }
}
