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


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

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

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

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

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

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  padding: 20px;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}

.slider-pagination .slider-page {
  background: #000000;
}

.eql-cntrb { 
  font-size: smaller;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.reconstruction-indicator {
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 25px auto;
    width: 75%;
    border: 2px solid #dee2e6;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.reconstruction-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

.icon-container {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #6f42c1;
    position: relative;
    z-index: 2;
}

.icon-container i {
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.icon-container i:hover {
    transform: scale(1.2) rotate(10deg);
    color: #e83e8c;
}

/* 可爱的小星星动画 */
.icon-container i::after {
    content: '✨';
    position: absolute;
    font-size: 0.8rem;
    top: -8px;
    right: -8px;
    animation: twinkle 2s infinite;
}

.icon-container i:nth-child(2)::after {
    content: '⭐';
    animation-delay: 0.5s;
}

.icon-container i:nth-child(3)::after {
    content: '🌟';
    animation-delay: 1s;
}

.reconstruction-text {
    font-style: normal;
    color: #495057;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.reconstruction-text::before {
    content: '🚀 ';
}

.reconstruction-text::after {
    content: ' 🎬';
}

.progress-container {
    width: 60%;
    height: 8px;
    background: #dee2e6;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar {
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #6f42c1, #e83e8c);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite alternate;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shine 1s infinite;
}

.status-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.status-text::before {
    content: '💫 ';
}

/* 添加一些漂浮的可爱元素 */
.floating-emoji {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.3;
    z-index: 1;
}

.floating-emoji:nth-child(1) { content: '🔮'; top: 20px; left: 30px; animation: float 6s infinite; }
.floating-emoji:nth-child(2) { content: '🎪'; top: 40px; right: 40px; animation: float 8s infinite 1s; }
.floating-emoji:nth-child(3) { content: '🎨'; bottom: 30px; left: 40px; animation: float 7s infinite 2s; }

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes progress {
    0% { width: 30%; }
    100% { width: 70%; }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .reconstruction-indicator {
        width: 90%;
        padding: 40px 20px;
    }
    
    .icon-container {
        font-size: 2.2rem;
    }
    
    .progress-container {
        width: 80%;
    }
    
    .floating-emoji {
        display: none; /* 在小屏幕上隐藏漂浮元素 */
    }
}
