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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  color: #e8e8e8;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-bottom: 40px;
}

.header-content {
  opacity: 0.95;
}

.header-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a89f7f;
  margin-top: 12px;
}

/* Main content */
.main {
  background-color: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 2px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
}

/* Restaurant list */
.restaurant-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.restaurant-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.restaurant-item:hover {
  background-color: rgba(255, 215, 0, 0.04);
  padding-left: 28px;
  border-bottom-color: rgba(255, 215, 0, 0.3);
}

.restaurant-item:last-child {
  border-bottom: none;
}

.item-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  min-width: 24px;
  text-align: center;
  opacity: 0.8;
}

.item-name {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #e8e8e8;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.restaurant-item:hover .item-name {
  color: #d4af37;
}

.restaurant-item:hover .item-number {
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .header-title {
    font-size: 2.5rem;
  }

  .main {
    padding: 30px 20px;
  }

  .restaurant-item {
    padding: 14px 14px;
    gap: 16px;
  }

  .item-name {
    font-size: 1rem;
  }
}
