Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --background-color: #f8f9fa;
+ --text-color: #2c3e50;
+ --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ --transition-speed: 0.3s;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ background: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem;
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo h1 {
+ font-size: 1.5rem;
+ font-weight: 700;
+ background: linear-gradient(45deg, #3498db, #2ecc71);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ #langToggle {
+ background: transparent;
+ border: 2px solid white;
+ color: white;
+ padding: 0.5rem 1rem;
+ border-radius: 20px;
+ cursor: pointer;
+ transition: var(--transition-speed);
+ }
+
+ #langToggle:hover {
+ background: white;
+ color: var(--primary-color);
+ }
+
+ .news-container {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .news-list {
+ list-style: none;
+ }
+
+ .news-item {
+ background: white;
+ border-radius: 8px;
+ padding: 1.5rem;
+ margin-bottom: 1rem;
+ box-shadow: var(--card-shadow);
+ transform: translateY(0);
+ transition: var(--transition-speed);
+ }
+
+ .news-item:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
+ }
+
+ .news-title {
+ font-size: 1.25rem;
+ margin-bottom: 0.5rem;
+ color: var(--primary-color);
+ }
+
+ .news-summary {
+ color: #666;
+ margin-bottom: 1rem;
+ }
+
+ .news-link {
+ color: var(--secondary-color);
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition-speed);
+ }
+
+ .news-link:hover {
+ text-decoration: underline;
+ }
+
+ .loading-spinner {
+ display: flex;
+ justify-content: center;
+ padding: 2rem;
+ }
+
+ .spinner {
+ width: 40px;
+ height: 40px;
+ border: 4px solid #f3f3f3;
+ border-top: 4px solid var(--secondary-color);
+ border-radius: 50%;
+ animation: spin 1s linear infinite;
+ }
+
+ @keyframes spin {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem 1rem;
+ margin-top: 2rem;
+ }
+
+ .footer-links {
+ list-style: none;
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition-speed);
+ }
+
+ .footer-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ @media (max-width: 768px) {
+ .logo h1 {
+ font-size: 1.2rem;
+ }
+
+ .news-item {
+ padding: 1rem;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ align-items: center;
+ gap: 1rem;
+ }
+ }