.project-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.project-header { text-align: center; padding: 40px 0 30px; }
.project-venue-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.project-container .project-title {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.project-subtitle {
  font-size: 1.3em;
  color: #555;
  font-weight: 400;
  margin-bottom: 25px;
}
.project-authors {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.8;
}
.project-authors a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}
.project-authors a:hover { text-decoration: underline; }
.affiliations {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
}
.affiliations sup { color: #667eea; font-weight: 600; }
.links-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.links-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}
.links-bar a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-arxiv { background: #b31b1b; }
.btn-pdf { background: #d4451a; }
.btn-code { background: #24292e; }
.btn-video { background: #ff0000; }
.teaser-section { margin: 30px 0 40px; text-align: center; }
.teaser-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.teaser-caption {
  margin-top: 15px;
  font-size: 0.95em;
  color: #555;
  font-style: italic;
}
.abstract-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px 35px;
  margin: 40px 0;
}
.abstract-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.abstract-text {
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}
.project-section { margin: 50px 0; }
.section-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #667eea;
  display: inline-block;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.method-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #667eea;
}
.method-card h3 {
  font-size: 1.2em;
  color: #667eea;
  margin-bottom: 12px;
  font-weight: 600;
}
.method-card p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.figure-block {
  margin: 35px 0;
  text-align: center;
}
.figure-block img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.figure-caption {
  margin-top: 12px;
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.result-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  text-align: center;
}
.result-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
}
.result-label {
  font-size: 0.95em;
  color: #555;
  margin-top: 8px;
}
.highlights-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 25px 0;
}
.highlights-list li {
  list-style: none !important;
  padding: 14px 0 14px 20px;
  margin-bottom: 8px;
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  border-left: 3px solid #667eea;
}
.bibtex-section {
  background: #f6f8fa;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}
.bibtex-code {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 0.8em;
  line-height: 1.6;
  color: #24292e;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.bibtex-copy-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #667eea;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85em;
  font-weight: 500;
  transition: background 0.2s;
}
.bibtex-copy-btn:hover { background: #5a6fd6; }
@media (max-width: 768px) {
  .project-container .project-title { font-size: 1.6em; }
  .project-subtitle { font-size: 1.1em; }
  .links-bar a { padding: 8px 18px; font-size: 0.9em; }
  .abstract-section { padding: 20px; }
  .method-grid { grid-template-columns: 1fr; }
}
