body {
  font-family: 'Noto Sans', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-attachment: fixed;
}

/* Hero Section Enhancements */
.hero {
  background: linear-gradient(135deg, #8b9de8 0%, #9b7eb8 100%);
  color: white;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero .title {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero .publication-authors {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.1rem;
}

.hero .publication-authors a {
  color: white !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.hero .publication-authors a:hover {
  text-decoration-color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


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

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

/* Enhanced Button Styles */
.button.is-rounded {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-weight: 600;
  background: white !important;
  color: #667eea !important;
}

.button.is-rounded:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f9fa !important;
}

.button.is-rounded:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dnerf {
  font-variant: small-caps;
}


.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;
}

/* Section Enhancements */
.section {
  background: white;
  margin: 2rem auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  padding: 3rem 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.section:first-of-type {
  margin-top: -3rem;
}

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

.section .title {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section .title.is-3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.section .title.is-4 {
  color: #4a5568;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

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

.publication-venue {
    color: #555;
    width: 100%;
    font-weight: bold;
    text-align: center;
}

.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;
}

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

.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;
  padding: 1rem 0;
}

.results-carousel .item {
  margin: 10px;
  overflow: hidden;
  border: none;
  border-radius: 15px;
  padding: 0;
  font-size: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background: white;
}

.results-carousel .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.results-carousel video {
  margin: 0;
}

.results-carousel img {
  transition: transform 0.3s ease;
}

.results-carousel .item:hover img {
  transform: scale(1.02);
}

/* Video and Image Enhancements */
video {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

video:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.has-text-centered img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  max-width: 100%;
  height: auto;
}

.has-text-centered img:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}


.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;
}

/* BibTeX Section */
#BibTeX {
  background: #f8f9fa;
}

#BibTeX pre {
  background: #2d3748;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

#BibTeX code {
  color: #68d391;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

/* Footer Enhancement */
.footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
}

.footer .content {
  color: rgba(255, 255, 255, 0.9);
}

.footer a {
  color: white;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.footer a:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Abstract Text Enhancement */
.content.has-text-justified {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

.content.has-text-justified p {
  text-align: justify;
}

/* Responsive Improvements */
@media screen and (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }

  .section {
    margin: 1rem;
    padding: 2rem 1rem;
    border-radius: 15px;
  }

  .hero .title.is-1 {
    font-size: 2rem !important;
  }
}
