@font-face {
  font-family: "AngelBunny";
  src: url("https://files.catbox.moe/bmnfmu.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html, body {
  cursor: url('https://loser.gg/h_cursor'), auto;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-image: url("https://loser.gg/h_bg");
  background-color: #fce4ec;
}

a, button {
  cursor: url('https://loser.gg/h_cursor'), pointer !important;
}

.main-ui {
  position: relative;
  width: 900px;
  height: 450px;
  background-image: url('https://loser.gg/h_background832');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cute-logo {
  position: absolute;
  top: 35px;
  left: 71%;
  transform: translateX(-50%);
  width: 180px;
  animation: bounce 2s infinite ease-in-out;
  z-index: 5;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0px); }
  50% { transform: translate(-50%, -15px); }
}

.button-container {
  position: absolute;
  top: 245px;
  left: 180px; 
  display: flex;
  flex-direction: column;
  gap: 35px; 
  z-index: 10;
}

.button-container button {
  background: transparent;
  border: none;
  font-family: "AngelBunny", sans-serif;
  font-size: 16px;
  color: #ffdef4; 
  transition: color 0.3s ease;
}

.button-container button:hover {
  color: #936d75;
}

.content-area {
  position: absolute;
  top: 185px;
  left: 48%;
  width: 40%;
  text-align: center;
  font-family: "AngelBunny", sans-serif;
  color: #ffdef4;
  z-index: 10;
}

.tab-content {
  display: none;
  opacity: 0;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.commission-links, .social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 15px;
  margin-top: 15px;
}

.social-links {
  max-width: 360px; 
  margin-left: auto;
  margin-right: auto;
}

.commission-links a, .social-links a {
  display: inline-block;
  animation: iconBounce 2s infinite ease-in-out;
}

.commission-links img {
  width: 100px;
  height: auto;
}

.social-links img {
  width: 70px;
  height: auto;
}

.social-links a:nth-child(odd) { animation-delay: 0.1s; }
.social-links a:nth-child(even) { animation-delay: 0.3s; }

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}