Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #6c5ce7;
+ --bg-color: #f5f6fa;
+ --text-color: #2d3436;
+ --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ --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;
+ background: var(--bg-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .top-nav {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: white;
+ box-shadow: var(--card-shadow);
+ z-index: 1000;
+ }
+
+ .logo h1 {
+ font-size: 1.5rem;
+ color: var(--accent-color);
+ font-weight: 800;
+ }
+
+ .search-bar input {
+ padding: 0.5rem 1rem;
+ border: none;
+ border-radius: 25px;
+ background: var(--bg-color);
+ width: 300px;
+ font-size: 1rem;
+ }
+
+ .nav-actions button {
+ background: none;
+ border: none;
+ cursor: pointer;
+ margin-left: 1rem;
+ transition: var(--transition);
+ }
+
+ .create-pin {
+ font-size: 2rem;
+ color: var(--accent-color);
+ }
+
+ .pins-grid {
+ margin-top: 80px;
+ padding: 2rem;
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1600px;
+ margin-inline: auto;
+ }
+
+ .pin {
+ background: white;
+ border-radius: 16px;
+ overflow: hidden;
+ box-shadow: var(--card-shadow);
+ transition: var(--transition);
+ }
+
+ .pin:hover {
+ transform: translateY(-4px);
+ box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
+ }
+
+ .pin-image {
+ width: 100%;
+ padding-top: 100%;
+ position: relative;
+ background: var(--primary-color);
+ overflow: hidden;
+ }
+
+ .pin-image pre {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 1rem;
+ margin: 0;
+ background: #282c34;
+ color: #abb2bf;
+ font-family: 'Fira Code', monospace;
+ font-size: 0.9rem;
+ overflow: auto;
+ }
+
+ .pin-content {
+ padding: 1rem;
+ }
+
+ .pin-meta {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 1rem;
+ }
+
+ .language {
+ background: var(--bg-color);
+ padding: 0.25rem 0.75rem;
+ border-radius: 15px;
+ font-size: 0.8rem;
+ }
+
+ .save-btn {
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ padding: 0.5rem 1rem;
+ border-radius: 20px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .save-btn:hover {
+ background: #5849c4;
+ }
+
+ footer {
+ padding: 2rem;
+ text-align: center;
+ background: white;
+ margin-top: 2rem;
+ }
+
+ .footer-nav a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: var(--transition);
+ }
+
+ .footer-nav a:hover {
+ color: var(--accent-color);
+ }
+
+ @media (max-width: 768px) {
+ .search-bar input {
+ width: 200px;
+ }
+
+ .pins-grid {
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
+ padding: 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .top-nav {
+ padding: 1rem;
+ }
+
+ .search-bar input {
+ width: 150px;
+ }
+
+ .pins-grid {
+ grid-template-columns: 1fr;
+ }
+ }