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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 24px;
}

.logo svg {
  flex-shrink: 0;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 32px;
  color: #1a202c;
  margin-bottom: 10px;
}

.subtitle {
  color: #718096;
  margin-bottom: 30px;
  font-size: 16px;
}

input, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #667eea;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

button:hover {
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.remaining {
  text-align: center;
  color: #718096;
  margin-top: 16px;
  font-size: 14px;
}

#results h2 {
  font-size: 24px;
  margin: 30px 0 20px 0;
  color: #1a202c;
}

.headline {
  padding: 16px;
  background: #f7fafc;
  border-left: 4px solid #667eea;
  margin-bottom: 12px;
  border-radius: 4px;
  color: #2d3748;
}

#paywall {
  text-align: center;
  padding: 40px 0;
}

#paywall h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a202c;
}

#paywall p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 12px;
}

#paywall strong {
  color: #667eea;
  font-size: 32px;
}
