* {
  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(0deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25)), 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;
}