body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  html {
    scroll-behavior: smooth;
  }

  /* Game of Life Canvas Background */
  #gameOfLife {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  /* Navigation Bar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

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

  .nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .nav-brand:hover {
    color: #0066cc;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }

  .nav-link:hover {
    color: #0066cc;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 3rem 2rem; /* Top padding for navbar, bottom for spacing */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .container .photo,
  .container .bio {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
  }
  
  .container .photo {
    padding: 1rem;
    margin-right: 2rem;
  }
  
  .photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
  }
  
  .bio {
    max-width: 600px;
  }
  
  .bio h1 {
    margin-top: 0;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1a202c;
    line-height: 1.2;
  }
  
  .bio p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 400;
  }
  
  .bio p a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .bio p a:hover {
    color: #2c5aa0;
    text-decoration: underline;
  }
  
  .links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #3182ce;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .link-item:hover {
    color: #004499;
  }

  .link-item i {
    font-size: 1.2rem;
  }

  .news {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
  }
  
  .news h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  .news ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  .news li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a5568;
  }
  
  .news li a {
    color: #3182ce;
    font-weight: 500;
  }

  /* Publications Section */
  .publications {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
  }

  .publications h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .publication-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .publication {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .publication:last-child {
    border-bottom: none;
  }

  .pub-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

  .pub-title a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
  }

  .pub-title a:hover {
    text-decoration: underline;
  }

  .pub-authors {
    color: #4a5568;
    margin-bottom: 0.3rem;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .pub-venue {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
  }

  /* Highlighted author name */
  .author-highlight {
    font-weight: bold;
    color: #000;
  }

  /* Projects Section */
  .projects {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
  }

  .projects h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .project-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .project {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .project:last-child {
    border-bottom: none;
  }

  .project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .project-title {
    font-size: 1.05rem;
    font-weight: 600;
  }

  .project-title a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .project-title a:hover {
    text-decoration: underline;
  }

  .project-links {
    display: flex;
    gap: 0.5rem;
  }

  .project-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .project-links a:hover {
    text-decoration: underline;
  }

  .project-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
  }
