Changed around line 1
+ :root {
+ --primary-color: #FF6B6B;
+ --secondary-color: #4ECDC4;
+ --background-color: #f8f9fa;
+ --text-color: #2d3436;
+ --border-radius: 12px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ padding: 2rem;
+ color: white;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
+ }
+
+ .translator-container {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: white;
+ border-radius: var(--border-radius);
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ }
+
+ .input-controls {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .language-selector {
+ padding: 0.8rem;
+ border: 2px solid #e0e0e0;
+ border-radius: var(--border-radius);
+ font-size: 1rem;
+ width: 200px;
+ }
+
+ .text-input {
+ width: 100%;
+ height: 150px;
+ padding: 1rem;
+ border: 2px solid #e0e0e0;
+ border-radius: var(--border-radius);
+ font-size: 1rem;
+ resize: vertical;
+ transition: var(--transition);
+ }
+
+ .text-input:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ .button-group {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 0.8rem 1.5rem;
+ border: none;
+ border-radius: var(--border-radius);
+ font-size: 1rem;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .primary-button {
+ background-color: var(--primary-color);
+ color: white;
+ }
+
+ .secondary-button {
+ background-color: #e0e0e0;
+ color: var(--text-color);
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(255,107,107,0.3);
+ }
+
+ .output-container {
+ margin-top: 2rem;
+ padding: 1rem;
+ background: #f8f9fa;
+ border-radius: var(--border-radius);
+ min-height: 100px;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .feature-card {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: var(--border-radius);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--text-color);
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ .translator-container {
+ margin: 1rem;
+ padding: 1rem;
+ }
+
+ .button-group {
+ flex-direction: column;
+ }
+
+ .language-selector {
+ width: 100%;
+ }
+ }