:root {
  --mmpb-primary: #5861ff;
  --mmpb-secondary: #eef1ff;
  --mmpb-dark: #11152f;
  --mmpb-accent: #ff7ba7;
  --mmpb-muted: #6b7190;
  --mmpb-card-shadow: 0 16px 36px -28px rgba(17, 21, 47, 0.28);
}

body {
  font-family: 'Noto Sans', sans-serif;
  background: #fbfcff;
  color: var(--mmpb-dark);
  line-height: 1.6;
}

a {
  color: inherit;
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108, 114, 147, 0.12);
  box-shadow: 0 12px 30px -18px rgba(17, 21, 47, 0.4);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar .navbar-item {
  color: var(--mmpb-dark);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.navbar .navbar-item:hover {
  color: var(--mmpb-primary);
  transform: translateY(-1px);
}

.navbar .navbar-item.is-title {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mmpb-primary);
}

.navbar-burger span {
  background-color: var(--mmpb-dark);
}

.navbar-menu {
  align-items: center;
}

.navbar-start {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.navbar-end .navbar-item {
  font-size: 0.95rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.main-hero {
  background: linear-gradient(135deg, rgba(88, 97, 255, 0.9), rgba(170, 180, 255, 0.85));
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.main-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.18), transparent 45%);
  pointer-events: none;
}

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

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

.hero-tagline {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.75rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  border-radius: 18px;
  box-shadow: var(--mmpb-card-shadow);
  padding: 1.6rem;
}

