Changed around line 1
+ :root {
+ --primary-color: #1a1a1a;
+ --accent-color: #e63946;
+ --text-color: #333;
+ --bg-color: #ffffff;
+ --grid-gap: 2rem;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--bg-color);
+ }
+
+ /* Header & Navigation */
+ .top-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: var(--primary-color);
+ position: sticky;
+ top: 0;
+ z-index: 1000;
+ }
+
+ .logo {
+ color: white;
+ font-size: 1.5rem;
+ font-weight: 700;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 4rem 5%;
+ background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
+ }
+
+ .featured-story {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .featured-story h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .meta {
+ color: #666;
+ margin-bottom: 1rem;
+ }
+
+ .lead {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ }
+
+ .read-more {
+ display: inline-block;
+ padding: 0.75rem 1.5rem;
+ background: var(--accent-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 4px;
+ transition: var(--transition);
+ }
+
+ .read-more:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+ }
+
+ /* News Grid */
+ .news-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: var(--grid-gap);
+ padding: 4rem 5%;
+ }
+
+ .news-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .news-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 15px rgba(0,0,0,0.1);
+ }
+
+ .news-card h2 {
+ color: var(--accent-color);
+ font-size: 0.9rem;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ margin-bottom: 0.5rem;
+ }
+
+ .news-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .news-card a {
+ color: var(--primary-color);
+ text-decoration: none;
+ font-weight: 500;
+ display: inline-block;
+ margin-top: 1rem;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 4rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: var(--grid-gap);
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-section a:hover {
+ color: var(--accent-color);
+ }
+
+ .subscribe-form {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .subscribe-form input {
+ padding: 0.5rem;
+ border: none;
+ border-radius: 4px;
+ flex: 1;
+ }
+
+ .subscribe-form button {
+ padding: 0.5rem 1rem;
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .subscribe-form button:hover {
+ background: #d62839;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 2px;
+ background: white;
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--primary-color);
+ flex-direction: column;
+ padding: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .featured-story h1 {
+ font-size: 2rem;
+ }
+
+ .subscribe-form {
+ flex-direction: column;
+ }
+ }