body {
  margin: 0;
  padding: 0;
  background: url('frogged.png') repeat;
  background-color: #27ae60;
  background-size: 100px;
  font-family: 'Courier New', monospace;
  animation: moveBackground 30s linear infinite;
  cursor: url('cursor-cat.png') 16 16, auto;
}

button {
  cursor: pointer; /* Jadi tangan saat hover di button */
}


@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 0;
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 2px solid #333;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.modal img {
  max-width: 100%;
}

.modal button {
  margin-top: 15px;
  padding: 10px 20px;
  border: 2px solid #333;
  background: #2ecc71;
  color: white;
  font-family: 'Courier New', monospace;
  cursor: pointer;
}

.modal button:hover {
  background: #2ecc71;
}

.gary-card {
  background: white;
  border: 5px solid #2ecc71; /* biru tua */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  max-width: 300px;
  margin: 20px auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  font-family: 'Courier New', monospace;
}

.gary-card img {
  max-width: 100%;
  margin: 10px 0;
}

.gary-card button {
  background: #2ecc71;
  border: 2px solid #01a3a4;
  color: white;
  padding: 10px 20px;
  font-family: 'Courier New', monospace;
  cursor: pointer;
}

.gary-card button:hover {
  background: #27ae60;
}

.card {
  background: white;
  border: 5px solid #01a3a4;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  max-width: 320px;
  margin: 20px auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  font-family: 'Courier New', monospace;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.social-buttons button {
  background: #2ecc71;
  color: white;
  border: 2px solid #01a3a4;
  padding: 8px 16px;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  border-radius: 5px;
}

.social-buttons button:hover {
  background: #27ae60;
}

/*.address-box {*/
/*  background: #2ecc71;*/
/*  color: white;*/
/*  padding: 10px;*/
/*  border-radius: 10px;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*}*/

/*.address-box span {*/
/*  background: #27ae60;*/
/*  padding: 5px 10px;*/
/*  border-radius: 5px;*/
/*  font-weight: bold;*/
/*}*/

/*.address-box button {*/
/*  background:#27ae60;*/
/*  color: white;*/
/*  border: none;*/
/*  padding: 5px 12px;*/
/*  font-family: 'Courier New', monospace;*/
/*  cursor: pointer;*/
/*  border-radius: 5px;*/
/*}*/

/*.address-box button:hover {*/
/*  background: #27ae60;*/
/*}*/
.address-box {
  background: #2ecc71;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 90%;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

.address-box .label {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 18px;
}

.address-box .value {
  word-break: break-all;
  font-size: 16px;
  margin-bottom: 10px;
}

.address-box .copy-button {
  background: white;
  color: #2ecc71;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  border: none;
}

.address-box .copy-button:hover {
  background: #ecf0f1;
}

#garyCat {
  width: 150px;
  transition: 0.3s;
  position: fixed;
  bottom: 0;
  left: 10%;
  transform: translateX(-50%);
}



#garyCat:hover {
  content: url('frog-surprised.png');
}

.social-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2ecc71; /* Same as button background */
  color: white;
  text-decoration: none;
  border: 2px solid #01a3a4; /* Your red border */
  border-radius: 5px;
  font-family: monospace;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}

.social-btn:hover {
  background-color: #2ecc71; /* Optional hover effect */
}

.floating-frogs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* supaya tidak ganggu klik */
  z-index: -1; /* biar di belakang */
  overflow: hidden;
}

.frog {
  position: absolute;
  width: 60px;
  opacity: 0.8;
  animation: floatLeft linear infinite;
}

@keyframes floatLeft {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100px);
  }
}
