Changed around line 1
+ :root {
+ --primary: #2a6bff;
+ --secondary: #ff6b2a;
+ --dark: #1a1a1a;
+ --light: #ffffff;
+ --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Inter', system-ui, sans-serif;
+ }
+
+ body {
+ line-height: 1.6;
+ color: var(--dark);
+ overflow-x: hidden;
+ }
+
+ .hero-section {
+ background: var(--gradient);
+ color: var(--light);
+ padding: 2rem 5%;
+ min-height: 80vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ background: linear-gradient(to right, #fff, #ffffffaa);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--light);
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .cta-button {
+ background: var(--light);
+ color: var(--primary) !important;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ margin-top: 5rem;
+ gap: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ font-weight: 800;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .primary-button {
+ background: var(--light);
+ color: var(--primary);
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ font-weight: 600;
+ border: none;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .features-grid {
+ padding: 5rem 10%;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 15px;
+ background: #fff;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ display: block;
+ }
+
+ .title-generator {
+ background: #f8f9fa;
+ padding: 5rem 10%;
+ text-align: center;
+ }
+
+ .generator-container {
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ #titleInput {
+ width: 100%;
+ padding: 1rem;
+ border: 2px solid #eee;
+ border-radius: 10px;
+ margin-bottom: 1rem;
+ font-size: 1.1rem;
+ }
+
+ .results-container {
+ margin-top: 2rem;
+ display: grid;
+ gap: 1rem;
+ }
+
+ .examples-section {
+ padding: 5rem 10%;
+ }
+
+ .examples-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .example-card {
+ background: #fff;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ footer {
+ background: var(--dark);
+ color: var(--light);
+ padding: 3rem 10%;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--light);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .features-grid {
+ grid-template-columns: 1fr;
+ }
+ }