Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ margin: 0;
+ padding: 0;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 100px 0;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .subtitle {
+ font-size: 1.25rem;
+ margin-bottom: 40px;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary-color);
+ padding: 12px 24px;
+ border-radius: 8px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .features {
+ padding: 80px 0;
+ }
+
+ .features h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 30px;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 30px;
+ border-radius: 12px;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 15px;
+ }
+
+ .demo {
+ padding: 80px 0;
+ background: white;
+ }
+
+ .demo h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 2rem;
+ }
+
+ .demo-box {
+ max-width: 800px;
+ margin: 0 auto;
+ background: var(--background-color);
+ padding: 30px;
+ border-radius: 12px;
+ box-shadow: var(--card-shadow);
+ }
+
+ textarea {
+ width: 100%;
+ min-height: 150px;
+ padding: 15px;
+ border: 2px solid #e2e8f0;
+ border-radius: 8px;
+ font-size: 1rem;
+ margin-bottom: 20px;
+ resize: vertical;
+ }
+
+ #process-button {
+ background: var(--primary-color);
+ color: white;
+ padding: 12px 24px;
+ border: none;
+ border-radius: 8px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ #process-button:hover {
+ background: var(--secondary-color);
+ }
+
+ #output-text {
+ margin-top: 20px;
+ padding: 20px;
+ background: white;
+ border-radius: 8px;
+ min-height: 100px;
+ border: 2px solid #e2e8f0;
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 40px 0;
+ text-align: center;
+ }
+
+ footer nav {
+ margin-top: 20px;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ margin: 0 15px;
+ transition: opacity 0.3s ease;
+ }
+
+ footer a:hover {
+ opacity: 0.8;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }