body {
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-item {
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: white;
  color: #2c3e50;
}

.publication-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  color: #2c3e50 !important;
  text-shadow: none;
}

.publication-authors {
  font-family: 'Google Sans', sans-serif;
  font-weight: 500;
  color: #2c3e50;
}

.publication-authors a {
  color: #3498db !important;
  text-decoration: none;
}

.publication-authors a:hover {
  text-decoration: underline;
}

.publication-conference {
  color: #7f8c8d;
  font-weight: 600;
}

.publication-links {
  margin-top: 2rem;
}

.link-block {
  margin: 0.5rem;
}

.link-block a {
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.link-block a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Sections */
.section {
  padding: 3rem 1.5rem;
}

.section:nth-child(even) {
  background-color: #f8f9fa;
}

.title {
  color: #2c3e50;
  font-weight: 700;
}

.subtitle {
  color: #7f8c8d;
}

/* Images */
img {
  transition: transform 0.3s ease;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}

img:hover {
  transform: scale(1.02);
}

/* Make figures larger */
.section img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  margin: 1rem auto;
  display: block;
}

/* Specific styling for larger figures */
.content img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
}

/* Make columns wider for larger figures */
.section .columns .column {
  max-width: none !important;
}

/* Increase container max width */
.container.is-max-desktop {
  max-width: 1400px !important;
}

/* Video */
video {
  transition: all 0.3s ease;
}

video:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Notifications */
.notification {
  border-left: 4px solid #3273dc;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 2rem 0;
}

.footer a {
  color: #3498db;
}

.footer a:hover {
  color: #5dade2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
  
  .publication-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Code blocks */
pre {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
}

code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}
