@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
  --bg: #030712;
  --bg-alt: #060b1c;
  --panel: rgba(9, 12, 28, 0.85);
  --panel-strong: rgba(11, 15, 34, 0.95);
  --text: #f4f6ff;
  --muted: #9aa1c2;
  --border: rgba(78, 88, 138, 0.4);
  --accent1: #3b82f6;
  --accent2: #8b5cf6;
  --accent3: #ec4899;
  --gradient: linear-gradient(130deg, #3b82f6, #8b5cf6, #ec4899);
  --grad: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  --glow: 0 0 30px rgba(73, 94, 255, 0.35);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.08), transparent 45%), var(--bg);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.page-main {
  padding-top: 120px;
}
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(5, 7, 18, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 28px;
  height: 12px;
  border-radius: 999px;
  background: var(--gradient);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: inset 0 0 12px rgba(236, 72, 153, 0.3);
}
.btn,
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-pill {
  background: var(--gradient);
  color: var(--text);
  box-shadow: var(--glow);
}
.btn.primary {
  background: var(--gradient);
  color: var(--text);
  box-shadow: var(--glow);
}
.btn.primary:hover,
.btn-pill:hover {
  transform: translateY(-2px);
}
.btn.secondary {
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: var(--text);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: var(--text);
}
.btn-text {
  color: #a5b4ff;
  font-weight: 600;
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero {
  padding: 110px 0 70px;
  text-align: center;
  position: relative;
}
.page-hero .section-subtitle {
  max-width: 720px;
  margin: 0 auto;
}
.section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.gradient-heading,
.page-hero h1,
.section-header.center h2 {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.premium-hero .hero-grid {
  gap: 3rem;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.secondary-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: transparent;
}
.secondary-outline:hover {
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}
.gradient-orb {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 45%),
              radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.2), transparent 50%);
  filter: blur(40px);
  opacity: 0.8;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.ai-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  position: relative;
}
.floating-card {
  animation: floatCard 6s ease-in-out infinite;
}
.ai-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.ai-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ai-sample {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(6, 9, 24, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.ai-sample.response {
  border-color: rgba(236, 72, 153, 0.35);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}
.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.85rem;
}
.lead {
  color: var(--muted);
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-card {
  background: var(--panel);
  border-radius: 26px;
  padding: 1.8rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.ai-preview {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prompt-bubble,
.response-bubble {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(15, 19, 40, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.35);
}
.response-bubble {
  border-color: rgba(236, 72, 153, 0.35);
}
.mono {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.section {
  padding: 80px 0;
}
.section.dim {
  background: rgba(4, 7, 18, 0.8);
}
.section-header {
  margin-bottom: 2rem;
}
.section-header h2,
.section-header h1 {
  margin: 0 0 0.6rem;
}
.section-header p {
  color: var(--muted);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}
.cards-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tool-card,
.blog-card,
.contact-card,
.output-panel,
.tool-panel,
.info-card {
  background: var(--panel);
  border-radius: 24px;
  padding: 1.6rem;
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tool-card:hover,
.blog-card:hover,
.contact-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: var(--glow);
}
.tool-card p,
.blog-card p,
.info-card p {
  color: var(--muted);
}
.premium-tools .tool-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 25, 0.85);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.premium-tools .tool-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.tool-panel,
.output-panel {
  border-radius: 20px !important;
}
.tool-header-area {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tool-section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.tool-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 3px;
  border-radius: 2px;
  background: var(--grad);
  opacity: 0.5;
}
.tool-section-desc {
  color: var(--muted);
  max-width: 640px;
}
#prompt-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: 0.25s;
}
#prompt-input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.35);
}
.output-panel,
.result-output,
.result-output-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: 0.25s;
}
.output-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
button {
  transition: 0.25s;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}
#status-text {
  color: #9ec4ff !important;
  font-weight: 500;
  letter-spacing: 0.3px;
}
#status-text.loading::after {
  content: " •••";
  animation: blinkDots 1s infinite;
}
.tool-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tool-icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  z-index: -1;
}
.tool-icon::before,
.tool-icon::after {
  display: block;
}
.youtube-icon {
  background: #ff0000;
}
.youtube-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}
.instagram-icon {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
.instagram-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid #fff;
  position: relative;
}
.instagram-icon::after {
  content: '';
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 22px;
}
.tiktok-icon {
  background: #111;
}
.tiktok-icon::before {
  content: '🎵';
  font-size: 18px;
  transform: translateY(-1px);
}
.linkedin-icon {
  background: #0a66c2;
}
.linkedin-icon::before {
  content: 'in';
  color: #fff;
  font-weight: 700;
  font-family: Arial, sans-serif;
  font-size: 16px;
}
.x-icon {
  background: #000;
}
.x-icon::before {
  content: 'X';
  color: #fff;
  font-size: 15px;
  font-family: Arial, sans-serif;
}
.facebook-icon {
  background: #1877f2;
}
.facebook-icon::before {
  content: 'f';
  color: #fff;
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}
.seo-icon {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.seo-icon::before {
  content: '✎';
  color: #fff;
  font-size: 16px;
}
.legal-icon {
  background: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.legal-icon::before {
  content: '§';
  color: #fff;
  font-size: 17px;
}
.tool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.8rem;
  color: var(--muted);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: rgba(11, 17, 40, 0.85);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.narrow {
  max-width: 780px;
}
.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-form input,
contact-form textarea,
.tool-panel textarea,
.tool-panel select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(6, 9, 24, 0.9);
  color: var(--text);
  font-size: 1rem;
}
.contact-form input:focus,
contact-form textarea:focus,
.tool-panel textarea:focus,
.tool-panel select:focus {
  outline: none;
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.3);
}
.contact-form label,
.tool-panel label {
  font-weight: 600;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer {
  background: #06080f;
  padding: 28px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-highlights {
  position: relative;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.feature-grid.trio {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.feature-card {
  background: rgba(6, 9, 24, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.feature-card.glass-card {
  background: rgba(255, 255, 255, 0.04);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.how-it-works .step-card {
  text-align: left;
}
.section-header.center {
  text-align: center;
}
.seo-card {
  background: rgba(11, 15, 34, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.blog-grid .blog-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.blog-grid .blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.45);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: 0.25s;
  padding: 2px 4px;
  border-radius: 4px;
}
.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-powered {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.output-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.status-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}
.status-line strong {
  color: var(--text);
}
.status-line strong.loading::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #60a5fa;
  border-right-color: #ec4899;
  margin-left: 10px;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
.result-output {
  flex: 1;
  border-radius: 14px;
  padding: 1.2rem;
  min-height: 180px;
  white-space: pre-wrap;
  color: var(--text);
}
.error-text {
  color: #f87171;
  min-height: 20px;
}
.tool-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-strip {
  background: rgba(8, 10, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.filter-pill {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(4, 7, 18, 0.8);
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  transition: border 0.2s, color 0.2s, box-shadow 0.2s;
}
.filter-pill.active,
.filter-pill:hover {
  border-color: rgba(236, 72, 153, 0.6);
  color: var(--text);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}
.legal-copy h2 {
  margin-top: 2rem;
}
.legal-card {
  max-width: 900px;
  margin: 0 auto;
}
.legal-card h2 {
  margin-top: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.cta-panel {
  text-align: center;
  padding: 3rem;
  border-radius: 24px;
}
.blog-date {
  color: var(--muted);
  font-size: 0.9rem;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: floatBlob 35s infinite ease-in-out;
  z-index: 0;
}
.blob-one {
  width: 380px;
  height: 380px;
  background: var(--grad);
  top: -80px;
  left: -120px;
}
.blob-two {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.6), transparent 60%);
  bottom: -60px;
  right: -80px;
  animation-delay: 5s;
}
.blob-three {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 65%);
  top: 10%;
  left: -10%;
}
.blob-four {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45), transparent 60%);
  top: -5%;
  right: -5%;
  animation-delay: 12s;
}
.premium-hero .container,
.feature-highlights .container,
.how-it-works .container,
.seo-block .container,
#featured-tools .container {
  position: relative;
  z-index: 1;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes floatBlob {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes blinkDots {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 4%;
    background: rgba(6, 8, 18, 0.95);
    flex-direction: column;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: var(--glow);
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.2s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-toggle {
    display: flex;
  }
  .btn-pill {
    display: none;
  }
  .footer-links-group {
    flex-direction: column;
  }
  .tool-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card-clean {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-email {
  font-size: 20px;
  color: #60a5fa;
  font-weight: 600;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 14px;
}

.premium-card {
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
  border-radius: 18px;
  padding: 22px;
}

.helper-text {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: -5px;
  margin-bottom: 12px;
}

.enhanced-select {
  padding-left: 10px;
}

.divider {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  margin: 12px 0;
}

.examples-box {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.examples-title {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.examples-list {
  font-size: 0.85rem;
  opacity: 0.7;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.auto-textarea {
  resize: none;
  overflow-y: hidden;
}

.success-glow {
  box-shadow: 0 0 15px rgba(0,255,150,0.4) !important;
}

.btn.danger {
  background: #ff3860;
  color: #fff;
}
