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

a {
  text-decoration: none;
}

body {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100svh;
  font-size: 20px

}

.background {
  background-image:
    linear-gradient(180deg,
      rgba(0,0,0,0.22) 0%,
      rgba(0,0,0,0.22) 34%,
      rgba(0,0,0,0.34) 58%,
      rgba(0,0,0,0.22) 100%),
    radial-gradient(circle at center 48%,
      rgba(0,0,0,0.22) 0%,
      rgba(0,0,0,0.10) 36%,
      rgba(0,0,0,0.18) 68%,
      rgba(0,0,0,0.10) 100%),
    url('../images/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
}

.page-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
.main-column{
  margin-top:200px;
}

.user-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.page-content a {
  text-decoration: none;
}

.header-logo {
  display: flex;
  position: absolute;
  top: 40px;
  right: 40px;
}

.user-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-name {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 700;
}

.user-account-name {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 400;
}

.location-info {
  margin-top: 40px;
}

#time-in-current-location {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}

.current-location {
  display: flex;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
}

#location-name {
  font-weight: 700;
  margin-left: 4px;
}

.user-status {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.user-status::before {
  display: none;
  content: '';
  position: absolute;
  background-image: url("../images/status.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 10px;
  left: -15px;
}

.user-status.available::before {
  display: block;
}

.separator {
  background-image: url("../images/separator.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 2px;
  height: 19px;
}



.respond-time {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}

.clock {
  content: '';
  background-image: url(../images/clock.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.send-button {
  display: flex;
  margin-top: 120px;
  justify-content: center;
  align-items: center;
  max-width: 390px;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px;
  padding: 16px 32px 16px 32px;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #00aff0;
}

.btn-text {
  font-weight: 600;
  color: #FFFFFF;
}

.of-icon {
  margin-right: 10px;
}

.countdown-block {
  margin-top: 16px;
}

.discount {
  color: #ff0000;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}


@media screen and (max-width: 600px) {
  #time-in-current-location {
    width: 100%;
    max-width: 330px;
    font-size: 14px;
  }

  .send-button {
    max-width: 343px;
  }

  .header-logo {
    top: 16px;
    right: 16px;
  }

  .user-info {
    margin-top: 150px;
  }
}
.promo-section {
  background-color: #111;
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  color: white;
  font-family: sans-serif;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.progress-container {
  background-color: #333;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.progress-bar {
  height: 100%;
  width: 98%;
  /* Initial width */
  background: repeating-linear-gradient(45deg,
      #ffc107,
      #ffc107 10px,
      #ffdb58 10px,
      #ffdb58 20px);
  animation: moveStripes 1s linear infinite;
  border-radius: 6px 0 0 6px;
}

@keyframes moveStripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 40px 0;
  }
}


.progress-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffc107;
  font-weight: bold;
}

.promo-message {
  font-size: 16px;
  margin-bottom: 20px;
  color: #eee;
  animation: bounceY 1.5s ease-in-out infinite;
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


.promo-button {
  background-color: #fffc00;
  color: black;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.5);
  transition: background 0.3s ease;
}

.promo-button:hover {
  background-color: #fff000;
}

.promo-text{
    margin-top: 2px;
    font-size: 20px;
    font-weight: 400;
}

/* --- Readability & visual polish --- */
.user-name,
.user-account-name,
.location-info,
#time-in-current-location,
.current-location,
.respond-time,
#available,
#location-name {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 1px 2px rgba(0, 0, 0, 0.9);
}

.user-name {
  letter-spacing: 0.5px;
  font-size: clamp(34px, 7vw, 48px);
  line-height: 1.05;
}

.user-account-name {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
}

.location-info {
  font-weight: 700;
}

#time-in-current-location {
  padding: 0 12px;
  font-weight: 700;
}

.send-button {
  min-height: 64px;
  border-radius: 12px;
  background: linear-gradient(180deg, #12bdf5 0%, #00a8e8 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 4px 0 rgba(0, 83, 125, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.send-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 4px 0 rgba(0, 83, 125, 0.55);
}

.send-button:active {
  transform: translateY(2px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    0 2px 0 rgba(0, 83, 125, 0.55);
}

.btn-text {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

@media screen and (max-width: 600px) {
  .background {
    background-image:
      linear-gradient(180deg,
        rgba(0,0,0,0.16) 0%,
        rgba(0,0,0,0.24) 32%,
        rgba(0,0,0,0.38) 58%,
        rgba(0,0,0,0.24) 100%),
      radial-gradient(circle at center 48%,
        rgba(0,0,0,0.42) 0%,
        rgba(0,0,0,0.30) 40%,
        rgba(0,0,0,0.14) 100%),
      url('../images/bg.jpg');
  }

  .main-column {
    padding: 0 16px;
  }

  .send-button {
    max-width: 360px;
    width: calc(100vw - 48px);
  }
}


/* Softer version */
.user-name,
.user-account-name,
.location-info,
#time-in-current-location,
.current-location,
.respond-time,
#available,
#location-name,
.btn-text{
  text-shadow:none !important;
}
