body, html {
  margin: 0;
  padding: 0;
  font-family: 'Exo', sans-serif;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.container {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 600px;
  width: 95%;
  backdrop-filter: blur(6px);
}

h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00bcd4;
}

table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}

td {
  padding: 18px 12px;
  font-size: 20px;
  color: #e0e0e0;
  text-align: left;
  vertical-align: middle;
}

td:first-child {
  font-weight: 600;
  color: #ffd700;
  width: auto;
  white-space: nowrap;
}

a {
  color: #00bcd4;
  text-decoration: none;
  word-break: break-word;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.coming {
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
  color: #ffffff;
}

.footer {
  margin-top: 30px;
  font-size: 16px;
  color: #bbbbbb;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #444;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: 4px;
}

.progress-fill {
  height: 100%;
  background-color: #00c8ff;
  transition: width 0.4s ease;
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 30px;
  }

  table {
    border: none;
  }

  tr {
    display: block;
    margin-bottom: 20px;
  }

  td {
    display: flex;
    justify-content: flex-start;
    padding: 8px 0;
    width: 100%;
    font-size: 18px;
  }

  td:first-child {
    width: 35%;
    flex-shrink: 0;
  }

  td:last-child {
    width: 65%;
    word-break: break-word;
  }

  .coming {
    font-size: 20px;
  }

  .footer {
    font-size: 14px;
  }
}