/* === Base === */
body {
  font-family: "Inter", sans-serif;
  text-align: center;
  margin: 50px;
  background-color: #fff;
  color: #333;
}

/* === Title and Headings === */
.title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.authors {
  font-size: 20px;
  color: #666;
  margin-bottom: 5px;
}

.affiliations {
  font-size: 18px;
  color: #888;
  margin-bottom: 30px;
}

.subtitle {
  font-size: 24px;
  color: #666;
  margin-bottom: 30px;
}

.teaser-body {
  padding: 2rem 1.5rem;
}

.teaser-body img {
  width: 100%;
  height: auto;
}

/* Section styles */
.section {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.container.is-max-desktop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.columns.is-centered {
  justify-content: center;
  display: flex;
}

.column.is-four-fifths {
  flex: none;
  width: 80%;
  max-width: 1000px;
}

.has-text-centered {
  text-align: center;
}

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

/* Video section */
.video-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.video-container {
  margin-bottom: 30px;
}

.video-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Abstract section */
.abstract {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.abstract-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Method section */
.method {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.method-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.method-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}

/* Results section */
.results {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

/* Result subsections */
.result-subsection {
  margin-bottom: 40px;
  text-align: left;
}

.result-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.result-content {
  margin-top: 20px;
}

.result-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
  margin-bottom: 20px;
}

/* Individual result items */
.result-item {
  margin-bottom: 10px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
}

.result-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1px;
  margin-top: 1px;
  text-align: center;
}

.result-item-content {
  margin-top: 15px;
}

/* Video styling for results */
.video-wrapper {
  margin: 20px 0;
  text-align: center;
}

.result-video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #000;
}

.result-video:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* BibTeX section */
.bibtex-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.bibtex-container {
  margin-bottom: 30px;
}

.bibtex-code {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-align: left;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Acknowledgement section */
.acknowledgement-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.acknowledgement-content {
  margin-bottom: 30px;
}

.acknowledgement-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

/* === Buttons === */
.btn-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.btn {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #000;
}

.btn svg {
  width: 16px;
  height: 16px;
}
