@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+10+Charted&display=swap');

#pixelCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

#pixelCanvas.hidden {
  display: none;
}

#pixelMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

#pixelMask.hidden {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.neon-banner {
  width: 100%;
  padding: 4px 10px;
  text-align: center;
  background-color: #c0c0c0;
  border-bottom: 2px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
  z-index: 5000;
  flex-shrink: 0;
  box-shadow: inset 1px 1px 0 #ffffff, inset -1px -1px 0 #0a0e27;
}

.window-wrapper {
  flex: 1;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  position: relative;
  background-color: rgba(255, 255, 255, 0.541);
}

.xp-window {
  width: 600px;
  background-color: #c0c0c0;
  border: 2px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
  box-shadow: 
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #0a0e27;
  display: flex;
  flex-direction: column;
  font-family: 'MS Sans Serif', Arial, sans-serif;
}

.xp-window.pixelated {
  filter: blur(8px) brightness(0.95);
}

.xp-titlebar {
  background: linear-gradient(90deg, #000080 0%, #1084d7 100%);
  color: white;
  padding: 2px 2px 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  font-weight: bold;
  font-size: 11px;
}

.xp-title {
  letter-spacing: 0.5px;
}

.xp-buttons {
  display: flex;
  gap: 2px;
  margin-right: 2px;
}

.xp-btn {
  width: 16px;
  height: 14px;
  padding: 0;
  border: 1px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
  background-color: #c0c0c0;
  color: black;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.xp-btn:active {
  border-color: #808080 #dfdfdf #dfdfdf #808080;
}

.xp-btn.close:hover {
  background-color: #ff0000;
  color: white;
}

.xp-content {
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.container {
  z-index: 10000;
  position: relative;
  background: transparent;
}

.title {
    padding: 0;
  margin: 0;
  text-align: center;
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 24px;
}

p {
    padding: 0;
  margin: 0;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  color: #000;
}

#clickMeButton {
  padding: 4px 12px;
  border: 2px solid;
  border-color: #dfdfdf #808080 #808080 #dfdfdf;
  background-color: #c0c0c0;
  color: black;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
  min-width: 75px;
}

#clickMeButton:active {
  border-color: #808080 #dfdfdf #dfdfdf #808080;
}

#clickMeButton:hover {
  background: linear-gradient(135deg, #dcdcdc, #c0c0c0);
}

.button-text {
  margin: 0;
  padding: 0;
}
  text-align: center;
  font-family: "Jersey 10 Charted", system-ui;
  font-weight: 400;
  font-style: normal;   
}


#clickMeButton {
margin-top: 1vh;
  font-size: 8px;
  cursor: pointer;
  border-radius: 0px;
}
.button-text {
  font-size: 8px;
  font-family: "arial", system-ui;
  font-weight: 400;
  font-style: normal;   
}

/* Mobile/iPhone responsive */
@media (max-width: 768px) {
  .xp-window {
    width: 90vw;
    max-height: 80vh;
    max-width: 100%;
  }
}
