Changed around line 1
+ :root {
+ --primary: #6366f1;
+ --primary-dark: #4f46e5;
+ --text: #1f2937;
+ --background: #ffffff;
+ --gray-light: #f3f4f6;
+ --gray: #9ca3af;
+ --radius: 12px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ /* Header & Navigation */
+ header {
+ background: var(--background);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 2rem 4rem;
+ text-align: center;
+ background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 0.8s ease;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ opacity: 0.9;
+ animation: fadeInUp 0.8s ease 0.2s forwards;
+ opacity: 0;
+ }
+
+ /* Generator Section */
+ .generator {
+ padding: 4rem 0;
+ background: var(--gray-light);
+ }
+
+ .generator-grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .input-section {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ label {
+ font-weight: 500;
+ }
+
+ input, select {
+ padding: 0.75rem;
+ border: 2px solid var(--gray);
+ border-radius: var(--radius);
+ font-size: 1rem;
+ transition: var(--transition);
+ }
+
+ input:focus, select:focus {
+ border-color: var(--primary);
+ outline: none;
+ }
+
+ .primary-btn {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 1rem;
+ border-radius: var(--radius);
+ font-size: 1rem;
+ font-weight: 500;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .primary-btn:hover {
+ background: var(--primary-dark);
+ transform: translateY(-2px);
+ }
+
+ .result-card {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ /* Examples Section */
+ .examples {
+ padding: 4rem 0;
+ }
+
+ .examples-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .example-card {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .example-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--gray-light);
+ padding: 4rem 0;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: 2fr 1fr;
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: var(--text);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-section a:hover {
+ color: var(--primary);
+ }
+
+ /* Animations */
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ font-size: 1.5rem;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ padding: 1rem;
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .generator-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .footer-content {
+ grid-template-columns: 1fr;
+ }
+ }