Changed around line 1
+ :root {
+ --bg-primary: #121212;
+ --bg-secondary: #1e1e1e;
+ --text-primary: #ffffff;
+ --text-secondary: #b3b3b3;
+ --accent: #64ffda;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ background-color: var(--bg-primary);
+ color: var(--text-primary);
+ line-height: 1.6;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ background-color: rgba(18, 18, 18, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 5%;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--accent);
+ }
+
+ .nav-links a {
+ color: var(--text-primary);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ section {
+ padding: 5rem 10%;
+ min-height: 100vh;
+ }
+
+ .hero {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .project-filters {
+ margin: 2rem 0;
+ display: flex;
+ gap: 1rem;
+ flex-wrap: wrap;
+ }
+
+ .filter-btn {
+ padding: 0.5rem 1rem;
+ background: transparent;
+ border: 1px solid var(--accent);
+ color: var(--text-primary);
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .filter-btn.active {
+ background: var(--accent);
+ color: var(--bg-primary);
+ }
+
+ .projects-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .project-card {
+ background: var(--bg-secondary);
+ padding: 1.5rem;
+ border-radius: 8px;
+ transition: transform 0.3s ease;
+ }
+
+ .project-card:hover {
+ transform: translateY(-5px);
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ background: var(--bg-secondary);
+ border: none;
+ border-radius: 4px;
+ color: var(--text-primary);
+ }
+
+ button {
+ padding: 1rem 2rem;
+ background: var(--accent);
+ border: none;
+ border-radius: 4px;
+ color: var(--bg-primary);
+ cursor: pointer;
+ transition: opacity 0.3s ease;
+ }
+
+ button:hover {
+ opacity: 0.9;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--bg-secondary);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: flex;
+ flex-direction: column;
+ gap: 5px;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: var(--text-primary);
+ }
+
+ section {
+ padding: 5rem 5%;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+ }