Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --background: #fafafa;
+ --text-color: #1f2937;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text-color);
+ line-height: 1.6;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ header {
+ text-align: center;
+ padding: 4rem 1rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 0.5rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .tagline {
+ font-size: 1.2rem;
+ opacity: 0.9;
+ }
+
+ .generator-container {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 2rem;
+ }
+
+ .idea-display {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ margin-bottom: 2rem;
+ min-height: 150px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ font-size: 1.25rem;
+ transition: var(--transition);
+ }
+
+ .generate-button {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 0.5rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: var(--transition);
+ margin: 0 auto;
+ }
+
+ .generate-button:hover {
+ transform: translateY(-2px);
+ background: var(--secondary-color);
+ box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
+ }
+
+ .button-icon {
+ font-size: 1.2rem;
+ }
+
+ .categories {
+ display: flex;
+ gap: 1rem;
+ flex-wrap: wrap;
+ justify-content: center;
+ padding: 2rem;
+ }
+
+ .category-pill {
+ background: white;
+ padding: 0.5rem 1.5rem;
+ border-radius: 2rem;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .category-pill:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ }
+
+ footer {
+ margin-top: auto;
+ padding: 2rem;
+ text-align: center;
+ background: white;
+ box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ footer nav {
+ margin-top: 1rem;
+ }
+
+ footer a {
+ color: var(--primary-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: var(--transition);
+ }
+
+ footer a:hover {
+ color: var(--secondary-color);
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(-20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2rem; }
+ .generator-container { padding: 1rem; }
+ .idea-display { padding: 1.5rem; }
+ }