body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    color: #333;
}
.container {
    max-width: 90%;
    margin: 40px auto;
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
h1, h2, h3 {
    text-align: center;
}
h1 {
    color: #4facfe;
}
h2 {
    margin-top: 40px;
    color: #555;
}
h3 {
    margin-top: 30px;
    color: #555;
}
h4 {
    margin-top: 20px;
    color: #555;
}
.highlight {
    background-color: #FFFACD;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
 }
.author {
    display:flex;
    align-items:center;
    justify-content:center
}
.table-container {
    margin-top: 30px;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
table {
    table-layout: fixed;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}
th {
    background: linear-gradient(135deg, #b2cbf8, #b2cbf8);
    color: white;
    font-weight: 600;
    padding: 7px;
    text-align: center;
}
td {
    padding: 7px;
    text-align: center;
    color: #444;
    font-size: 16px;
}
/*
tr:nth-child(odd) {
    background: rgba(240, 243, 248, 0.5);
}
*/
tr:hover {
    background: rgba(200, 220, 255, 0.3);
    transition: 0.3s;
}

.demo-section, .paper-section {
    margin-top: 20px;
}
.demo-item {
    margin-bottom: 20px;
}
.demo-item p {
    margin: 5px 0;
    font-size: 16px;
}
audio {
    margin-top: 5px;
    width: 230px;
    height: 40px;
}
.video-section {
  width: 100%;
  padding: 20px 0;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.video-grid {
  display: flex;
  /* grid-template-columns: 1fr; */
  align-items: center; 
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  width: 100%;
}

.video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-video {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border: none;
  background-color: #000;
  margin: 0 auto;
}

.video-caption {
  padding: 16px;
  text-align: center;
}

.caption-text {
  font-size: 0.8rem;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.paper-description {
    line-height: 1.6;
}
.footer {
    text-align: center;
    margin-t4p: 40px;
    font-size: 14px;
    color: #888;
}

