* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.shopping-bag {
  color: #3b82f6;
}

.shopping-bag i {
  width: 20px;
  height: 20px;
}

/* Main Content */
.main-content {
  margin-top: 70px;
}

/* Hero Section */
.hero {
  padding: 120px 0;
  position: relative;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 80px;
  line-height: 1.2;
}

.hero-description {
  max-width: 800px;
  margin-bottom: 60px;
  position: relative;
}

.hero-description p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  margin: 0;
}

/* Background Scattered Icons */
.bg-scattered {
  position: absolute;
  opacity: 0.15;
  z-index: 0;
  pointer-events: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bg-scattered:hover {
  opacity: 0.6;
  transform: scale(1.2) !important;
}

.bg-scattered i {
  width: 80px;
  height: 80px;
  color: #444;
  transition: color 0.3s ease;
}

/* Hero Background Icons */
.hero-bg-1 { left: 8%; top: 12%; transform: rotate(15deg); }
.hero-bg-1:hover i { color: #00ff88 !important; } /* Bright Green - Costa Rica */

.hero-bg-2 { right: 15%; top: 25%; transform: rotate(-22deg); }
.hero-bg-2:hover i { color: #0088ff !important; } /* Bright Blue - AI */

.hero-bg-3 { left: 25%; top: 45%; transform: rotate(38deg); }
.hero-bg-3:hover i { color: #ff8800 !important; } /* Bright Orange - Experiments */

.hero-bg-4 { right: 8%; top: 60%; transform: rotate(-12deg); }
.hero-bg-4:hover i { color: #aa44ff !important; } /* Bright Purple - Stanford */

.hero-bg-5 { left: 12%; top: 75%; transform: rotate(28deg); }
.hero-bg-5:hover i { color: #ff4444 !important; } /* Bright Red - Costa Rica mountains */

.hero-bg-6 { right: 25%; top: 15%; transform: rotate(-35deg); }
.hero-bg-6:hover i { color: #ff44aa !important; } /* Bright Pink - Ballet */

.hero-bg-7 { left: 35%; top: 20%; transform: rotate(18deg); }
.hero-bg-7:hover i { color: #88ff44 !important; } /* Bright Lime - Coffee */

.hero-bg-8 { right: 35%; bottom: 25%; transform: rotate(-28deg); }
.hero-bg-8:hover i { color: #44ffff !important; } /* Bright Cyan - Fashion */

/* Projects Background Icons */
.projects-bg-1 { left: 5%; top: 15%; transform: rotate(25deg); }
.projects-bg-1:hover i { color: #0088ff !important; } /* Bright Blue */

.projects-bg-2 { right: 12%; top: 35%; transform: rotate(-18deg); }
.projects-bg-2:hover i { color: #00ff88 !important; } /* Bright Green */

.projects-bg-3 { left: 18%; top: 65%; transform: rotate(42deg); }
.projects-bg-3:hover i { color: #aa44ff !important; } /* Bright Purple */

.projects-bg-4 { right: 8%; top: 70%; transform: rotate(-33deg); }
.projects-bg-4:hover i { color: #ff8800 !important; } /* Bright Orange */

.projects-bg-5 { left: 32%; top: 25%; transform: rotate(12deg); }
.projects-bg-5:hover i { color: #ff44aa !important; } /* Bright Pink */

.projects-bg-6 { right: 28%; top: 55%; transform: rotate(-25deg); }
.projects-bg-6:hover i { color: #ff4444 !important; } /* Bright Red */

/* Media Background Icons */
.media-bg-1 { left: 15%; top: 20%; transform: rotate(30deg); }
.media-bg-1:hover i { color: #0088ff !important; } /* Bright Blue */

.media-bg-2 { right: 20%; top: 45%; transform: rotate(-15deg); }
.media-bg-2:hover i { color: #00ff88 !important; } /* Bright Green */

.media-bg-3 { left: 8%; top: 65%; transform: rotate(20deg); }
.media-bg-3:hover i { color: #ff8800 !important; } /* Bright Orange */

.media-bg-4 { right: 10%; top: 25%; transform: rotate(-40deg); }
.media-bg-4:hover i { color: #aa44ff !important; } /* Bright Purple */

/* Things I Love Background Icons */
.love-bg-1 { left: 5%; top: 10%; transform: rotate(35deg); }
.love-bg-1:hover i { color: #44ffff !important; } /* Bright Cyan - Books */

.love-bg-2 { right: 15%; top: 20%; transform: rotate(-20deg); }
.love-bg-2:hover i { color: #88ff44 !important; } /* Bright Lime - Running */

.love-bg-3 { left: 20%; top: 40%; transform: rotate(15deg); }
.love-bg-3:hover i { color: #aa44ff !important; } /* Bright Purple - Coffee */

.love-bg-4 { right: 8%; top: 55%; transform: rotate(-30deg); }
.love-bg-4:hover i { color: #ff8800 !important; } /* Bright Orange - Music */

.love-bg-5 { left: 12%; top: 70%; transform: rotate(25deg); }
.love-bg-5:hover i { color: #ff44aa !important; } /* Bright Pink - Photography */

.love-bg-6 { right: 25%; bottom: 15%; transform: rotate(-18deg); }
.love-bg-6:hover i { color: #ff4444 !important; } /* Bright Red - Heart */

.love-bg-7 { left: 30%; top: 15%; transform: rotate(40deg); }
.love-bg-7:hover i { color: #ffff44 !important; } /* Bright Yellow - Star */

.love-bg-8 { right: 30%; top: 35%; transform: rotate(-25deg); }
.love-bg-8:hover i { color: #ff8844 !important; } /* Bright Orange - Sun */

.love-bg-9 { left: 8%; top: 25%; transform: rotate(18deg); }
.love-bg-9:hover i { color: #44ff88 !important; } /* Bright Green - Music */

/* Sections */
.section {
  padding: 80px 0;
  border-bottom: 1px solid #222;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.view-all {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.view-all:hover {
  color: #fff;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.project-card {
  background: #161616;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: #333;
}

.project-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.project-icon i {
  width: 24px;
  height: 24px;
  color: #3b82f6;
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.project-description {
  color: #888;
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  color: #888;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid #333;
}

.tag-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  min-width: 32px;
  height: 32px;
  padding: 8px;
}

.tag-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.tag-link i {
  width: 16px;
  height: 16px;
}

/* Media Section */
.media-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.media-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.media-item i {
  width: 16px;
  height: 16px;
  color: #888;
  flex-shrink: 0;
}

.media-title {
  flex: 1;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.media-title:hover {
  color: #3b82f6;
}

.media-source {
  color: #888;
  font-size: 14px;
}

.media-type {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
}

/* Things I Love Section */
.love-icon {
  color: #f59e0b;
}

.love-icon i {
  width: 24px;
  height: 24px;
}

.interests {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.interest-tag {
  background: #161616;
  border: 1px solid #222;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #888;
  transition: all 0.2s ease;
}

.interest-tag:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.interest-tag.featured {
  background: rgba(236, 72, 153, 0.1);
  border-color: #ec4899;
  color: #ec4899;
}

/* Footer */
.footer {
  padding: 60px 0;
  border-top: 1px solid #222;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: #888;
  transition: color 0.2s;
}

.social-link:hover {
  color: #fff;
}

.social-link i {
  width: 20px;
  height: 20px;
}

.copyright {
  color: #666;
  font-size: 14px;
}

/* Writing Page */
.page-content {
  padding: 120px 0;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.page-icon {
  color: #3b82f6;
}

.page-icon i {
  width: 24px;
  height: 24px;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-item {
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-item:hover {
  transform: translateX(10px);
}

.article-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.article-excerpt {
  color: #888;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #666;
  font-size: 14px;
}

.article-read-time {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .container,
  .nav-container {
    padding: 0 20px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .hero-description {
    margin-bottom: 40px;
  }

  .bg-scattered {
    display: none;
  }

  .nav-menu {
    gap: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card {
    padding: 25px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .interests {
    justify-content: center;
  }

  .page-title {
    font-size: 36px;
  }
}