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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  background: #e8e8e8;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.business-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.question {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.star {
  font-size: 48px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s, transform 0.1s;
  user-select: none;
}

.star:hover,
.star.active {
  color: #FFB800;
  transform: scale(1.1);
}

.form-container {
  display: none;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.form-container.visible {
  display: flex;
}

.form-title {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
}

input:focus, textarea:focus {
  border-color: #FFB800;
}

textarea {
  height: 100px;
  resize: none;
}

button {
  background: #FFB800;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #e0a500;
}

.google-link {
  text-align: center;
  font-size: 12px;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 4px;
}

.confirmation {
  display: none;
  color: #2e7d32;
  font-size: 15px;
  padding: 16px;
  background: #f0fff0;
  border-radius: 8px;
}

.confirmation.visible {
  display: block;
}