body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #a6e3ff 0%, #87ceeb 10%, #79b456 11%, #a8d08d 100%);
    height: 100vh;
    cursor: crosshair;
}

canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

#pixi-canvas {
    pointer-events: auto;
}

.glass-theme {
    background: rgba(255, 255, 255, 0.08);
    /* Clean white tint */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Subtle border */
    border-radius: 8px;
    /* Slightly sharper for professional feel */
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#watermark {
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 9999;
}
/*new watermark*/
/* From Uiverse.io by 0xnihilism */ 
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

.brutalist-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #000000;
  border-radius: 12px;
  padding: 0;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  position: relative;
  box-shadow: 4px 4px 0px #000000;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 60px;
  width: 60px;
  cursor: pointer;
}

.brutalist-button.github {
  background-color: #24292e;
}

.brutalist-button::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -150%;
  width: 300%;
  height: 300%;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.brutalist-button.github::before {
  background-color: #2f363d;
}


.brutalist-button:hover::before {
  transform: translateX(-50%) scale(1);
}

.brutalist-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px #000000;
  width: 160px;
  height: 80px;
}

.brutalist-button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.github-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 2px solid #ffffff;
}

.github-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.brutalist-button:hover .github-logo {
  animation: spin 5s linear infinite;
  width: 30px;
  height: 30px;
  top: 25%;
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  z-index: 2;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
}

.button-text span:first-child {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.button-text span:last-child {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.brutalist-button:hover .button-text {
  opacity: 1;
  transform: translateY(0);
}

.brutalist-button.github:hover .button-text {
  color: #ffffff;
}

.brutalist-button.github:hover .button-text span:last-child {
  color: #abb2bf;
}

.button-text a {
    color: #58a6ff;
    text-decoration: none;
}

.button-text a:hover {
    text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .brutalist-button:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000000;
  }
}




#time-display {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 10px;
    pointer-events: none;
    opacity: 0;
    z-index: 10000;
    text-align: center;
    min-width: 110px;
    scale: 0.95;
    transition: opacity 0.3s ease, scale 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

#time-display.visible {
    opacity: 1;
    scale: 1;
}

#time-display .day {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e2e9ff;
    /* Keeping the splash of color for day */
    margin-bottom: 1px;
}

#time-display .date {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.6;
    margin-bottom: 2px;
}

#time-display .time {
    font-size: 16px;
    font-weight: 800;
}