body {
  font-family: 'Noto Sans', sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Modern hero section styling */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-body {
  position: relative;
  z-index: 1;
}

/* Enhanced title styling */
.publication-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern section styling */
.section {
  background: white;
  margin: 0;
  padding: 4rem 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

/* Enhanced button styling */
.external-link {
  background: linear-gradient(45deg, #333333, #555555) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
  padding: 12px 24px !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.external-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
  color: white !important;
  background: linear-gradient(45deg, #444444, #666666) !important;
}

/* Enhanced author links */
.publication-authors a {
  color: #4a9eff !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 2px 4px;
  border-radius: 4px;
}

.publication-authors a:hover {
  background: rgba(74, 158, 255, 0.2);
  text-decoration: none !important;
}

/* Modern card styling for content */
.content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

/* Enhanced image styling */
.container img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* Visual results section enhancement */
.results-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 3rem 0;
}

/* Enhanced link blocks */
.link-block {
  margin: 0.5rem;
  display: inline-block;
}

/* Improved publication links section */
.publication-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Enhanced author section */
.publication-authors {
  margin: 1.5rem 0;
  line-height: 1.6;
}

/* Better spacing for affiliations */
.author-block {
  margin: 0.5rem 0;
  display: block;
}

/* Enhanced method image styling */
.method-image {
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.method-image:hover {
  transform: scale(1.02);
}

/* Add subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-body {
  animation: fadeInUp 0.8s ease-out;
}

.section {
  animation: fadeInUp 0.6s ease-out;
}

/* Enhanced card hover effects */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Fixed height for card headers */
.card-header {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Better typography for headings */
.title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Enhanced button spacing */
.external-link {
  margin: 0.5rem;
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .publication-title {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .external-link {
    padding: 10px 20px !important;
    font-size: 0.9rem;
  }
  
  .publication-links {
    flex-direction: column;
    align-items: center;
  }
  
  .link-block {
    width: 100%;
    text-align: center;
  }
  
  .content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .publication-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 1.5rem 0;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}


.footer .icon-link {
    font-size: 25px;
    color: #000;
}

.link-block a {
    margin-top: 5px;
    margin-bottom: 5px;
}

.is-smallcaps {
  font-variant: small-caps;
}


.author-block {
  display: inline-block;
}

.author-portrait {
  overflow: hidden;
  width: 128px;
  height: 128px;
  font-size: 0;
  margin: auto;
}
.author-portrait img {
    border-radius: 50%;
    width: 140px;
    position: relative;
}

.author-portrait .depth {
}


.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}


.publication-title {
}

.publication-banner {
  max-height: parent;

}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {
}

.publication-title {
    font-family: 'Google Sans', sans-serif;
}

.publication-authors {
    font-family: 'Google Sans', sans-serif;
}

.publication-venue {
    color: #555;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

.publication-authors a {
   color: hsl(204, 86%, 53%) !important;
}

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

.publication-banner img {
}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}

/*
.results-carousel {
  overflow: hidden;
}
*/

.slick-prev {

}

.results-carousel > div {
  text-align: center;
}

.results-carousel .results-item {
  display: inline-block;
  width: fit-content;
  overflow: hidden;
  padding: 0;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}


.interpolation-panel {
  background: #f5f5f5;
  border-radius: 10px;
}

.interpolation-panel .interpolation-image {
  width: 100%;
  border-radius: 5px;
}

.interpolation-video-column {
}

.interpolation-panel .slider {
  margin: 0 !important;
}

.interpolation-panel .slider {
  margin: 0 !important;
}

#interpolation-image-wrapper {
  width: 100%;
}
#interpolation-image-wrapper img {
  border-radius: 5px;
}


.level-set-slices {
  width: 100%;
  height: 250px;
  border: 1px solid #eee;
  border-radius: 20px;
}

.level-set-shapes {
  font-size: 0;
  padding-left: 5%;
}
.level-set-shapes img {
  width: 30%;
}
.level-set-interpolate {
  width: 100%;
}
.level-set-ox-shapes img {
  width: 24%;
}

.content model-viewer {
 margin-bottom: 1em;
}

.hyper-space-wrapper {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 20px;
}

.hyper-space-axis {
  padding: 5px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
}

.hyper-space {
  width: 100%;
  padding-bottom: calc(100% - 7%);
  box_sizing: border-box;
  touch-action: none;

  background-image: url(../figures/hyper_log_prob.png);
  background-size: contain;
  border-radius: 10px;
}

.hyper-space-cursor {
  width: 7%;
  padding-bottom: calc(7% - 6px);
  background: #29e;
  border-radius: 50%;
  border: 3px solid #fff;
}

.hyper-grid-wrapper{
  width: 95%;
  padding-bottom: 95%;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #29e;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.hyper-grid-rgb {
  width: 100%;
  height: 100%;
  overflow: hidden;

  position: absolute;
}

.hyper-grid-rgb img {
  position: relative;
  height: 2000%;
  width: 2000%;
  max-width: none !important;
}
