/* Global Styles */
body {
  background: #F2E9D8;
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #4F5B67;
}

h1, h2 {
  font-family: 'Nunito Sans', sans-serif;
}

/* Header */
.site-header {
  background: #4A90E2;
  color: white;
  padding-bottom: 20px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 30px 20px;
}

.hero-text h1 {
  font-size: 32px;
}

.hero-text p {
  font-size: 18px;
  max-width: 650px;
}

.hero-buttons {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
}

.btn.primary {
  background: #FFFFFF;
  color: #4A90E2;
}

.btn.secondary {
  background: #E3B045;
  color: #fff;
}

/* Main Sections */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.info-section {
  background: #FFF7EB;
  border-radius: 14px;
  padding: 20px;
  margin: 20px 0;
}

.section-intro {
  font-size: 16px;
}

.premium-block {
  border-left: 5px solid #E3B045;
}

.newsletter {
  border-left: 5px solid #4A90E2;
}

.small-note {
  font-size: 13px;
  color: #666;
}

/* Prompt Cards */
.prompt-wrapper h2 {
  margin-bottom: 5px;
}

.prompt-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.prompt-title {
  font-size: 22px;
  color: #4A90E2;
  margin: 0;
}

.prompt-purpose {
  font-size: 15px;
  margin-bottom: 8px;
}

.difficulty {
  background: #7DBF7F;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
}

.prompt-text {
  background: #FAFAFA;
  padding: 15px;
  border-radius: 10px;
  white-space: pre-wrap;
  font-size: 15px;
}

.copy-btn {
  margin-top: 15px;
  background: #4A90E2;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #357ABD;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #E7DDCB;
  font-size: 14px;
}

.footer-small {
  font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
