* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0078d7;
  color: #ffffff;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: none; /* Hides cursor for fullscreen BSOD feel */
  user-select: none;
}

.bsod-container {
  max-width: 1100px;
  width: 80%;
  padding: 20px;
}

.emoticon {
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 35px;
}

.message {
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 30px;
}

.percentage {
  font-size: 1.85rem;
  font-weight: 300;
  margin-bottom: 50px;
}

.details-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.qr-code {
  background: #ffffff;
  padding: 8px;
  display: inline-block;
  flex-shrink: 0;
}

.qr-code img {
  display: block;
}

.support-info {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-info p {
  margin-bottom: 8px;
}

.support-info .small-text {
  font-size: 0.85rem;
  opacity: 0.9;
}