Changed around line 1
+ :root {
+ --primary-color: #2d5ff3;
+ --secondary-color: #7b95ff;
+ --background-color: #f8f9ff;
+ --text-color: #2c3e50;
+ --border-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;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ background: white;
+ box-shadow: 0 2px 15px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 1rem 4rem;
+ text-align: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ /* Upload Container */
+ .upload-container {
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ .drop-zone {
+ padding: 3rem;
+ background: white;
+ border: 2px dashed var(--secondary-color);
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .drop-zone:hover {
+ border-color: var(--primary-color);
+ background: #fafbff;
+ }
+
+ .upload-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .file-input {
+ display: none;
+ }
+
+ /* Results Section */
+ .results {
+ max-width: 800px;
+ margin: 2rem auto;
+ background: white;
+ border-radius: var(--border-radius);
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ overflow: hidden;
+ }
+
+ .tabs {
+ display: flex;
+ border-bottom: 1px solid #eee;
+ }
+
+ .tab {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ background: none;
+ cursor: pointer;
+ font-size: 1rem;
+ transition: var(--transition);
+ }
+
+ .tab.active {
+ background: var(--primary-color);
+ color: white;
+ }
+
+ .tab-panel {
+ display: none;
+ padding: 1rem;
+ }
+
+ .tab-panel.active {
+ display: block;
+ }
+
+ textarea {
+ width: 100%;
+ min-height: 200px;
+ padding: 1rem;
+ border: 1px solid #eee;
+ border-radius: var(--border-radius);
+ resize: vertical;
+ }
+
+ .copy-btn {
+ margin-top: 1rem;
+ padding: 0.5rem 1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .copy-btn:hover {
+ background: var(--secondary-color);
+ }
+
+ /* Features Section */
+ .features {
+ padding: 4rem 1rem;
+ background: white;
+ }
+
+ .feature-grid {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ background: var(--background-color);
+ border-radius: var(--border-radius);
+ transition: var(--transition);
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Footer */
+ footer {
+ background: white;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-nav {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-nav a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-nav a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Utilities */
+ .hidden {
+ display: none;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ background: none;
+ border: none;
+ font-size: 1.5rem;
+ cursor: pointer;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ box-shadow: 0 2px 15px rgba(0,0,0,0.1);
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .footer-nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }