:root {
  --primary: #d84500;
  --bg-body: #0b0d12;
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  background-color: var(--bg-body);
  color: #fff;
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.main-wrapper {
  position: relative;
  z-index: 1;
}

.header-area {
  padding: 4rem 0 3rem;
  text-align: center;
}

.title-main {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
}

.team-member-wrap {
  text-align: center;
  padding: 1rem;
}

.terminal-frame {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corner-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.tr {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.bl {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}
.br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.portrait-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1) brightness(0.75);
  transition: filter 0.4s ease;
  z-index: 2;
}

.team-member-wrap:hover .portrait-img {
  filter: grayscale(0) brightness(1);
}
.team-member-wrap:hover .corner-bracket {
  border-color: var(--primary);
  width: 35px;
  height: 35px;
}

.name-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  letter-spacing: -0.5px;
}

.role-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  opacity: 0.9;
}

.partner-section {
  margin-top: 4rem;
  padding-bottom: 6rem;
}

.backing-title {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.partner-glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 3rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-align: center;
  transition: all 0.4s ease;
}

.partner-glass-card:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
}

.partner-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.partner-desc {
  font-size: 0.7rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* --- MOBILE RESPONSIVE MODE --- */
@media (max-width: 768px) {
  .title-main {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .header-area p.is-size-5 {
    font-size: 1.1rem !important;
  }

  .header-area {
    padding: 2.5rem 1rem 1.5rem;
  }

  .backing-title {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
  }
}
