@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
  font-family: 'Orbitron', sans-serif;
  background-color: #0b0c10;
  color: #e0e0e0;
}

h1 {
  text-align: center;
  font-size: 40px;
  border-bottom: 2px solid #1f2833;
  padding: 40px 0 60px 0;
  margin-bottom: 30px;
  letter-spacing: 4px;
  color: #66fcf1;
  text-shadow: 0 0 10px #66fcf1;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 80px;
  border-bottom: 1px solid #45a29e;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

.tab {
  padding: 12px 24px;
  cursor: pointer;
  color: #45a29e;
  transition: all 0.3s ease;
  border-radius: 6px 6px 0 0;
}

.tab:hover {
  color: #66fcf1;
  background-color: #1f2833;
}

.tab.active {
  color: #66fcf1;
  border-bottom: 3px solid #66fcf1;
}

main {
  padding-top: 20px;
  font-size: 18px;
  line-height: 1.8;
  background: #1f2833;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(102, 252, 241, 0.1);
}

.tab-content p {
  margin-bottom: 20px;
  color: #c5c6c7;
}

.hidden {
  display: none;
}

.institution-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  transition: all 0.5s ease;
  flex-wrap: wrap;
  align-items: flex-start;
}

.institution-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 12px;
  padding: 12px;
}

.institution-item:hover {
  background-color: rgba(102, 252, 241, 0.05);
  box-shadow: 0 0 12px rgba(102, 252, 241, 0.2);
  transform: scale(1.05);
}

.institution-item img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(102, 252, 241, 0.6));
}

.institution-item p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #66fcf1;
  text-shadow: 0 0 5px #66fcf1;
}

.institution-grid.selected-mode {
  flex-direction: flex;
  align-items: center;
  gap: 5px;
}

.institution-item.selected {
  z-index: 1;
  background-color: transparent;
  box-shadow: none;
}


.institution-item.dimmed {
  transform: scale(0.6) translateY(-60px);
  opacity: 0.3;
}

.institution-panel {
  display: none;
  gap: 60px;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in-out;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px dashed #66fcf1;
}

.institution-left img {
  width: 280px;
  height: auto;
  border-radius: 12px;

}

.institution-right {
  max-width: 500px;
}

.institution-panel h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #66fcf1;
  text-shadow: 0 0 10px #66fcf1;
}

.institution-panel p {
  margin: 6px 0;
  font-size: 16px;
  color: #c5c6c7;
}

.institution-code {
  margin-top: 20px;
  border: 2px solid #66fcf1;
  padding: 10px 24px;
  display: inline-block;
  font-weight: bold;
  border-radius: 6px;
  background-color: #0b0c10;
  font-size: 15px;
  color: #66fcf1;
  text-shadow: 0 0 6px #66fcf1;
}

.report-card {
  background-color: #0b0c10;
  border: 1px solid #45a29e;
  border-radius: 10px;
  padding: 24px 30px;
  margin-bottom: 24px;
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.1);
  transition: 0.3s ease;
}

.report-card h2 {
  color: #66fcf1;
  margin-bottom: 10px;
  font-size: 22px;
  border-bottom: 1px solid #45a29e;
  padding-bottom: 6px;
}

.report-card p,
.report-card ul,
.report-card li {
  color: #c5c6c7;
  font-size: 16px;
  line-height: 1.7;
}

.report-card ul {
  padding-left: 20px;
  list-style: square;
}

.report-document {
  background-color: #0b0c10;
  border: 1px solid #45a29e;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 0 16px rgba(102, 252, 241, 0.08);
}

.report-document h2 {
  font-size: 26px;
  color: #66fcf1;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px #66fcf1;
  border-bottom: 2px solid #45a29e;
  padding-bottom: 10px;
}

.report-document section {
  margin-bottom: 32px;
}

.report-document h3 {
  font-size: 20px;
  color: #66fcf1;
  margin-bottom: 10px;
  border-left: 4px solid #45a29e;
  padding-left: 12px;
}

.report-document p,
.report-document ul,
.report-document li {
  font-size: 16px;
  color: #c5c6c7;
  line-height: 1.8;
}

.report-document ul {
  list-style-type: square;
  padding-left: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
