html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(45deg, #a045c2 0%, #8A2BE2 25%, #9932CC 50%, #A855F7 75%, #a045c2 100%);
  background-size: 1px 1px;
  animation: retro-slide 25s linear infinite;
}

@keyframes retro-slide {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

body {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.container {
  width: 960px;
  height: 560px;
  background: none;
  position: relative;
  overflow: visible;
  font-family: 'Press Start 2P', monospace;
}

.headline {
  color: #38fa31;
  font-size: 68px;
  line-height: 1.05;
  font-family: 'Press Start 2P', monospace;
  text-shadow: 6px 8px 0px #292929;
  text-align: center;
  letter-spacing: 3px;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
  user-select: none;
}

.headline span {
  display: block;
  margin-bottom: 20px;
}

/* Card + question row */
.row {
  position: absolute;
  top: 190px;
  left: 80px;
  width: 800px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 20px 40px;
}

/* Pixelated Card */
.pixel-card {
  width: 250px;
  height: 150px;
  background: #f42528;
  border: 9px solid #2d2d2d;
  border-radius: 18px 12px 32px 24px/28px 12px 20px 24px;
  box-shadow: 8px 10px 0px #292929;
  position: relative;
  margin: 30px 60px 30px 30px;
  user-select: none;
  transform: rotate(-2deg);
}

.pixel-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 26px;
  background: #ab2126;
  border-radius: 4px 4px 0 0;
}

/* Yellow dots */
.dots {
  position: absolute;
  left: 25px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(5, 22px);
  grid-template-rows: repeat(2, 22px);
  gap: 10px 11px;
}

.dot {
  width: 16px;
  height: 16px;
  background: #ffe42f;
  border-radius: 3px;
  box-shadow: 1px 1px 0 #b89f19;
  display: block;
}

/* Question mark */
.question {
  width: 144px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 148px;
  font-family: 'Press Start 2P', monospace;
  color: #ffe42f;
  text-shadow: 7px 9px 0px #292929;
  margin: 30px 30px 30px 60px;
  user-select: none;
}

/* Phone number box */
.phone-box {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 86px;
  background: #fff;
  border: 5px solid #222;
  border-radius: 8px;
  box-shadow: 6px 9px 0px #292929;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.phone-number {
  font-size: 44px;
  color: #2641d9;
  font-family: 'Press Start 2P', monospace;
  text-shadow: 3px 5px 0 #3c3c7a;
  user-select: text;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.phone-number:hover {
  color: #3a52ff;
  text-shadow: 3px 5px 0 #4c4c8a;
  transform: scale(1.02);
}

.phone-number:active {
  transform: scale(0.98);
}

/* 90s Retro Footer */
.retro-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(to bottom, #C0C0C0, #808080);
  border-top: 2px solid #FFFFFF;
  border-bottom: 1px solid #404040;
  font-family: 'MS Sans Serif', system-ui, Arial, sans-serif;
  font-size: 11px;
  color: #000000;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 1000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.status-text {
  margin-right: auto;
  font-weight: normal;
}

.retro-time {
  font-weight: bold;
  border: 1px inset #C0C0C0;
  padding: 2px 8px;
  background: #F0F0F0;
  font-size: 10px;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.5), inset -1px -1px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive tweaks */
@media (max-width: 700px) {
  body {
    padding-bottom: 26px; /* Height of the retro footer */
  }
  .container {
    max-width: 98vw;
    height: auto;
    min-height: calc(100vh - 26px); /* Subtract footer height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4vw 0;
  }
  .headline {
    position: relative;
    top: auto;
    font-size: 8vw;
    text-shadow: 0.085em 0.11em 0px #292929;
    margin: 0 0 6vw 0;
  }
  .row {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 4vw;
  }
  .pixel-card {
    margin: 3vw 0;
    transform: none;
  }
  .question {
    margin: 3vw 0;
  }
  .phone-box {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 92%;
    margin: 3vw auto 0 auto;
    min-height: 38px;
    height: 14vw;
  }
}

/* Small phones */
@media (max-width: 500px) {
  .container {
    padding: 0;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
  }
  .headline {
    font-size: 9vw;
    margin-top: 6vw;
  }
  .row {
    margin-bottom: 5vw;
  }
  .pixel-card {
    width: 50vw;
    height: 28vw;
    max-height: 90px;
    min-height: 36px;
    border-width: 2vw;
  }
  .pixel-card::before {
    top: 10%;
    height: 18%;
  }
  .dots {
    left: 11%;
    bottom: 5%;
    gap: 1.5vw;
  }
  .dot {
    width: 2.5vw;
    height: 2.5vw;
    min-width: 4px;
    min-height: 4px;
  }
  .question {
    width: 30vw;
    height: 30vw;
    font-size: 25vw;
  }
  .phone-box {
    height: 15vw;
    min-height: 34px;
    margin-top: 4vw;
  }
  .phone-number {
    font-size: 6vw;
    text-shadow: 2px 2px 0 #3c3c7a;
  }
}

/* Tiny screens (old iPhone SE etc) */
@media (max-width: 350px) {
  .headline { font-size: 12vw; }
  .phone-number { font-size: 7vw; }
}
