Changed around line 1
+ :root {
+ --primary: #2d3436;
+ --secondary: #0984e3;
+ --accent: #00cec9;
+ --background: #ffffff;
+ --text: #2d3436;
+ --spacing: 2rem;
+ }
+
+ * {
+ 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);
+ background: var(--background);
+ }
+
+ .navbar {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ padding: 1rem var(--spacing);
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--secondary), var(--accent));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ position: relative;
+ padding: 0.5rem 0;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: var(--secondary);
+ transition: width 0.3s ease;
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ .hero {
+ height: 80vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: var(--spacing);
+ background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 206, 201, 0.1));
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--secondary), var(--accent));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .blog-grid {
+ padding: var(--spacing);
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .blog-grid h2 {
+ margin-bottom: 2rem;
+ text-align: center;
+ }
+
+ .posts {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .post-card {
+ background: white;
+ border-radius: 1rem;
+ overflow: hidden;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .post-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .post-image {
+ height: 200px;
+ background: linear-gradient(45deg, var(--secondary), var(--accent));
+ }
+
+ .post-content {
+ padding: 1.5rem;
+ }
+
+ .post-content time {
+ color: #666;
+ font-size: 0.9rem;
+ }
+
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: var(--spacing);
+ 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 ul {
+ list-style: none;
+ margin-top: 1rem;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ opacity: 1;
+ }
+
+ @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: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ position: fixed;
+ top: 60px;
+ right: -100%;
+ width: 100%;
+ height: calc(100vh - 60px);
+ background: white;
+ flex-direction: column;
+ align-items: center;
+ padding: 2rem;
+ transition: 0.3s;
+ }
+
+ .nav-links.active {
+ right: 0;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }