body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #2e1a28, #3e1635, #600f4e);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  border: none;
}

.diplomats {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100vmax;
  height: auto;
  max-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  display: flex;
  align-self: center;
  justify-self: center;
}

.header {
  z-index: 100;
  position: absolute;
  background: linear-gradient(135deg, #2e1a1a, #3e1616, #600f0f);
  top: 0;
  font-size: 3rem;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  opacity: 0.8;
  border-radius: 10px;
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 20px;
}

.container {
  z-index: 100;
  background: linear-gradient(135deg, #2e1a1a, #3e1616, #600f0f);
  max-width: 800px;
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  opacity: 0.8;
  border-radius: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

#countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 70px;
}

#countdown span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

#countdown small {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer {
  font-size: 1rem;
  margin-top: 20px;
  opacity: 0.8;
}

@media screen and (max-width: 500px) {
  .diplomats {
    width: 100% !important;
    height: auto;
    position: absolute;
    top: 200px;
  }
  .header {
    width: 100% !important;
    max-height: 250px;
    padding: 10px 20px;
  }
  h1 {
    font: 2rem arial, sans-serif;
  }
  h2 {
    font: 1.2rem arial, sans-serif;
  }
  .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  #countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
  }

  #countdown div {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 40px;
  }
}
