@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #1d1e22;
  overscroll-behavior: contain;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;           /* Vertically center canvas */
  align-items: center;
  min-height: 100vh;
  background-color: #1d1e22;
  position: relative;
  padding-bottom: 80px;             /* Leave space for buttons */
}

#canvas1 {
  background: #1d1e22;
  border: 5px solid #fff;
  max-width: 90vw;
  max-height: 90vh;
  font-size: 20px;
  display: block;
  margin-bottom: 16px;
  cursor: crosshair; /* or pointer, grab, etc. */

  box-shadow: 0 20px 30px rgba(0, 255, 195, 0.2), 
              0 10px 10px rgba(0, 255, 195, 0.1);  /* 👈 Soft glow */
  border-radius: 10px;

  
}


/* Controls Section */
.controls {
	margin-top: 8px;
  position: fixed;                  /* 👈 Pin to bottom of screen */
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 100;
  background: transparent;
  
}

/* Button Styles */
button {
  background: #00ffc3;
  color: #1d1e22;
  border: none;
  padding: 8px 12px;
  font-size: 10px;
  font-family: 'Press Start 2P', cursive;
  border-radius: 4px;
  box-shadow: 0 0 6px #00ffc3, 0 0 12px #00ffc3;
  transition: all 0.2s ease;
  min-width: 160px;
  text-align: center;
}

button:hover {
  background: #00e2ff;
  box-shadow: 0 0 10px #00e2ff, 0 0 18px #00e2ff;
  transform: scale(1.05);
}
button:disabled {
	background: #555;
	color: #999;
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.6;
	pointer-events: none;
  }
  

  
  .description {
    position: flex;
    bottom: 0;
    right:  0;
    
    color: #fff;
    font-size: 10px;
    font-family: 'Press Start 2P', cursive;
    background: transparent;
    pointer-events: none;
    
  
  }
  
  
#heart{
    
    margin: 0.4rem;
    font-size: larger;
        
animation: big 2s ease-in-out infinite;
    }
    @keyframes big {
      0%,
      25% {
        color: #e74c3c;
      }

      50%,
      75% {
         color: #3498db;
      }

      100% {
         color: #2ecc71;
      }
    }

    .custom-select select {
      appearance: none;
      background-color: #00ffc3;
      color: #1d1e22;
      border: none;
      padding: 8px 12px;
      font-size: 10px;
      font-family: 'Press Start 2P', cursive;
      border-radius: 4px;
      box-shadow: 0 0 6px #00ffc3, 0 0 12px #00ffc3;
      min-width: 160px;
      cursor: pointer;
      text-align: center;
    }
    
    /* Fix: Ensure options inside dropdown are visible */
    .custom-select select option {
      background-color: #1d1e22; /* Dark background */
      color: #00ffc3;            /* Neon text */
    }
    
    /* Optional hover effect on select itself */
    .custom-select select:hover {
      background: #00e2ff;
      box-shadow: 0 0 10px #00e2ff, 0 0 18px #00e2ff;
    }
    