
/* Core Styling for AI POV Tool */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  padding: 0;
}
.pov-tool-container {
  max-width: 650px;
  margin: 2em auto;
  padding: 2em 1.5em;
  background: #fff;
  box-shadow: 0 6px 32px rgba(60,72,100,.15);
  border-radius: 18px;
}
h1 {
  text-align: center;
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 0.3em;
}
.subtitle {
  text-align: center;
  color: #4b5a86;
  margin-bottom: 1.4em;
}
label {
  display: block;
  margin: 1em 0 0.5em;
  font-weight: 500;
  color: #223;
}
select, button {
  width: 100%;
  padding: 0.5em 0.7em;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #c7d0e0;
  background: #f8fafc;
  margin-bottom: 1em;
}
select:focus, button:focus {
  border-color: #7ba9fa;
  outline: none;
}
.button-group {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  margin-top: 1.5em;
}
.button-group button {
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.7em;
  transition: 0.2s ease;
}
#generatePrompt {
  background: linear-gradient(90deg, #ffcb52, #ffc800, #ffb300);
  color: #222;
}
#sharePrompt {
  background: #e2e6f1;
  color: #363b47;
}
#randomize {
  background: linear-gradient(90deg, #5c5cff 70%, #7ba9fa 100%);
  color: #fff;
}
.prompt-output {
  background: #f8fafc;
  border-left: 4px solid #415dff;
  border-radius: 10px;
  padding: 1em;
  font-size: 1.05em;
  margin-top: 1em;
  white-space: pre-wrap;
  cursor: pointer;
}
.affiliate {
  text-align: center;
  margin-top: 2em;
  font-size: 0.95em;
}
.affiliate a {
  color: #218838;
  font-weight: bold;
  text-decoration: none;
}
.seo-description {
  margin-top: 3em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
  font-size: 0.98em;
  color: #223;
  line-height: 1.6;
}
.seo-description h2, .seo-description h3 {
  color: #333;
  font-weight: bold;
}
@media (max-width: 640px) {
  .pov-tool-container {
    margin: 1em;
    padding: 1.5em 1em;
  }
  h1 {
    font-size: 1.5em;
  }
}
