@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

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

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
  user-select: none;
}

/* Status Bar */
.status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 14px;
  z-index: 10;
}

/* Main Content */
.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.enter-text {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.enter-text:hover {
  opacity: 0.75;
  transform: scale(1.03);
}

/* URL Bar */
.url-bar {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1c1e;
  width: 92%;
  max-width: 380px;
  height: 52px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
  z-index: 10;
}

.url-text {
  flex: 1;
  text-align: center;
  font-size: 15px;
  color: #fff;
}