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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #1e1e1e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #2e2e2e;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.queue-number {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 15px;
}

p {
  font-size: 1em;
  margin-bottom: 30px;
}

.skip-button {
  background-color: #0a84ff;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.skip-button:hover {
  background-color: #007aff;
}

@media (max-width: 600px) {
  .queue-number {
    font-size: 2em;
  }
  
  h1 {
    font-size: 1.6em;
  }
  
  .skip-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}
