Changed around line 1
+ :root {
+ --primary: #4f46e5;
+ --primary-light: #6366f1;
+ --primary-dark: #4338ca;
+ --text: #1f2937;
+ --text-light: #6b7280;
+ --bg: #f9fafb;
+ --card-bg: #ffffff;
+ --border: #e5e7eb;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background-color: var(--bg);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-light));
+ color: white;
+ padding: 2rem 1rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background-color: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 2rem auto 0;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ opacity: 0.9;
+ margin-bottom: 2rem;
+ }
+
+ main {
+ flex: 1;
+ max-width: 1200px;
+ width: 100%;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .recent-entries, .quick-actions {
+ margin-bottom: 3rem;
+ }
+
+ h2 {
+ font-size: 1.5rem;
+ margin-bottom: 1.5rem;
+ color: var(--text);
+ }
+
+ .entry-grid, .action-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .entry-card {
+ background-color: var(--card-bg);
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .entry-card:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .entry-card h3 {
+ font-size: 1.25rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .entry-card p {
+ color: var(--text-light);
+ margin-bottom: 1rem;
+ }
+
+ .text-button {
+ color: var(--primary);
+ font-weight: 600;
+ text-decoration: none;
+ }
+
+ .text-button:hover {
+ text-decoration: underline;
+ }
+
+ .action-grid {
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ }
+
+ .action-card {
+ background-color: var(--card-bg);
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-decoration: none;
+ color: var(--text);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .action-card:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .action-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ footer {
+ background-color: var(--card-bg);
+ padding: 2rem 1rem;
+ border-top: 1px solid var(--border);
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ }
+
+ .footer-links a:hover {
+ color: var(--primary);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .entry-grid, .action-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+ }