Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --bg-color: #f8fafc;
+ --text-color: #1e293b;
+ --accent-color: #3b82f6;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--bg-color);
+ }
+
+ header {
+ background: white;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .login-btn {
+ background: var(--primary-color);
+ color: white !important;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ }
+
+ main {
+ margin-top: 80px;
+ padding: 2rem;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 0;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .upload-zone {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 3rem;
+ border: 2px dashed var(--accent-color);
+ border-radius: 10px;
+ background: white;
+ transition: all 0.3s ease;
+ cursor: pointer;
+ }
+
+ .upload-zone:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .upload-icon {
+ width: 60px;
+ height: 60px;
+ margin: 0 auto 1rem;
+ border-radius: 50%;
+ background: var(--bg-color);
+ position: relative;
+ }
+
+ .upload-arrow {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 30px;
+ height: 30px;
+ border: solid var(--primary-color);
+ border-width: 0 3px 3px 0;
+ padding: 3px;
+ transform: rotate(-135deg);
+ }
+
+ .select-files-btn {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 0.8rem 2rem;
+ border-radius: 25px;
+ font-size: 1rem;
+ cursor: pointer;
+ margin-top: 1rem;
+ transition: background 0.3s ease;
+ }
+
+ .select-files-btn:hover {
+ background: var(--secondary-color);
+ }
+
+ .features {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 0;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ footer {
+ background: white;
+ padding: 3rem 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ .footer-section a {
+ display: block;
+ color: var(--text-color);
+ text-decoration: none;
+ margin-bottom: 0.5rem;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .nav-links a {
+ margin: 0;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+ }