.author-card {
  display: inline-block;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.publication-authors a {
  color: #3140ff !important;
}

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

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

.author-card .publication-authors {
  margin-bottom: 0.35rem;
}

.author-card .affiliations {
  color: var(--mmpb-muted);
  font-size: 1rem;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-actions .button {
  min-width: 140px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px -14px rgba(17, 21, 47, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(17, 21, 47, 0.5);
}

.hero-actions .button.is-dark {
  background: linear-gradient(135deg, #2f355a, #131937);
  border: none;
}

.whats-new {
  background: transparent;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.news-card {
  margin-top: 1.5rem;
  padding: 1.75rem 2rem;
  text-align: left;
  max-height: 220px;
  overflow-y: auto;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.news-date {
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  color: var(--mmpb-primary);
  background: rgba(88, 97, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.news-body {
  color: var(--mmpb-dark);
}

.teaser {
  background: transparent;
  padding-bottom: 3.2rem;
  font-family: 'Google Sans', sans-serif;
}

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

.teaser-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.teaser-card img {
  border-radius: 16px;
  box-shadow: 0 20px 45px -30px rgba(17, 21, 47, 0.5);
}

.teaser-card .subtitle {
  margin-top: 1.6rem;
  color: var(--mmpb-muted);
}

.abstract-section {
  padding-top: 3.2rem;
  padding-bottom: 3.5rem;
}

.abstract-card {
  margin: 0 auto;
  padding: 2rem 2.4rem;
  text-align: left;
  color: var(--mmpb-dark);
}

.abstract-card p + p {
  margin-top: 1.15rem;
}

.hero.is-light {
  background: transparent;
  background-color: transparent;
}

.section {
  background: transparent;
}

.results-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.6rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 255, 0.92));
  border: 1px solid rgba(88, 97, 255, 0.14);
  box-shadow: 0 18px 34px -28px rgba(17, 21, 47, 0.32);
}

.filter-controls {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.filter-controls .button {
  border-radius: 999px;
  font-weight: 600;
  border: none;
  background: rgba(88, 97, 255, 0.12);
  color: var(--mmpb-dark);
  transition: transform 0.2s ease, background 0.2s ease;
}

.filter-controls .button.active,
.filter-controls .button:hover {
  background: var(--mmpb-primary);
  color: #fff;
  transform: translateY(-1px);
}

.filter-search {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(88, 97, 255, 0.08);
  border: 1px solid rgba(88, 97, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.filter-search .icon {
  color: var(--mmpb-muted);
}

.filter-search .input {
  border: none;
  background: transparent;
  box-shadow: none;
  min-width: 200px;
  padding-left: 0;
  font-weight: 500;
}

.filter-search .input:focus {
  box-shadow: none;
}

.filter-search .input::placeholder {
  color: rgba(17, 21, 47, 0.45);
}

.sort-hint {
  margin-bottom: 1rem;
  color: var(--mmpb-muted);
}


.table-card {
  margin-top: 1.5rem;
  padding: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 255, 0.98) 100%);
  border: 1px solid rgba(88, 97, 255, 0.12);
  box-shadow: 0 20px 38px -28px rgba(17, 21, 47, 0.28);
}

.table-card .table-container {
  padding: 1.1rem 1.4rem 1.4rem;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 520px;
  overscroll-behavior: contain;
}

.table-card .table-container::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.table-card .table-container::-webkit-scrollbar-track {
  background: transparent;
}

.table-card .table-container::-webkit-scrollbar-thumb {
  background: rgba(88, 97, 255, 0.25);
  border-radius: 999px;
}

.table-card .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.data-table thead {
  background: transparent;
  color: var(--mmpb-dark);
}

.data-table thead th {
  border: none;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--mmpb-dark);
  padding: 0.9rem 1.1rem;
}

.data-table thead tr.group-header th {
  background: linear-gradient(135deg, rgba(106, 114, 255, 0.16), rgba(106, 114, 255, 0.04));
  border-bottom: 1px solid rgba(88, 97, 255, 0.22);
  text-align: center;
}

.data-table thead tr.group-header th.group-label {
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(17, 21, 47, 0.75);
}

.data-table thead tr.group-header th.model-header {
  text-align: left;
  padding-left: 1.35rem;
  vertical-align: middle;
}

.data-table thead tr:last-child th {
  background: #f5f7ff;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-align: center;
  border-bottom: 1px solid rgba(88, 97, 255, 0.16);
}


.data-table tbody tr {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.data-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.92);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(240, 242, 255, 0.65);
}

.data-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px -20px rgba(17, 21, 47, 0.35);
  background: rgba(106, 114, 255, 0.14);
}

.data-table td {
  border-color: rgba(88, 97, 255, 0.1);
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.data-table td:first-child {
  font-weight: 600;
  color: var(--mmpb-dark);
}

.data-table td:not(:first-child) {
  text-align: center;
  color: rgba(17, 21, 47, 0.82);
}

.button.is-xxs {
  font-size: 0.65rem;
  height: 1.5em;
  line-height: 1.2;
  padding: 0 0.35em;
}

.results-section .button.is-xxs {
  color: var(--mmpb-primary);
  background: #fff;
  border: 1px solid rgba(88, 97, 255, 0.25);
  border-radius: 999px;
  padding: 0 0.5em;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.results-section .button.is-xxs:hover {
  background: var(--mmpb-primary);
  color: #fff;
  border-color: transparent;
}

.footer {
  background: rgba(17, 21, 47, 0.92);
  color: rgba(255, 255, 255, 0.8);
}

.footer a {
  color: #fff;
}

.footer img {
  filter: drop-shadow(0 12px 22px rgba(17, 21, 47, 0.35));
}

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

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

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 0;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}

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

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

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

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

#interpolation-image-wrapper {
  width: 100%;
}

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

@media screen and (max-width: 1023px) {
  .navbar {
    position: relative;
  }

  .main-hero {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .glass-card {
    padding: 1.4rem;
  }

  .table-card .table-container {
    padding: 0.5rem;
  }

  .data-table {
    font-size: 0.95rem;
  }

  .filter-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-controls {
    justify-content: center;
  }

  .filter-search {
    width: 100%;
    justify-content: center;
  }

  .filter-search .input {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero-tagline {
    font-size: 1.1rem;
  }

  .filter-controls .search-box {
    width: 100%;
  }

  .filter-toolbar {
    gap: 0.75rem;
  }

  .filter-search {
    justify-content: flex-start;
  }

  .filter-search .input {
    text-align: left;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.data-table thead tr:first-child th:first-child {
  border-top-left-radius: 18px;
}

.data-table thead tr:first-child th:last-child {
  border-top-right-radius: 18px;
}

.data-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}

.data-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}
.data-table tbody tr {
  background-clip: padding-box;
}
