.text-logo {
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding: 5px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.text-logo:hover {
  background-color: rgba(255,255,255,0.1);
}

.logo-main {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #C96666, #AA5656);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 12px;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0));
  border-radius: 8px 8px 0 0;
}

.logo-text {
  font-size: 22px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .logo-text {
    font-size: 18px;
  }
}