body {
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  background-image: url(images/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  backdrop-filter: blur(2px);
  color: #f2f2f2;
  margin: 0;
  padding: 50px 0;
  box-sizing: border-box;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

h1 {
  text-align: center;
  color: #00ffff;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #161616;
  border-radius: 15px;
}

h3 {
  text-decoration: underline;
  color: #00ffff;
  margin-bottom: 30px;
}

.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.member-list,
.info-box,
.spon-box {
  margin-block: 20px;
}

.member-card {
  display: flex;
  gap: 10px;
  background-color: #2a2a2a;
  border-left: 5px solid #00ffff;
  padding: 15px;
  border-radius: 5px;
  transition: transform 0.2s;
  cursor: default;
}

.member-card:hover {
  transform: scale(1.05);
  background-color: #333333;
}

.member-photo {
  aspect-ratio: 1 / 1;
  min-width: 150px;
  max-width: 150px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 2px 2px 4px black;
}

.member-photo img {
  min-width: 100%;
  max-height: 100%;
}

.member-details {
  display: block;
  min-width: 250px;
  max-width: 250px;
  min-height: 150px;
  max-height: 150px;
}

.member-id {
  font-weight: bold;
  color: #cccccc;
  margin-bottom: 5px;
}

.member-name {
  font-size: 1.2em;
  color: #00ffff;
  margin-bottom: 10px;
}

.member-role {
  font-weight: bold;
  color: #cccccc;
  margin-bottom: 5px;
}

.member-description {
  font-size: 0.9em;
  color: #dddddd;
}

.call-widget {
  margin-top: 40px;
  background: #111;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

#call-audio {
  display: none;
}

#spectrum {
  width: 100%;
  height: 150px;
  border-radius: 5px;
}

.call-list {
  padding: 0;
}

.call-list li {
  cursor: pointer;
  padding: 8px;
  margin: 0;
  color: #0ff;
  list-style-type: none;
}

.call-list li:hover {
  background-color: #222;
}

.call-panel {
  margin-top: 20px;
  padding: 15px;
  transition: max-height 0.5s ease;
  overflow: hidden;
  background-color: #1a1a1a;
  border-radius: 5px;
}

.call-panel.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.call-panel:not(.hidden) {
  max-height: 500px;
  opacity: 1;
}

.avatars {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: brightness(0.3);
  transition: filter 0.3s;
  border: 2px solid #00ffff33;
}

.avatar.active {
  filter: brightness(1.2);
  border-color: #00ffff;
}

#sponsors {
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 0;
}

#sponsors li {
  list-style-type: none;
  display: flex;
  justify-content: stretch;
  max-height: 400px;
}

#sponsors li .sponsor {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}

#sponsors li .sponsor img {
  max-width: 400px;
}

#sponsors li .sponsor h2 {
  text-shadow: 2px 2px 1px rgba(0,0,0,.4);
  margin: 0;
  padding: 0;
  font-size: 3em;
  background-color: rgba(255,255,255,.7);
  color: #00ffff;
}

#sponsors li .sponsor h2 small {
  font-size: 1.4rem;
}

#sponsors li .sponsor .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(320deg, rgba(0, 255,255, .4) 0%, transparent 60%);
  height: 100%;
  width: 100%;
}

#sponsors li .sponsor .info p {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  font-size: 2rem;
  text-shadow: 2px 2px 1px rgba(0,0,0,.4);
  margin: 0;
  padding: 2px 2px;
  overflow: hidden;
  color: rgba(255,255,255,.7)
}
